[FFmpeg-devel] ffmpeg: Error resizing AVI file

2016-12-12 Thread Albert
Greetings. On Ubuntu 17.04 I have encountered an error while running ffmpeg 3.2.2 (installed from universe repository): Прикреплённые файлы: https://drive.google.com/uc?id=0B3Qk7GruY7umVjRuXzU5cnF3bTQ&export=download ___ ffmpeg-devel mailing list ffmpeg-

[FFmpeg-devel] [PATCH] swresample/resample: do not allow negative dst_size return value

2016-12-12 Thread Muhammad Faiz
This should fix Ticket6012 Signed-off-by: Muhammad Faiz --- libswresample/resample.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libswresample/resample.c b/libswresample/resample.c index 71dffb9..ce6a82f 100644 --- a/libswresample/resample.c +++ b/libswresample/res

Re: [FFmpeg-devel] [PATCH 2/3] avformat: fix overflows during bit rate calculation

2016-12-12 Thread Paul B Mahol
On 12/13/16, Andreas Cadhalpun wrote: > The bit_rate field has type int64_t since commit > 7404f3bdb90e6a5dcb59bc0a091e2c5c038e557d. > > Signed-off-by: Andreas Cadhalpun > --- > libavformat/adxdec.c | 2 +- > libavformat/aiffdec.c| 4 ++-- > libavformat/apc.c| 2 +- >

Re: [FFmpeg-devel] [PATCH 1/3] omadec: fix overflows during bit rate calculation

2016-12-12 Thread Paul B Mahol
On 12/13/16, Andreas Cadhalpun wrote: > Signed-off-by: Andreas Cadhalpun > --- > libavformat/omadec.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavformat/omadec.c b/libavformat/omadec.c > index 6e476db..e7751d0 100644 > --- a/libavformat/omadec.c > +++ b/liba

Re: [FFmpeg-devel] [PATCH] avfilter/avfilter: fix filtering frames with unknown channel layouts for filters needing writable frames

2016-12-12 Thread Paul B Mahol
On 12/12/16, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > libavfilter/avfilter.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) lgtm ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpe

Re: [FFmpeg-devel] [PATCH 6/7] avcodec/mips: version 1 of wmv2dsp optimizations for loongson mmi

2016-12-12 Thread Michael Niedermayer
On Mon, Oct 10, 2016 at 04:10:59PM +0800, 周晓勇 wrote: > From 9b19ea3364d96a6eb0f3441f549c8d20ede36592 Mon Sep 17 00:00:00 2001 > From: Zhou Xiaoyong > Date: Mon, 10 Oct 2016 15:04:35 +0800 > Subject: [PATCH 6/7] avcodec/mips: version 1 of wmv2dsp optimizations for > loongson mmi > applied thx

Re: [FFmpeg-devel] [PATCH 5/7] avcodec/mips: version 1 of vp8dsp optimizations for loongson mmi

2016-12-12 Thread Michael Niedermayer
On Mon, Oct 10, 2016 at 04:10:22PM +0800, 周晓勇 wrote: > From 4fc873738c8db1cf711310bc5767f7574302eb96 Mon Sep 17 00:00:00 2001 > From: Zhou Xiaoyong > Date: Mon, 10 Oct 2016 14:50:08 +0800 > Subject: [PATCH 5/7] avcodec/mips: version 1 of vp8dsp optimizations for > loongson mmi > > > --- > liba

Re: [FFmpeg-devel] [PATCH 4/7] avcodec/mips: loongson set xvid as default idct algorithm

2016-12-12 Thread Michael Niedermayer
On Mon, Oct 10, 2016 at 04:09:43PM +0800, 周晓勇 wrote: > From e4d648fd34601cbe23a54af5d9489537896c6478 Mon Sep 17 00:00:00 2001 > From: Zhou Xiaoyong > Date: Mon, 10 Oct 2016 14:42:58 +0800 > Subject: [PATCH 4/7] avcodec/mips: loongson set xvid as default idct algorithm > > > --- > libavcodec/mip

Re: [FFmpeg-devel] [PATCH 3/3] tiff: fix overflows when calling av_readuce

2016-12-12 Thread Michael Niedermayer
On Tue, Dec 13, 2016 at 12:50:19AM +0100, Andreas Cadhalpun wrote: > The arguments of av_reduce are signed, so the cast to uint64_t is misleading. > > Signed-off-by: Andreas Cadhalpun > --- > libavcodec/tiff.c | 11 +-- > 1 file changed, 9 insertions(+), 2 deletions(-) > > diff --git a/

