[FFmpeg-devel] [PATCH V3 2/2] hwaccel_mpeg: check reference pictures are available

2017-10-12 Thread Zhong Li
some reference pictures are not existed but valiad surface_ids are set, (for example, the second field of the first key frame can be P_Picture_Type but there is no preivous frame.) then may cause some driver problems (e.g, segment fault on mesa/AMD driver). Signed-off-by: Zhong Li --- libavcode

[FFmpeg-devel] [PATCH V3 1/2] mpeg2_hwaccel: always submit twice for a frame with two fileds.

2017-10-12 Thread Zhong Li
Though this patch to fix https://trac.ffmpeg.org/ticket/6668, I belive it is unnecessary to set SLICE_FLAG_ALLOW_FIELD flag to other hwaccels(dxva, vdpau, etc). Signed-off-by: Zhong Li --- libavcodec/mpeg12dec.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavcodec/mpe

Re: [FFmpeg-devel] [PATCH] mpegdec: fix redundant dummy frames issue of interlaced clips

2017-10-12 Thread Li, Zhong
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Michael Niedermayer > Sent: Wednesday, October 4, 2017 8:16 AM > To: FFmpeg development discussions and patches > > Subject: Re: [FFmpeg-devel] [PATCH] mpegdec: fix redundant dummy frames > is

Re: [FFmpeg-devel] [PATCH] ffmpeg.c: Fallback to duration_dts, when duration_pts can't be determined.

2017-10-12 Thread Thomas Mundt
Hi Michael, 2017-10-12 1:28 GMT+02:00 Michael Niedermayer : > On Tue, Oct 10, 2017 at 10:26:13PM +0200, Thomas Mundt wrote: > > 2017-10-10 19:36 GMT+02:00 Sasi Inguva : > > > > > This is required for FLV files, for which duration_pts comes out to be > > > zero. > > > > > > Signed-off-by: Sasi Ing

Re: [FFmpeg-devel] [PATCH] ffmpeg.c: Fallback to duration_dts, when duration_pts can't be determined.

2017-10-12 Thread Nicolas George
L'octidi 18 vendémiaire, an CCXXVI, Sasi Inguva a écrit : > This is required for FLV files, for which duration_pts comes out to be zero. > > Signed-off-by: Sasi Inguva > --- > fftools/ffmpeg.c | 3 +++ > 1 file changed, 3 insertions(+) Could you make a FATE test so that it stays fixed? Regards

Re: [FFmpeg-devel] [PATCH] avformat/srt: add Haivision Open SRT protocol

2017-10-12 Thread Nicolas George
Le primidi 21 vendémiaire, an CCXXVI, nablet developer a écrit : > that's true - 90% of your comments are for original udp.c code I didn't > touch. When you are copy-pasting code, you are not only copy-pasting features, you are also copy-pasting bugs and maintenance burden. When a bug is found in

Re: [FFmpeg-devel] libavcodec/proresdec : add qmat dsp with SSE2, AVX2 simd

2017-10-12 Thread Martin Vignali
2017-10-10 3:16 GMT+02:00 Ivan Kalvachev : > On 10/9/17, Martin Vignali wrote: > > 2017-10-07 18:16 GMT+02:00 Ronald S. Bultje : > > > >> Hi Martin, > >> > >> On Sat, Oct 7, 2017 at 11:49 AM, Martin Vignali < > martin.vign...@gmail.com> > >> wrote: > >> > >> > 2017-10-07 17:30 GMT+02:00 Ronald S.

Re: [FFmpeg-devel] libavcodec/blockdsp : add clear_blocks_prores func (SSE, AVX) for prores decoding

2017-10-12 Thread Martin Vignali
2017-10-11 16:00 GMT+02:00 Ronald S. Bultje : > Hi Martin, > > (as you've probably noticed, I'm generally particularly interested in > optimization patches, not just the SIMD, but also the general algorithmic > thought behind it.) > > On Thu, Oct 5, 2017 at 10:58 AM, Martin Vignali > wrote: > > >