Re: [FFmpeg-devel] [PATCH] lavf/mov.c: Set skip_samples according to first edit list, when -ignore_editlist is set.

2016-12-12 Thread Michael Niedermayer
On Fri, Nov 11, 2016 at 10:02:28PM -0800, Sasi Inguva wrote: > Signed-off-by: Sasi Inguva > --- > libavformat/isom.h | 2 ++ > libavformat/mov.c | 22 +- > 2 files changed, 23 insertions(+), 1 deletion(-) The commit message should be a bit more verbose,it says whats done bu

Re: [FFmpeg-devel] [PATCH] configure: add -fPIE instead of -pie to C flags for ThreadSanitizer

2016-12-12 Thread Michael Niedermayer
On Fri, Dec 02, 2016 at 02:04:53PM -0800, Wan-Teh Chang wrote: > -pie was added to C flags for ThreadSanitizer in commit > 19f251a2882a8d0779b432e63bf282e4d9c443bb. Under clang 3.8.0, the -pie > flag causes a compiler warning and a linker error when running configure > --toolchain=clang-tsan. Here

[FFmpeg-devel] [PATCH 3/3] tiff: fix overflows when calling av_readuce

2016-12-12 Thread Andreas Cadhalpun
The arguments of av_reduce are signed, so the cast to uint64_t is misleading. Signed-off-by: Andreas Cadhalpun --- libavcodec/tiff.c | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 4721e94..12ef419 100644 --- a/libavcode

[FFmpeg-devel] [PATCH 2/3] avformat: fix overflows during bit rate calculation

2016-12-12 Thread Andreas Cadhalpun
The bit_rate field has type int64_t since commit 7404f3bdb90e6a5dcb59bc0a091e2c5c038e557d. Signed-off-by: Andreas Cadhalpun --- libavformat/adxdec.c | 2 +- libavformat/aiffdec.c| 4 ++-- libavformat/apc.c| 2 +- libavformat/bfi.c| 2 +- libavformat/electr

[FFmpeg-devel] [PATCH 1/3] omadec: fix overflows during bit rate calculation

2016-12-12 Thread Andreas Cadhalpun
Signed-off-by: Andreas Cadhalpun --- libavformat/omadec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/omadec.c b/libavformat/omadec.c index 6e476db..e7751d0 100644 --- a/libavformat/omadec.c +++ b/libavformat/omadec.c @@ -365,7 +365,7 @@ static int oma_read

Re: [FFmpeg-devel] [PATCH] avutil: fix data race in av_get_cpu_flags()

2016-12-12 Thread Michael Niedermayer
On Tue, Dec 06, 2016 at 06:16:13PM -0800, Wan-Teh Chang wrote: > Make the one-time initialization in av_get_cpu_flags() thread-safe. The > static variable |cpu_flags| in libavutil/cpu.c is read and written using > normal load and store operations. These are considered as data races. > The fix is to

Re: [FFmpeg-devel] [PATCH 2/2] avformat/utils: Print verbose error message if stream count exceeds max_streams

2016-12-12 Thread Andreas Cadhalpun
On 10.12.2016 20:15, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > libavformat/utils.c | 5 - > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/libavformat/utils.c b/libavformat/utils.c > index 9e979a7c79..897352924d 100644 > --- a/libavformat/utils.

Re: [FFmpeg-devel] [PATCH 1/2] avformat/options_table: Set the default maximum number of streams to 1000

2016-12-12 Thread Andreas Cadhalpun
On 10.12.2016 20:15, Michael Niedermayer wrote: > Fixes CVE-2016-9561 I think the commit message should mention that the security relevance of this is disputed, as running out of memory can happen with valid files. > Suggested-by: Andreas Cadhalpun > Signed-off-by: Michael Niedermayer > --- >

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-12-12 Thread Andreas Cadhalpun
On 10.12.2016 17:55, Stefano Sabatini wrote: > From ebc34da37648a07f25da94a1662c278c13ca7383 Mon Sep 17 00:00:00 2001 > From: Nicolas George > Date: Sat, 11 Jan 2014 19:42:41 +0100 > Subject: [PATCH] lavf: add ffprobe demuxer > > With several modifications and documentation by Stefano Sabatini >

Re: [FFmpeg-devel] [PATCH] opt: reject denominator zero as out of range