Re: [FFmpeg-devel] [PATCH] ffmpeg: always init output stream before reaping filters

2017-10-12 Thread Marton Balint
On Sun, 8 Oct 2017, Marton Balint wrote: On Sat, 7 Oct 2017, Hendrik Leppkes wrote: On Wed, Oct 4, 2017 at 12:48 AM, Marton Balint wrote: Otherwise the frame size of the codec is not set in the buffersink. Fixes ticket #6603 and the following simpler case: ffmpeg -c aac -filter_complex

Re: [FFmpeg-devel] warning: unknown warning option '-Wno-bool-operation'; did you mean '-Wno-bool-conversion'? [-Wunknown-warning-option]

2017-10-12 Thread Ronald S. Bultje
Hi, On Wed, Oct 11, 2017 at 10:04 PM, Helmut K. C. Tessarek < tessa...@evermeet.cx> wrote: > On 2017-10-11 21:59, James Almer wrote: > > Clang seems to warn instead of fail when an option does not exist, so > > configure things it exists. > > > > A solution could be to somehow make clang fail ins

Re: [FFmpeg-devel] [PATCH] ffmpeg.c: Fallback to duration_dts, when duration_pts can't be determined.

2017-10-12 Thread wm4
On Thu, 12 Oct 2017 01:28:01 +0200 Michael Niedermayer wrote: > On Tue, Oct 10, 2017 at 10:26:13PM +0200, Thomas Mundt wrote: > > 2017-10-10 19:36 GMT+02:00 Sasi Inguva : > > > > > This is required for FLV files, for which duration_pts comes out to be > > > zero. > > > > > > Signed-off-by: Sas

[FFmpeg-devel] [PATCH] doc/filters: correct typo and incomplete desc

2017-10-12 Thread Gyan Doshi
Correct typo in signalstats filter section and qualify description for variable in select filter. From fe780adb77b98d0c76671fdeb98d3123d7834550 Mon Sep 17 00:00:00 2001 From: Gyan Doshi Date: Thu, 12 Oct 2017 18:46:06 +0530 Subject: [PATCH] doc/filters: correct typo and incomplete desc. Correct

Re: [FFmpeg-devel] [PATCH] udp: added option to ignore empty UDP packets

2017-10-12 Thread Nicolas George
Le quintidi 15 vendémiaire, an CCXXVI, Daniel Kučera a écrit : > I'm not sure if you mean this patch is unacceptable but if so, I want > to note, that this patch is not the same as I submitted before: this > one adds cmdlne option to ignore empty packets and it doesn't ignore > them when not explic

Re: [FFmpeg-devel] [PATCH] udp: added option to ignore empty UDP packets