2016-12-12 Thread Andreas Cadhalpun
On 12.12.2016 03:39, Michael Niedermayer wrote: > On Mon, Dec 12, 2016 at 01:31:47AM +0100, Andreas Cadhalpun wrote: >> Signed-off-by: Andreas Cadhalpun >> --- >> libavutil/opt.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/libavutil/opt.c b/libavutil/opt.c >> index

Re: [FFmpeg-devel] [PATCH] libvpxenc: Don't spam level errors for VP8 encodes

2016-12-12 Thread James Zern
On Mon, Dec 12, 2016 at 12:12 PM, Alex Converse wrote: > Fixes "Failed to set VP9E_GET_LEVEL codec control: Codec does not > implement requested capability" log messages on VP8 encodes. > --- > libavcodec/libvpxenc.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > lgtm __

Re: [FFmpeg-devel] [PATCH 1/2] avutil/replaygain: add av_replaygain_alloc()

2016-12-12 Thread James Almer
On 12/12/2016 7:24 PM, Michael Niedermayer wrote: > On Mon, Dec 12, 2016 at 12:23:00AM -0300, James Almer wrote: >> Signed-off-by: James Almer >> --- >> TODO: APIChanges entry and version bump. >> >> libavutil/replaygain.c | 38 ++ >> libavutil/replaygain.h | 1

Re: [FFmpeg-devel] [PATCH 1/2] avutil/replaygain: add av_replaygain_alloc()

2016-12-12 Thread Michael Niedermayer
On Mon, Dec 12, 2016 at 12:23:00AM -0300, James Almer wrote: > Signed-off-by: James Almer > --- > TODO: APIChanges entry and version bump. > > libavutil/replaygain.c | 38 ++ > libavutil/replaygain.h | 10 ++ > 2 files changed, 48 insertions(+) > crea

[FFmpeg-devel] [PATCH] avfilter/avfilter: fix filtering frames with unknown channel layouts for filters needing writable frames

2016-12-12 Thread Marton Balint
Signed-off-by: Marton Balint --- libavfilter/avfilter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 662f933..6f30e3b 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -1096,7 +1096,7 @@ static int ff_f

[FFmpeg-devel] ARM fate

2016-12-12 Thread Michael Niedermayer
Hi all The panda arm board iam using as fate client for fate.ffmpeg.org seems not really able to handle the load. Iam not sure why, but increasing number of fate tests, branches it tests and compiler/option cases probably are the primary reason. I already dropped half the branches it tests but it

Re: [FFmpeg-devel] [PATCH 1/3] Revert "avcodec: Add max_pixels options"

2016-12-12 Thread Michael Niedermayer
On Mon, Dec 12, 2016 at 09:16:54PM +0100, wm4 wrote: > On Mon, 12 Dec 2016 21:00:19 +0100 > Michael Niedermayer wrote: > > > On Mon, Dec 12, 2016 at 12:04:05PM +0100, Nicolas George wrote: > > > Le primidi 21 frimaire, an CCXXV, Michael Niedermayer a écrit : [...] > > completely independant of

Re: [FFmpeg-devel] [PATCH 1/3] Revert "avcodec: Add max_pixels options"

2016-12-12 Thread wm4
On Mon, 12 Dec 2016 21:00:19 +0100 Michael Niedermayer wrote: > On Mon, Dec 12, 2016 at 12:04:05PM +0100, Nicolas George wrote: > > Le primidi 21 frimaire, an CCXXV, Michael Niedermayer a écrit : > > > You misunderstand > > > > > > I want to find code that allocates too much memory where it sh

[FFmpeg-devel] [PATCH] libvpxenc: Don't spam level errors for VP8 encodes

2016-12-12 Thread Alex Converse
Fixes "Failed to set VP9E_GET_LEVEL codec control: Codec does not implement requested capability" log messages on VP8 encodes. --- libavcodec/libvpxenc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c index 1325199..de0d0b6 100

Re: [FFmpeg-devel] [PATCH] avcodec: Require avoptions for the user to set max_pixels.

2016-12-12 Thread Michael Niedermayer
On Mon, Dec 12, 2016 at 08:28:40PM +0100, wm4 wrote: > On Mon, 12 Dec 2016 19:55:59 +0100 > Michael Niedermayer wrote: > > > On Mon, Dec 12, 2016 at 05:59:32PM +0100, wm4 wrote: > > > On Mon, 12 Dec 2016 17:34:15 +0100 > > > Michael Niedermayer wrote: > > > > > > > On Mon, Dec 12, 2016 at 09:

Re: [FFmpeg-devel] [PATCH 1/3] Revert "avcodec: Add max_pixels options"