2017-10-12 Thread wm4
On Thu, 12 Oct 2017 16:16:31 +0200 Nicolas George wrote: > Le quintidi 15 vendémiaire, an CCXXVI, Daniel Kučera a écrit : > > I'm not sure if you mean this patch is unacceptable but if so, I want > > to note, that this patch is not the same as I submitted before: this > > one adds cmdlne option t

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Michael Niedermayer
On Wed, Oct 11, 2017 at 10:30:13PM -0300, James Almer wrote: > On 10/11/2017 9:22 PM, Michael Niedermayer wrote: > > On Wed, Oct 11, 2017 at 09:26:18PM +, James Almer wrote: > >> ffmpeg | branch: master | James Almer | Wed Oct 11 > >> 17:55:25 2017 -0300| [6dfcbd80ad446ff163b47f2bf432bbf70643

Re: [FFmpeg-devel] [PATCH] mov: fix decode of fragments that overlap in time

2017-10-12 Thread Michael Niedermayer
On Wed, Oct 11, 2017 at 10:56:41PM -0700, John Stebbins wrote: > On 10/11/2017 06:25 PM, Michael Niedermayer wrote: > >On Tue, Oct 10, 2017 at 06:11:08PM -0700, John Stebbins wrote: > >>When keyframe intervals of dash segments are not perfectly aligned, > >>fragments in the stream can overlap in ti

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 1:56 PM, Michael Niedermayer wrote: > On Wed, Oct 11, 2017 at 10:30:13PM -0300, James Almer wrote: >> On 10/11/2017 9:22 PM, Michael Niedermayer wrote: >>> On Wed, Oct 11, 2017 at 09:26:18PM +, James Almer wrote: ffmpeg | branch: master | James Almer | Wed Oct 11 17:55

Re: [FFmpeg-devel] [PATCH] mov: fix decode of fragments that overlap in time

2017-10-12 Thread John Stebbins
On 10/12/2017 10:22 AM, Michael Niedermayer wrote: > On Wed, Oct 11, 2017 at 10:56:41PM -0700, John Stebbins wrote: >> On 10/11/2017 06:25 PM, Michael Niedermayer wrote: >>> On Tue, Oct 10, 2017 at 06:11:08PM -0700, John Stebbins wrote: When keyframe intervals of dash segments are not perfectl

[FFmpeg-devel] [PATCH] mov: fix decode of fragments that overlap in time

2017-10-12 Thread John Stebbins
When keyframe intervals of dash segments are not perfectly aligned, fragments in the stream can overlap in time. The previous sorting by timestamp causes packets to be read out of decode order and results in decode errors. Insert new "trun" index entries into index_entries in the order that the tr

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Helmut K. C. Tessarek
I'm not sure why you guys have to make all these changes to the build process lately. All of a sudden ffmpeg does not compile anymore. During configure I get: ERROR: libbluray not found using pkg-config which worked perfectly 2 days ago. So, whatever changes you made, they screwed up other thing

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 3:11 PM, Helmut K. C. Tessarek wrote: > I'm not sure why you guys have to make all these changes to the build > process lately. It's part of a cleaning process. It's specifically left out of the 3.4 release since breakages like this were a possibility. I'm fixing them as they are rep

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Helmut K. C. Tessarek
On 2017-10-12 13:25, James Almer wrote: > That'd be because showcqt is missing its fontconfig and freetype deps in > configure, a mistake that was hidden by extralibs being global before > this merge. This does not seem to be the only mistake in configure. It looks like there are dependencies mis

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Helmut K. C. Tessarek
On 2017-10-12 14:19, James Almer wrote: > Can you open a bug in http://trac.ffmpeg.org/ and attach your config.log > there? Also, what are the contents of the .pc file for libbluray? It > sounds like it's missing some dependencies and might have to be reported > to their bug tracker. I can, but I

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread wm4
On Thu, 12 Oct 2017 14:28:01 -0400 "Helmut K. C. Tessarek" wrote: > I'm rather busy, and creating my compile script is an ongoing process > which I have been maintaining for the last 6 years. Probably better not to use bleeding edge git master, then.

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Clément Bœsch
On Thu, Oct 12, 2017 at 02:22:08PM -0400, Helmut K. C. Tessarek wrote: > On 2017-10-12 13:25, James Almer wrote: > > That'd be because showcqt is missing its fontconfig and freetype deps in > > configure, a mistake that was hidden by extralibs being global before > > this merge. > > This does not

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Michael Niedermayer
On Thu, Oct 12, 2017 at 02:25:46PM -0300, James Almer wrote: > On 10/12/2017 1:56 PM, Michael Niedermayer wrote: > > On Wed, Oct 11, 2017 at 10:30:13PM -0300, James Almer wrote: > >> On 10/11/2017 9:22 PM, Michael Niedermayer wrote: > >>> On Wed, Oct 11, 2017 at 09:26:18PM +, James Almer wrote:

Re: [FFmpeg-devel] [PATCH] ffmpeg.c: Fallback to duration_dts, when duration_pts can't be determined.

2017-10-12 Thread Sasi Inguva
I can initialize duration_pts to -1, and check against duration_pts < 0 , if you think that's better. On Thu, Oct 12, 2017 at 3:51 AM, wm4 wrote: > On Thu, 12 Oct 2017 01:28:01 +0200 > Michael Niedermayer wrote: > > > On Tue, Oct 10, 2017 at 10:26:13PM +0200, Thomas Mundt wrote: > > > 2017-10-1

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Helmut K. C. Tessarek
On 2017-10-12 14:53, wm4 wrote: > Probably better not to use bleeding edge git master, then. Hmm, kind of detrimental when I provide snapshots almost daily. -- regards Helmut K. C. Tessarek KeyID 0xF7832007C11F128D Key fingerprint = 28A3 1666 4FE8 D72C CFD5 8B23 F783 2007 C11F 128D

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Helmut K. C. Tessarek
I'm building ffmpeg for the last 6 years and provide snapshots and releases for OSX. On 2017-10-12 15:00, Clément Bœsch wrote: > what's your configure line? ./configure --cc=/usr/bin/clang --prefix=/opt/ffmpeg --extra-version=tessus --enable-avisynth --enable-fontconfig --enable-gpl --enable-liba

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 4:25 PM, Michael Niedermayer wrote: > On Thu, Oct 12, 2017 at 02:25:46PM -0300, James Almer wrote: >> On 10/12/2017 1:56 PM, Michael Niedermayer wrote: >>> On Wed, Oct 11, 2017 at 10:30:13PM -0300, James Almer wrote: On 10/11/2017 9:22 PM, Michael Niedermayer wrote: > On Wed,

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 4:44 PM, Helmut K. C. Tessarek wrote: > I'm building ffmpeg for the last 6 years and provide snapshots and > releases for OSX. > > On 2017-10-12 15:00, Clément Bœsch wrote: >> what's your configure line? > > ./configure --cc=/usr/bin/clang --prefix=/opt/ffmpeg > --extra-version=tess

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Michael Niedermayer
On Thu, Oct 12, 2017 at 04:42:19PM -0300, James Almer wrote: > On 10/12/2017 4:25 PM, Michael Niedermayer wrote: > > On Thu, Oct 12, 2017 at 02:25:46PM -0300, James Almer wrote: > >> On 10/12/2017 1:56 PM, Michael Niedermayer wrote: > >>> On Wed, Oct 11, 2017 at 10:30:13PM -0300, James Almer wrote:

Re: [FFmpeg-devel] [PATCH V3 2/2] hwaccel_mpeg: check reference pictures are available

2017-10-12 Thread Michael Niedermayer
On Thu, Oct 12, 2017 at 04:20:45PM +0800, Zhong Li wrote: > some reference pictures are not existed but valiad surface_ids are set, > (for example, the second field of the first key frame can be > P_Picture_Type but there is no preivous frame.) > then may cause some driver problems (e.g, segment fa

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 5:07 PM, Michael Niedermayer wrote: > On Thu, Oct 12, 2017 at 04:42:19PM -0300, James Almer wrote: >> On 10/12/2017 4:25 PM, Michael Niedermayer wrote: >>> On Thu, Oct 12, 2017 at 02:25:46PM -0300, James Almer wrote: On 10/12/2017 1:56 PM, Michael Niedermayer wrote: > On Wed,

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 4:25 PM, Michael Niedermayer wrote: > On Thu, Oct 12, 2017 at 02:25:46PM -0300, James Almer wrote: >> On 10/12/2017 1:56 PM, Michael Niedermayer wrote: >>> On Wed, Oct 11, 2017 at 10:30:13PM -0300, James Almer wrote: On 10/11/2017 9:22 PM, Michael Niedermayer wrote: > On Wed,

Re: [FFmpeg-devel] [PATCH V3 2/2] hwaccel_mpeg: check reference pictures are available

2017-10-12 Thread Carl Eugen Hoyos
2017-10-12 10:20 GMT+02:00 Zhong Li : > some reference pictures are not existed but valiad surface_ids are set, > (for example, the second field of the first key frame can be > P_Picture_Type but there is no preivous frame.) > then may cause some driver problems > (e.g, segment fault on mesa/AMD

Re: [FFmpeg-devel] [PATCH 2/6] vaapi: Remove H.264 baseline profile

2017-10-12 Thread Carl Eugen Hoyos
2017-10-11 12:26 GMT+02:00 Mark Thompson : > If an encoder declares a higher profile than it actually uses then > that is unhelpful but there is little we can do about it. We have been through all this years ago: The only sane thing to do is to ignore these values (and if you want, print a warning

Re: [FFmpeg-devel] [PATCH] avfilter:vf_libvmaf: fix errors while running with psnr=1 and improve docs

2017-10-12 Thread Carl Eugen Hoyos
2017-10-11 15:53 GMT+02:00 Ashish Pratap Singh : > Hi, this patch fixes the seg fault which ocuured while running libvmaf filter > with option psnr=1. This also improves libvmaf doc a bit. Please split in two patches. Carl Eugen ___ ffmpeg-devel mailin

Re: [FFmpeg-devel] [PATCH] doc/filters: correct typo and incomplete desc

2017-10-12 Thread Michael Niedermayer
On Thu, Oct 12, 2017 at 06:50:04PM +0530, Gyan Doshi wrote: > Correct typo in signalstats filter section and qualify description > for variable in select filter. > filters.texi |4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > 2947a17b0fabc5bea15064019f3c59b2b57430a1 > 0001-doc-f

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve avc chroma avg horiz mc msa functions

2017-10-12 Thread Michael Niedermayer
On Wed, Oct 11, 2017 at 11:04:07AM +, Manojkumar Bhosale wrote: > LGTM applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB If a bugfix only changes things apparently unrelated to the bug with no further explanation, that is a good sign that the bugf

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve avc put mc 12, 32 and 22 msa functions

2017-10-12 Thread Michael Niedermayer
On Wed, Oct 11, 2017 at 11:04:12AM +, Manojkumar Bhosale wrote: > LGTM applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Opposition brings concord. Out of discord comes the fairest harmony. -- Heraclitus signature.asc Description: Digital signat

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc bi copy mc msa functions

2017-10-12 Thread Michael Niedermayer
On Wed, Oct 11, 2017 at 11:18:07AM +, Manojkumar Bhosale wrote: > LGTM applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB No great genius has ever existed without some touch of madness. -- Aristotle signature.asc Description: Digital signature __

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc uni horiz mc msa functions

2017-10-12 Thread Michael Niedermayer
On Wed, Oct 11, 2017 at 11:24:12AM +, Manojkumar Bhosale wrote: > LGTM applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Good people do not need laws to tell them to act responsibly, while bad people will find a way around the laws. -- Plato sig

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc uni weighted vert mc msa functions

2017-10-12 Thread Michael Niedermayer
On Wed, Oct 11, 2017 at 11:24:39AM +, Manojkumar Bhosale wrote: > LGTM applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Rewriting code that is poorly written but fully understood is good. Rewriting code that one doesnt understand is a sign that o

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Helmut K. C. Tessarek
On 2017-10-12 16:04, James Almer wrote: > Sounds like pkg-config is not providing you with the required deps. > Since you're doing a static build with static external libraries, try > adding "--pkg-config-flags=--static" to your configure line. Which makes no sense, since I checked the pkg_config

[FFmpeg-devel] [PATCH] configure: force erroring out in check_disable_warning() if an option doesn't exists

2017-10-12 Thread James Almer
Should prevent some options from being added to cflags when they don't exist and the compiler only warns about it. Signed-off-by: James Almer --- I figure this is safer than adding -Werror=unused-command-line-argument -Werror=unknown-warning-option as Ronald suggested. configure | 2 +- 1 file

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Michael Niedermayer
On Thu, Oct 12, 2017 at 05:36:17PM -0300, James Almer wrote: > On 10/12/2017 4:25 PM, Michael Niedermayer wrote: > > On Thu, Oct 12, 2017 at 02:25:46PM -0300, James Almer wrote: > >> On 10/12/2017 1:56 PM, Michael Niedermayer wrote: > >>> On Wed, Oct 11, 2017 at 10:30:13PM -0300, James Almer wrote:

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 6:12 PM, Helmut K. C. Tessarek wrote: > On 2017-10-12 16:04, James Almer wrote: >> Sounds like pkg-config is not providing you with the required deps. >> Since you're doing a static build with static external libraries, try >> adding "--pkg-config-flags=--static" to your configure lin

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Michael Niedermayer
On Thu, Oct 12, 2017 at 11:33:45PM +0200, Michael Niedermayer wrote: > On Thu, Oct 12, 2017 at 05:36:17PM -0300, James Almer wrote: > > On 10/12/2017 4:25 PM, Michael Niedermayer wrote: > > > On Thu, Oct 12, 2017 at 02:25:46PM -0300, James Almer wrote: > > >> On 10/12/2017 1:56 PM, Michael Niederma

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Reino Wijnsma
On 12-10-2017 20:11, Helmut K. C. Tessarek wrote: > I'm not sure why you guys have to make all these changes to the build > process lately. > > All of a sudden ffmpeg does not compile anymore. During configure I get: > > ERROR: libbluray not found using pkg-config > > which worked perfectly 2 days

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 6:41 PM, Michael Niedermayer wrote: > On Thu, Oct 12, 2017 at 11:33:45PM +0200, Michael Niedermayer wrote: >> On Thu, Oct 12, 2017 at 05:36:17PM -0300, James Almer wrote: >>> On 10/12/2017 4:25 PM, Michael Niedermayer wrote: On Thu, Oct 12, 2017 at 02:25:46PM -0300, James Almer w

Re: [FFmpeg-devel] [PATCH] configure: force erroring out in check_disable_warning() if an option doesn't exists

2017-10-12 Thread Helmut K. C. Tessarek
On 2017-10-12 17:30, James Almer wrote: > Should prevent some options from being added to cflags when they > don't exist and the compiler only warns about it. Just tested your patch. Yippiieee, warnings gone! -- regards Helmut K. C. Tessarek KeyID 0xF7832007C11F128D Key fingerpri

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 6:33 PM, Michael Niedermayer wrote: > On Thu, Oct 12, 2017 at 05:36:17PM -0300, James Almer wrote: >> On 10/12/2017 4:25 PM, Michael Niedermayer wrote: >>> On Thu, Oct 12, 2017 at 02:25:46PM -0300, James Almer wrote: On 10/12/2017 1:56 PM, Michael Niedermayer wrote: > On Wed,

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Carl Eugen Hoyos
2017-10-12 23:45 GMT+02:00 James Almer : > On 10/12/2017 6:41 PM, Michael Niedermayer wrote: >> also video4linux is gone >> >> ./configure >> config.h:#define CONFIG_V4L2_INDEV 0 >> >> and with a branch with all that reverted: >> ./configure >> config.h:#define CONFIG_V4L2_INDEV 1 > > v4l2 is not

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Michael Niedermayer
On Thu, Oct 12, 2017 at 06:46:08PM -0300, James Almer wrote: > On 10/12/2017 6:33 PM, Michael Niedermayer wrote: > > On Thu, Oct 12, 2017 at 05:36:17PM -0300, James Almer wrote: > >> On 10/12/2017 4:25 PM, Michael Niedermayer wrote: > >>> On Thu, Oct 12, 2017 at 02:25:46PM -0300, James Almer wrote:

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 6:50 PM, Carl Eugen Hoyos wrote: > 2017-10-12 23:45 GMT+02:00 James Almer : >> On 10/12/2017 6:41 PM, Michael Niedermayer wrote: > >>> also video4linux is gone >>> >>> ./configure >>> config.h:#define CONFIG_V4L2_INDEV 0 >>> >>> and with a branch with all that reverted: >>> ./configu

Re: [FFmpeg-devel] [PATCH] Fix crash if av_vdpau_bind_context() is not used.

2017-10-12 Thread Ivan Kalvachev
On 10/11/17, Ivan Kalvachev wrote: > On 10/10/17, wm4 wrote: >> On Tue, 10 Oct 2017 03:24:56 +0300 >> Ivan Kalvachev wrote: >> >>> On 10/9/17, wm4 wrote: >>> > On Mon, 9 Oct 2017 03:04:53 +0300 >>> > Ivan Kalvachev wrote: >>> > >>> >> The public functions av_alloc_vdpaucontext() and >>> >> av_

Re: [FFmpeg-devel] [PATCH] Fix crash if av_vdpau_bind_context() is not used.

2017-10-12 Thread Carl Eugen Hoyos
2017-10-09 2:04 GMT+02:00 Ivan Kalvachev : > The public functions av_alloc_vdpaucontext() and > av_vdpau_alloc_context() are allocating AVVDPAUContext > structure that is supposed to be placed in avctx->hwaccel_context. > > However the rest of libavcodec/vdpau.c uses avctx->hwaccel_context > as str

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Carl Eugen Hoyos
2017-10-13 0:12 GMT+02:00 James Almer : > On 10/12/2017 6:50 PM, Carl Eugen Hoyos wrote: >> 2017-10-12 23:45 GMT+02:00 James Almer : >>> On 10/12/2017 6:41 PM, Michael Niedermayer wrote: >> also video4linux is gone ./configure config.h:#define CONFIG_V4L2_INDEV 0 and w

Re: [FFmpeg-devel] [PATCH] Fix crash if av_vdpau_bind_context() is not used.

2017-10-12 Thread Ivan Kalvachev
On 10/13/17, Carl Eugen Hoyos wrote: > 2017-10-09 2:04 GMT+02:00 Ivan Kalvachev : >> The public functions av_alloc_vdpaucontext() and >> av_vdpau_alloc_context() are allocating AVVDPAUContext >> structure that is supposed to be placed in avctx->hwaccel_context. >> >> However the rest of libavcodec

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 7:04 PM, Michael Niedermayer wrote: > On Thu, Oct 12, 2017 at 06:46:08PM -0300, James Almer wrote: >> On 10/12/2017 6:33 PM, Michael Niedermayer wrote: >>> On Thu, Oct 12, 2017 at 05:36:17PM -0300, James Almer wrote: On 10/12/2017 4:25 PM, Michael Niedermayer wrote: > On Thu,

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 7:19 PM, Carl Eugen Hoyos wrote: > 2017-10-13 0:12 GMT+02:00 James Almer : >> On 10/12/2017 6:50 PM, Carl Eugen Hoyos wrote: >>> 2017-10-12 23:45 GMT+02:00 James Almer : On 10/12/2017 6:41 PM, Michael Niedermayer wrote: >>> > also video4linux is gone > > ./configure >

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 6:42 PM, Reino Wijnsma wrote: > On 12-10-2017 20:11, Helmut K. C. Tessarek wrote: >> I'm not sure why you guys have to make all these changes to the build >> process lately. >> >> All of a sudden ffmpeg does not compile anymore. During configure I get: >> >> ERROR: libbluray not foun

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Carl Eugen Hoyos
2017-10-13 0:24 GMT+02:00 James Almer : > On 10/12/2017 7:19 PM, Carl Eugen Hoyos wrote: >> 2017-10-13 0:12 GMT+02:00 James Almer : >>> On 10/12/2017 6:50 PM, Carl Eugen Hoyos wrote: 2017-10-12 23:45 GMT+02:00 James Almer : > On 10/12/2017 6:41 PM, Michael Niedermayer wrote: >> al

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 7:34 PM, Carl Eugen Hoyos wrote: > 2017-10-13 0:24 GMT+02:00 James Almer : >> On 10/12/2017 7:19 PM, Carl Eugen Hoyos wrote: >>> 2017-10-13 0:12 GMT+02:00 James Almer : On 10/12/2017 6:50 PM, Carl Eugen Hoyos wrote: > 2017-10-12 23:45 GMT+02:00 James Almer : >> On 10/12/2

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Helmut K. C. Tessarek
On 2017-10-12 17:35, James Almer wrote: > bzip2 and zlib show up as dependencies of freetype2 in the > "Requires.private" section of its .pc file in your system, right? If almost, my freetype2.pc looks like this: prefix=/Users/Shared/ffmpeg/sw exec_prefix=/Users/Shared/ffmpeg/sw libdir=/Users/S

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 7:48 PM, Helmut K. C. Tessarek wrote: > > > On 2017-10-12 17:35, James Almer wrote: >> bzip2 and zlib show up as dependencies of freetype2 in the >> "Requires.private" section of its .pc file in your system, right? If > > almost, my freetype2.pc looks like this: > > prefix=/Users/

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread Michael Niedermayer
On Thu, Oct 12, 2017 at 07:22:25PM -0300, James Almer wrote: > On 10/12/2017 7:04 PM, Michael Niedermayer wrote: > > On Thu, Oct 12, 2017 at 06:46:08PM -0300, James Almer wrote: > >> On 10/12/2017 6:33 PM, Michael Niedermayer wrote: > >>> On Thu, Oct 12, 2017 at 05:36:17PM -0300, James Almer wrote:

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '7cb1d9e2dbbe5bf4652be5d78cdd68e956fa3d63'

2017-10-12 Thread James Almer
On 10/12/2017 8:16 PM, Michael Niedermayer wrote: > On Thu, Oct 12, 2017 at 07:22:25PM -0300, James Almer wrote: >> On 10/12/2017 7:04 PM, Michael Niedermayer wrote: >>> On Thu, Oct 12, 2017 at 06:46:08PM -0300, James Almer wrote: On 10/12/2017 6:33 PM, Michael Niedermayer wrote: > On Thu,

[FFmpeg-devel] [PATCH 1/2] avcodec/pafvideo: Check for bitstream end in decode_0()

2017-10-12 Thread Michael Niedermayer
Fixes: Timeout Fixes: 3529/clusterfuzz-testcase-5057068371279872 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/pafvideo.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git

[FFmpeg-devel] [PATCH 2/2] avcodec/snowdec: Check mv_scale

2017-10-12 Thread Michael Niedermayer
Fixes: runtime error: signed integer overflow: 2 * -1094995530 cannot be represented in type 'int' Fixes: 3512/clusterfuzz-testcase-minimized-4812747210489856 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer -

Re: [FFmpeg-devel] [PATCH V3 2/2] hwaccel_mpeg: check reference pictures are available

2017-10-12 Thread Li, Zhong
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Michael Niedermayer > Sent: Friday, October 13, 2017 4:21 AM > To: FFmpeg development discussions and patches > > Subject: Re: [FFmpeg-devel] [PATCH V3 2/2] hwaccel_mpeg: check reference > pic

[FFmpeg-devel] [PATCH] avdevice/decklink_dec: Added SCTE104 message decode from VANC

2017-10-12 Thread Dixit, Vishwanath
Hi, Please find the attached patch which adds support to decode SCTE-104 message from VANC for decklink capture use case. Regards, Vishwanath 0001-avdevice-decklink_dec-Added-SCTE104-message-decode-f.patch Description: 0001-avdevice-decklink_dec-Added-SCTE104-message-decode-f.patch ___