2016-12-12 Thread Michael Niedermayer
On Mon, Dec 12, 2016 at 12:04:05PM +0100, Nicolas George wrote: > Le primidi 21 frimaire, an CCXXV, Michael Niedermayer a écrit : > > You misunderstand > > > > I want to find code that allocates too much memory where it should > > not. > > to give an example > > there was long ago some code like >

Re: [FFmpeg-devel] [PATCH] configure: add -fPIE instead of -pie to C flags for ThreadSanitizer

2016-12-12 Thread Carl Eugen Hoyos
2016-12-12 20:55 GMT+01:00 Wan-Teh Chang : > gcc 6.2.0 works with and without my patch. Thank you. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 1/3] Revert "avcodec: Add max_pixels options"

2016-12-12 Thread Carl Eugen Hoyos
2016-12-11 19:27 GMT+01:00 Nicolas George : > To give an example, I think Anton, with his "evil plans", is > good at seeing the big picture To me, this seems like exactly the kind of offense that are constantly asking to avoid. Carl Eugen ___ ffmpeg-dev

Re: [FFmpeg-devel] [PATCH] configure: add -fPIE instead of -pie to C flags for ThreadSanitizer

2016-12-12 Thread Wan-Teh Chang
On Mon, Dec 12, 2016 at 6:42 AM, Carl Eugen Hoyos wrote: > 2016-12-02 23:04 GMT+01:00 Wan-Teh Chang : >> -pie was added to C flags for ThreadSanitizer in commit >> 19f251a2882a8d0779b432e63bf282e4d9c443bb. Under clang 3.8.0, the -pie >> flag causes a compiler warning and a linker error when runnin

Re: [FFmpeg-devel] [PATCH] avcodec: Require avoptions for the user to set max_pixels.

2016-12-12 Thread wm4
On Mon, 12 Dec 2016 19:55:59 +0100 Michael Niedermayer wrote: > On Mon, Dec 12, 2016 at 05:59:32PM +0100, wm4 wrote: > > On Mon, 12 Dec 2016 17:34:15 +0100 > > Michael Niedermayer wrote: > > > > > On Mon, Dec 12, 2016 at 09:48:01AM +0100, wm4 wrote: > > > > On Mon, 12 Dec 2016 03:34:27 +010

Re: [FFmpeg-devel] [PATCH] avcodec: Require avoptions for the user to set max_pixels.

2016-12-12 Thread Michael Niedermayer
On Mon, Dec 12, 2016 at 05:59:32PM +0100, wm4 wrote: > On Mon, 12 Dec 2016 17:34:15 +0100 > Michael Niedermayer wrote: > > > On Mon, Dec 12, 2016 at 09:48:01AM +0100, wm4 wrote: > > > On Mon, 12 Dec 2016 03:34:27 +0100 > > > Michael Niedermayer wrote: > > > > > > > On Sun, Dec 11, 2016 at 10:

Re: [FFmpeg-devel] [PATCH] avcodec: Require avoptions for the user to set max_pixels.

2016-12-12 Thread wm4
On Mon, 12 Dec 2016 17:34:15 +0100 Michael Niedermayer wrote: > On Mon, Dec 12, 2016 at 09:48:01AM +0100, wm4 wrote: > > On Mon, 12 Dec 2016 03:34:27 +0100 > > Michael Niedermayer wrote: > > > > > On Sun, Dec 11, 2016 at 10:51:08PM -0300, James Almer wrote: > > > > On 12/11/2016 10:29 PM, M

Re: [FFmpeg-devel] [PATCH 1/6] avutil/mastering_display_metadata: add av_mastering_display_metadata_alloc2()

2016-12-12 Thread wm4
On Mon, 12 Dec 2016 17:31:51 +0100 Michael Niedermayer wrote: > On Mon, Dec 12, 2016 at 10:06:31AM +0100, wm4 wrote: > > On Sun, 11 Dec 2016 22:20:39 +0100 > > Michael Niedermayer wrote: > > > > > On Sun, Dec 11, 2016 at 02:00:04PM +0100, wm4 wrote: > > > > On Sun, 11 Dec 2016 00:33:03 -030

Re: [FFmpeg-devel] [PATCH] avcodec: Require avoptions for the user to set max_pixels.

2016-12-12 Thread Michael Niedermayer
On Mon, Dec 12, 2016 at 09:48:01AM +0100, wm4 wrote: > On Mon, 12 Dec 2016 03:34:27 +0100 > Michael Niedermayer wrote: > > > On Sun, Dec 11, 2016 at 10:51:08PM -0300, James Almer wrote: > > > On 12/11/2016 10:29 PM, Michael Niedermayer wrote: > > > > On Sat, Dec 10, 2016 at 09:52:08PM -0300, Ja

Re: [FFmpeg-devel] [PATCH 1/6] avutil/mastering_display_metadata: add av_mastering_display_metadata_alloc2()

2016-12-12 Thread Michael Niedermayer
On Mon, Dec 12, 2016 at 10:06:31AM +0100, wm4 wrote: > On Sun, 11 Dec 2016 22:20:39 +0100 > Michael Niedermayer wrote: > > > On Sun, Dec 11, 2016 at 02:00:04PM +0100, wm4 wrote: > > > On Sun, 11 Dec 2016 00:33:03 -0300 > > [...] > > > Here are some brainstormed alternative ideas to adding those

Re: [FFmpeg-devel] [PATCH 2/2] avformat/hls: Add subtitle support

2016-12-12 Thread Anssi Hannula
Hi, 07.12.2016, 00:04, Franklin Phillips kirjoitti: > Assuming the reason why my patch wasn't being merged was because it > didn't use the X-TIMESTAMP-MAP, I have included the changes for that. > > Those changes were basically a merge of work done by > anssi.hann...@iki.fi which is why I've cc'd

Re: [FFmpeg-devel] [PATCH] configure: add -fPIE instead of -pie to C flags for ThreadSanitizer

2016-12-12 Thread Carl Eugen Hoyos
2016-12-02 23:04 GMT+01:00 Wan-Teh Chang : > -pie was added to C flags for ThreadSanitizer in commit > 19f251a2882a8d0779b432e63bf282e4d9c443bb. Under clang 3.8.0, the -pie > flag causes a compiler warning and a linker error when running configure > --toolchain=clang-tsan. Does the patch have any

Re: [FFmpeg-devel] lavf/isom: Support EVRC in pvAuthor files.

2016-12-12 Thread Michael Niedermayer
On Mon, Dec 12, 2016 at 11:49:41AM +0100, Carl Eugen Hoyos wrote: > 2016-12-12 3:44 GMT+01:00 Michael Niedermayer : > > On Mon, Dec 12, 2016 at 01:54:12AM +0100, Carl Eugen Hoyos wrote: > >> Hi! > >> > >> Attached patch fixes ticket #6014. > >> > >> Please comment, Carl Eugen > > > >> isom.c |

Re: [FFmpeg-devel] [PATCH]lavf/mov: Accept multiple fourcc for AVID 1:1

2016-12-12 Thread Carl Eugen Hoyos
2016-12-02 1:03 GMT+01:00 compn : > On Fri, 2 Dec 2016 00:40:02 +0100 > Carl Eugen Hoyos wrote: > >> 2016-12-01 19:58 GMT+01:00 compn : >> >> > if (codec_tag && >> > (codec_tag != format && >> > + (codec_tag != AV_RL32("AV1x") || format != >> > AV_RL32("AVup")) && // prores

[FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2016-12-12 Thread Carl Eugen Hoyos
Hi! I saw only after writing this patch that a Google employee has sent a more complicated variant of this patch in November (searching for a description of the vendor field showed the patch). Please comment, Carl Eugen From 182ee7b3dca51a49a606c4d11758819ec29fc181 Mon Sep 17 00:00:00 2001 From

Re: [FFmpeg-devel] [PATCH 1/3] Revert "avcodec: Add max_pixels options"

2016-12-12 Thread Nicolas George
Le primidi 21 frimaire, an CCXXV, Michael Niedermayer a écrit : > You misunderstand > > I want to find code that allocates too much memory where it should > not. > to give an example > there was long ago some code like > > len = read() > for (i x= alloc() > x.whatever =read() > ... >

Re: [FFmpeg-devel] lavf/isom: Support EVRC in pvAuthor files.

2016-12-12 Thread Carl Eugen Hoyos
2016-12-12 3:44 GMT+01:00 Michael Niedermayer : > On Mon, Dec 12, 2016 at 01:54:12AM +0100, Carl Eugen Hoyos wrote: >> Hi! >> >> Attached patch fixes ticket #6014. >> >> Please comment, Carl Eugen > >> isom.c |1 + >> 1 file changed, 1 insertion(+) >> d9c95ca1ee86b780a596b39f0170cb176945a5a3

Re: [FFmpeg-devel] lavf/isom: Support EVRC in pvAuthor files.

2016-12-12 Thread Carl Eugen Hoyos
2016-12-12 11:15 GMT+01:00 Paul B Mahol : > On 12/12/16, Carl Eugen Hoyos wrote: >> 2016-12-12 9:24 GMT+01:00 Paul B Mahol : >>> On 12/12/16, Carl Eugen Hoyos wrote: Hi! Attached patch fixes ticket #6014. Please comment, Carl Eugen >>> >>> Please try keep it in order

Re: [FFmpeg-devel] [PATCH 1/3] Revert "avcodec: Add max_pixels options"

2016-12-12 Thread Nicolas George
Le primidi 21 frimaire, an CCXXV, compn a écrit : > would you rather the people doing the fuzzing use this feature as a > separate patch so it does not contaminate master? I would rather have the people doing the fussing stop for a few minutes to think what they need exactly and implement it prope

Re: [FFmpeg-devel] lavf/isom: Support EVRC in pvAuthor files.

2016-12-12 Thread Paul B Mahol
On 12/12/16, Carl Eugen Hoyos wrote: > 2016-12-12 9:24 GMT+01:00 Paul B Mahol : >> On 12/12/16, Carl Eugen Hoyos wrote: >>> Hi! >>> >>> Attached patch fixes ticket #6014. >>> >>> Please comment, Carl Eugen >>> >> >> Please try keep it in order, otherwise ok > > Where exactly do you want me to put

Re: [FFmpeg-devel] lavf/isom: Support EVRC in pvAuthor files.

2016-12-12 Thread Carl Eugen Hoyos
2016-12-12 9:24 GMT+01:00 Paul B Mahol : > On 12/12/16, Carl Eugen Hoyos wrote: >> Hi! >> >> Attached patch fixes ticket #6014. >> >> Please comment, Carl Eugen >> > > Please try keep it in order, otherwise ok Where exactly do you want me to put the new line? Carl Eugen _

Re: [FFmpeg-devel] [PATCH 1/6] avutil/mastering_display_metadata: add av_mastering_display_metadata_alloc2()

2016-12-12 Thread wm4
On Sun, 11 Dec 2016 22:20:39 +0100 Michael Niedermayer wrote: > On Sun, Dec 11, 2016 at 02:00:04PM +0100, wm4 wrote: > > On Sun, 11 Dec 2016 00:33:03 -0300 > [...] > > Here are some brainstormed alternative ideas to adding those ...2() > > functions: > > - add functions to add side data by type

Re: [FFmpeg-devel] [PATCH 1/3] Revert "avcodec: Add max_pixels options"

2016-12-12 Thread wm4
On Sun, 11 Dec 2016 22:38:44 -0500 compn wrote: > On Sun, 11 Dec 2016 17:39:58 +0100 > Nicolas George wrote: > > > This reverts commit 2f07830e69bd14eaba348eb739b9503e7eb7cd4b. > > would you rather the people doing the fuzzing use this feature as a > separate patch so it does not contaminate

Re: [FFmpeg-devel] [PATCH] avcodec: Require avoptions for the user to set max_pixels.

2016-12-12 Thread wm4
On Mon, 12 Dec 2016 03:34:27 +0100 Michael Niedermayer wrote: > On Sun, Dec 11, 2016 at 10:51:08PM -0300, James Almer wrote: > > On 12/11/2016 10:29 PM, Michael Niedermayer wrote: > > > On Sat, Dec 10, 2016 at 09:52:08PM -0300, James Almer wrote: > > >> On 12/10/2016 9:23 PM, Michael Niederma

Re: [FFmpeg-devel] lavf/isom: Support EVRC in pvAuthor files.

2016-12-12 Thread Paul B Mahol
On 12/12/16, Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes ticket #6014. > > Please comment, Carl Eugen > Please try keep it in order, otherwise ok ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-

Re: [FFmpeg-devel] Getting Started.

2016-12-12 Thread Paul B Mahol
On 12/12/16, Agneet Chatterjee wrote: > I'm having prior knowledge in C and C++. What I have no knowledge is the > code base of ffmpeg. If you could provide me the basics of where to start > and get me accustomed to the various projects that the organisation deals > with. I could start contributin

Re: [FFmpeg-devel] Getting Started.

2016-12-12 Thread Agneet Chatterjee
I'm having prior knowledge in C and C++. What I have no knowledge is the code base of ffmpeg. If you could provide me the basics of where to start and get me accustomed to the various projects that the organisation deals with. I could start contributing at my earliest. Thank you. On 12 Dec 2016 0