Re: [FFmpeg-devel] [PATCH v10] - Added Turing codec interface for ffmpeg

2017-05-16 Thread Saverio Blasi
Dear all, We would appreciate if you could let us know the procedure and expected timeline for integration of our patch related with the Turing codec within the ffmpeg project. Thank you, All the best, Saverio -Original Message- From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.

[FFmpeg-devel] [PATCH] avcodec/cuvid: Use a dummy packet to flush cuvid.

2017-05-16 Thread Wiki Wang
--- libavcodec/cuvid.c | 13 +++-- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/libavcodec/cuvid.c b/libavcodec/cuvid.c index 218be8495d..0b1710bd46 100644 --- a/libavcodec/cuvid.c +++ b/libavcodec/cuvid.c @@ -1029,20 +1029,13 @@ static void cuvid_flush(AVCodecContext *av

Re: [FFmpeg-devel] [PATCH] avcodec/cuvid: Use a dummy packet to flush cuvid.

2017-05-16 Thread Timo Rothenpieler
Am 16.05.2017 um 10:27 schrieb Wiki Wang: > --- > libavcodec/cuvid.c | 13 +++-- > 1 file changed, 3 insertions(+), 10 deletions(-) > > diff --git a/libavcodec/cuvid.c b/libavcodec/cuvid.c > index 218be8495d..0b1710bd46 100644 > --- a/libavcodec/cuvid.c > +++ b/libavcodec/cuvid.c > @@ -10

Re: [FFmpeg-devel] [PATCH] configure: jni no longer requires -ldl

2017-05-16 Thread Matthieu Bouron
On Sat, May 13, 2017 at 05:26:13PM +0200, Matthieu Bouron wrote: > On Fri, May 12, 2017 at 12:14:20PM -0700, Aaron Levinson wrote: > > On 5/12/2017 11:34 AM, Aman Gupta wrote: > > > From: Aman Gupta > > > > > > this dependency was removed in 33d69a90085d30af8a292d9364b835a26565d6b9 > > > --- > >

Re: [FFmpeg-devel] [PATCH] avcodec/dcaenc: Do not abort process in case of bitrate deficit

2017-05-16 Thread Rostislav Pehlivanov
On 12 May 2017 at 00:33, Даниил Чередник wrote: > Hi. > > This patch removes assert which can cause abort process in case of limited > bitrate: > > Old behaviour - abort if at least one subband has 1bit quantizer > and consumed_bits still greater than frame_bits size. It was > a bit strange - we

Re: [FFmpeg-devel] FFMpeg GPL license Violations by Android apps

2017-05-16 Thread Carl Eugen Hoyos
2017-05-15 17:24 GMT+02:00 riya khanna : > Please find the list of apps here: > https://docs.google.com/spreadsheets/d/1YnBHbsYIyGxQbjpaIbU4LFjha3hx83ciKLk7htVjpT4/edit?usp=sharing As said, I believe it may be useful if you send this list - as plain text - to this mailing list. Please avoid top-p

Re: [FFmpeg-devel] [PATCH 1/3] lavc: add codec ID and description for SVG

2017-05-16 Thread Rostislav Pehlivanov
On 8 May 2017 at 05:46, Rostislav Pehlivanov wrote: > Signed-off-by: Rostislav Pehlivanov > --- > libavcodec/avcodec.h| 1 + > libavcodec/codec_desc.c | 8 > 2 files changed, 9 insertions(+) > > diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h > index 35df4f6ced..4bbe5179b4

Re: [FFmpeg-devel] [PATCH 3/3] lavc: add a librsvg rasterization library wrapper

2017-05-16 Thread Rostislav Pehlivanov
On 8 May 2017 at 05:46, Rostislav Pehlivanov wrote: > Enables rendering of SVG images. This is possible since SVG images > still contain and specify the dimensions in pixels to which they've > been drawn to and thus enable browsers to display them without any > external data. Users can still over

Re: [FFmpeg-devel] [PATCH]Two patches from github

2017-05-16 Thread Carl Eugen Hoyos
2017-05-15 12:53 GMT+02:00 wm4 : > On Mon, 15 May 2017 12:40:23 +0200 > Carl Eugen Hoyos wrote: > >> From 42766f345dbf398716c6fd9072f072f5fa91c940 Mon Sep 17 00:00:00 2001 >> From: Steve Kondik >> Date: Tue, 16 Dec 2014 01:37:57 -0800 >> Subject: [PATCH 2/2] avutil: Use _SC_NPROCESSORS_CONF >> >>

Re: [FFmpeg-devel] [PATCH 2/3] img2dec: add support for piped SVG demuxing

2017-05-16 Thread Rostislav Pehlivanov
On 8 May 2017 at 05:46, Rostislav Pehlivanov wrote: > Only checks the extension and MIME type, since determining whether > a file is SVG is difficult since they're just XML files. > > Signed-off-by: Rostislav Pehlivanov > --- > libavformat/Makefile | 1 + > libavformat/allformats.c | 1 +

Re: [FFmpeg-devel] [PATCH 2/3] img2dec: add support for piped SVG demuxing

2017-05-16 Thread Carl Eugen Hoyos
2017-05-08 6:46 GMT+02:00 Rostislav Pehlivanov : > Only checks the extension and MIME type, since determining whether > a file is SVG is difficult since they're just XML files. Why didn't you just add svg and svgz to the image2 extensions? Carl Eugen __

[FFmpeg-devel] [PATCH] avutil/hwcontext_dxva2: No longer improperly freeing IDirect3DSurface9 objects

2017-05-16 Thread Aaron Levinson
Purpose: No longer improperly freeing IDirect3DSurface9 objects in hwcontext_dxva2.c. Added dxva2_pool_release_dummy() and using it in call to av_buffer_create() in dxva2_pool_alloc(). Prior to this change, av_buffer_create() was called with NULL for the third argument, which indicates that av_bu

Re: [FFmpeg-devel] [PATCH] Added line to the af_bs2b filter docs mentioning --enable-libbs2b

2017-05-16 Thread Paul B Mahol
On 5/16/17, Leo Izen wrote: > --- > doc/filters.texi | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/doc/filters.texi b/doc/filters.texi > index 9611a41e28..a7c6063969 100644 > --- a/doc/filters.texi > +++ b/doc/filters.texi > @@ -1911,6 +1911,9 @@ available are filtered. > Bauer ste

[FFmpeg-devel] [PATCH] configure: use -x instead of -wN ..@ to strip assembly files

2017-05-16 Thread Rostislav Pehlivanov
Reduces the amount of debugging information of external asm from uselessly verbose to informative enough. --- configure | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure b/configure index e4862f6a35..df849df14f 100755 --- a/configure +++ b/configure @@ -6185,8 +6185,7

Re: [FFmpeg-devel] [PATCH]Two patches from github

2017-05-16 Thread wm4
On Tue, 16 May 2017 12:40:03 +0200 Carl Eugen Hoyos wrote: > 2017-05-15 12:53 GMT+02:00 wm4 : > > On Mon, 15 May 2017 12:40:23 +0200 > > Carl Eugen Hoyos wrote: > > > >> From 42766f345dbf398716c6fd9072f072f5fa91c940 Mon Sep 17 00:00:00 2001 > >> From: Steve Kondik > >> Date: Tue, 16 Dec 2014

Re: [FFmpeg-devel] [PATCH 2/3] img2dec: add support for piped SVG demuxing

2017-05-16 Thread Rostislav Pehlivanov
On 16 May 2017 at 11:57, Carl Eugen Hoyos wrote: > 2017-05-08 6:46 GMT+02:00 Rostislav Pehlivanov : > > Only checks the extension and MIME type, since determining whether > > a file is SVG is difficult since they're just XML files. > > Why didn't you just add svg and svgz to the image2 extensions

Re: [FFmpeg-devel] [PATCH 2/3] img2dec: add support for piped SVG demuxing

2017-05-16 Thread Carl Eugen Hoyos
2017-05-16 13:25 GMT+02:00 Rostislav Pehlivanov : > On 16 May 2017 at 11:57, Carl Eugen Hoyos wrote: > >> 2017-05-08 6:46 GMT+02:00 Rostislav Pehlivanov : >> > Only checks the extension and MIME type, since determining whether >> > a file is SVG is difficult since they're just XML files. >> >> Why

Re: [FFmpeg-devel] [PATCH 2/3] img2dec: add support for piped SVG demuxing

2017-05-16 Thread Rostislav Pehlivanov
On 16 May 2017 at 12:34, Carl Eugen Hoyos wrote: > 2017-05-16 13:25 GMT+02:00 Rostislav Pehlivanov : > > On 16 May 2017 at 11:57, Carl Eugen Hoyos wrote: > > > >> 2017-05-08 6:46 GMT+02:00 Rostislav Pehlivanov : > >> > Only checks the extension and MIME type, since determining whether > >> > a f

Re: [FFmpeg-devel] [PATCH] avutil/hwcontext_dxva2: No longer improperly freeing IDirect3DSurface9 objects

2017-05-16 Thread Aaron Levinson
Please disregard--I will submit a new patch with a better commit message. Aaron On 5/16/2017 4:09 AM, Aaron Levinson wrote: Purpose: No longer improperly freeing IDirect3DSurface9 objects in hwcontext_dxva2.c. Added dxva2_pool_release_dummy() and using it in call to av_buffer_create() in dxva2

[FFmpeg-devel] [PATCH] avutil/hwcontext_dxva2: Don't improperly free IDirect3DSurface9 objects

2017-05-16 Thread Aaron Levinson
Add dxva2_pool_release_dummy() and use it in call to av_buffer_create() in dxva2_pool_alloc(). Prior to this change, av_buffer_create() was called with NULL for the third argument, which indicates that av_buffer_default_free() should be used to free the buffer's data. Eventually, it gets to buffe

Re: [FFmpeg-devel] [PATCH]Two patches from github

2017-05-16 Thread Benoit Fouet
Hi, On 15/05/2017 12:40, Carl Eugen Hoyos wrote: > > 0002-avutil-Use-_SC_NPROCESSORS_CONF.patch > > > From 42766f345dbf398716c6fd9072f072f5fa91c940 Mon Sep 17 00:00:00 2001 > From: Steve Kondik > Date: Tue, 16 Dec 2014 01:37:57 -0800 > Subject: [PATCH 2/2] avutil: Use _SC_NPROCESSORS_CONF > > *

Re: [FFmpeg-devel] [PATCH 2/3] img2dec: add support for piped SVG demuxing

2017-05-16 Thread Carl Eugen Hoyos
2017-05-16 13:48 GMT+02:00 Rostislav Pehlivanov : > On 16 May 2017 at 12:34, Carl Eugen Hoyos wrote: > >> 2017-05-16 13:25 GMT+02:00 Rostislav Pehlivanov : >> > On 16 May 2017 at 11:57, Carl Eugen Hoyos wrote: >> > >> >> 2017-05-08 6:46 GMT+02:00 Rostislav Pehlivanov : >> >> > Only checks the ext

Re: [FFmpeg-devel] [PATCH] avutil/hwcontext_dxva2: Don't improperly free IDirect3DSurface9 objects

2017-05-16 Thread wm4
On Tue, 16 May 2017 05:04:36 -0700 Aaron Levinson wrote: > Add dxva2_pool_release_dummy() and use it in call to > av_buffer_create() in dxva2_pool_alloc(). > > Prior to this change, av_buffer_create() was called with NULL for the > third argument, which indicates that av_buffer_default_free() sh

Re: [FFmpeg-devel] FFMpeg GPL license Violations by Android apps

2017-05-16 Thread Steven Liu
2017-05-16 18:32 GMT+08:00 Carl Eugen Hoyos : > 2017-05-15 17:24 GMT+02:00 riya khanna : > > Please find the list of apps here: > > https://docs.google.com/spreadsheets/d/1YnBHbsYIyGxQbjpaIbU4LFjha3hx8 > 3ciKLk7htVjpT4/edit?usp=sharing > > As said, I believe it may be useful if you send this list

Re: [FFmpeg-devel] [PATCH] avutil/hwcontext_dxva2: Don't improperly free IDirect3DSurface9 objects

2017-05-16 Thread Steven Liu
2017-05-16 20:23 GMT+08:00 wm4 : > On Tue, 16 May 2017 05:04:36 -0700 > Aaron Levinson wrote: > > > Add dxva2_pool_release_dummy() and use it in call to > > av_buffer_create() in dxva2_pool_alloc(). > > > > Prior to this change, av_buffer_create() was called with NULL for the > > third argument,

[FFmpeg-devel] 回覆: [PATCH 2/3] img2dec: .z, for piped SVG demuxing

2017-05-16 Thread r97922...@gmail.com
Pz BE MpR 從我的 HTC 寄出PC - 回覆訊息 - 寄件者: "Carl Eugen Hoyos" 收件者: "FFmpeg development discussions and patches" 主旨: [FFmpeg-devel] [PATCH 2/3] img2dec: add support for piped SVG demuxing 日期: 週二, 5月 16 日, 2017 年 8:09 下午 2017-05-16 13:48 GMT+02:00 Rostislav Pehlivanov : > On 16 May 2017 at 12:

Re: [FFmpeg-devel] [PATCH] avcodec/cuvid: Use a dummy packet to flush cuvid.

2017-05-16 Thread Philip Langdale
On May 16, 2017, at 01:32, Timo Rothenpieler wrote: > >> Am 16.05.2017 um 10:27 schrieb Wiki Wang: >> --- >> libavcodec/cuvid.c | 13 +++-- >> 1 file changed, 3 insertions(+), 10 deletions(-) >> >> diff --git a/libavcodec/cuvid.c b/libavcodec/cuvid.c >> index 218be8495d..0b1710bd46 100644

Re: [FFmpeg-devel] [PATCH] Added line to the af_bs2b filter docs mentioning --enable-libbs2b

2017-05-16 Thread Michael Niedermayer
On Tue, May 16, 2017 at 01:12:30PM +0200, Paul B Mahol wrote: > On 5/16/17, Leo Izen wrote: > > --- > > doc/filters.texi | 3 +++ > > 1 file changed, 3 insertions(+) > > > > diff --git a/doc/filters.texi b/doc/filters.texi > > index 9611a41e28..a7c6063969 100644 > > --- a/doc/filters.texi > > +++

Re: [FFmpeg-devel] [PATCH] avcodec/scpr: mask bits to prevent out of array read

2017-05-16 Thread Michael Niedermayer
On Tue, May 16, 2017 at 07:57:45AM +0200, Paul B Mahol wrote: > On 5/16/17, Michael Niedermayer wrote: > > Fixes: 1615/clusterfuzz-testcase-minimized-6625214647500800 > > > > Found-by: continuous fuzzing process > > https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg > > Signed-off-by: M

Re: [FFmpeg-devel] [PATCH] avcodec/cuvid: Use a dummy packet to flush cuvid.

2017-05-16 Thread Hendrik Leppkes
On Tue, May 16, 2017 at 3:41 PM, Philip Langdale wrote: > On May 16, 2017, at 01:32, Timo Rothenpieler wrote: >> >>> Am 16.05.2017 um 10:27 schrieb Wiki Wang: >>> --- >>> libavcodec/cuvid.c | 13 +++-- >>> 1 file changed, 3 insertions(+), 10 deletions(-) >>> >>> diff --git a/libavcodec/cuv

Re: [FFmpeg-devel] [PATCH] Disable MSA optimization for big endian arch

2017-05-16 Thread Michael Niedermayer
On Mon, Apr 24, 2017 at 05:33:22PM +0530, shivraj.pa...@imgtec.com wrote: > From: Shivraj Patil > > Signed-off-by: Shivraj Patil > --- > configure |4 > 1 file changed, 4 insertions(+) > > diff --git a/configure b/configure > index 1e3463c..c63a48a 100755 > --- a/configure > +++ b/con

Re: [FFmpeg-devel] [PATCH] libavformat aviobuf: Fixed dst pointer initialization in fill_buffer

2017-05-16 Thread Rob Meyers
No problem. I'll resubmit the patch request. On Mon, May 15, 2017 at 9:47 PM wm4 wrote: > On Mon, 15 May 2017 17:55:28 + > Rob Meyers wrote: > > > Of course. > > > > We noticed when reading data from a named pipe the first 10 bytes would > get > > dropped. I traced this to the affected code

Re: [FFmpeg-devel] [PATCH] libavformat aviobuf: Fixed dst pointer initialization in fill_buffer

2017-05-16 Thread Michael Niedermayer
On Mon, May 15, 2017 at 05:55:28PM +, Rob Meyers wrote: > Of course. > > We noticed when reading data from a named pipe the first 10 bytes would get > dropped. from were are bytes droped ? this is the internal buffer, not something a user should touch directly. > I traced this to the affect

[FFmpeg-devel] [PATCH] libavformat: data loss in message accumulation in fill_buffer()

2017-05-16 Thread Rob Meyers
We noticed when reading data from a named pipe the first 10 bytes would get dropped. I traced this to the affected code in fill_buffer(). The assignment of "dst" was always set to the beginning of the buffer, and if it hadn't been consumed yet the data would be overwritten. We could reproduce this

Re: [FFmpeg-devel] [PATCH] libavformat aviobuf: Fixed dst pointer initialization in fill_buffer

2017-05-16 Thread Rob Meyers
Here's a simple server we used to reproduce the problem: #include #include #include #include #include #define INGOING "/tmp/audio.fifo" ssize_t write_fifo(int fd, char* msg, int size) { ssize_t write_rc; write_rc = write(fd, msg, size); printf("msg '%s' write_rc = %ld\n", msg, write_

[FFmpeg-devel] License consent (cinepakenc.c)

2017-05-16 Thread Tomas Härdin
Hi I got a question from Diego via IRC about what license cinepakenc.c actually has, since the first commit message just has a message by"Rl" saying that I said it was OK but with no appropriately signed message from me. So I'm posting this just to clarify things: I consent to the original licens

Re: [FFmpeg-devel] License consent (cinepakenc.c)

2017-05-16 Thread James Almer
On 5/16/2017 3:13 PM, Tomas Härdin wrote: > Hi > > I got a question from Diego via IRC about what license cinepakenc.c > actually has, since the first commit message just has a message by"Rl" > saying that I said it was OK but with no appropriately signed message > from me. So I'm posting this jus

Re: [FFmpeg-devel] [PATCH] configure: use -x instead of -wN ..@ to strip assembly files

2017-05-16 Thread James Darnley
On 2017-05-16 13:08, Rostislav Pehlivanov wrote: > Reduces the amount of debugging information of external asm from > uselessly verbose to informative enough. > --- > configure | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/configure b/configure > index e4862f6a35..df8

[FFmpeg-devel] [PATCH] fix GetBitContext index when SPS bitstream_restriction_flag=1 but can't be parsed, because index is out of bit-stream size. Need return index value continue H.264 parsing

2017-05-16 Thread Ivan Shmakov
--- libavcodec/h264_ps.c | 4 1 file changed, 4 insertions(+) diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c index 7858361..09e2290 100644 --- a/libavcodec/h264_ps.c +++ b/libavcodec/h264_ps.c @@ -136,6 +136,7 @@ static inline int decode_vui_parameters(GetBitContext *gb, AVCodecCon

[FFmpeg-devel] Decoding issue with AAC SBR from flv

2017-05-16 Thread Thomas Jammet
Hi, I think to have found a regression into ffmpeg 3.x versions. When I try to play the file in attachment it gives inaudible output and a lot of errors from ffplay (see example below). I have tested it with ffmpeg 3.3.git and stable release 3.2.3 on Linux and Windows and it gives the same result

Re: [FFmpeg-devel] [PATCH] fix GetBitContext index when SPS bitstream_restriction_flag=1 but can't be parsed, because index is out of bit-stream size. Need return index value continue H.264 parsing

2017-05-16 Thread Hendrik Leppkes
On Tue, May 16, 2017 at 2:13 PM, Ivan Shmakov wrote: > --- > libavcodec/h264_ps.c | 4 > 1 file changed, 4 insertions(+) > > diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c > index 7858361..09e2290 100644 > --- a/libavcodec/h264_ps.c > +++ b/libavcodec/h264_ps.c > @@ -136,6 +136,7 @

Re: [FFmpeg-devel] License consent (cinepakenc.c)

2017-05-16 Thread Tomas Härdin
On Tue, 2017-05-16 at 15:42 -0300, James Almer wrote: > On 5/16/2017 3:13 PM, Tomas Härdin wrote: > > > > Hi > > > > I got a question from Diego via IRC about what license cinepakenc.c > > actually has, since the first commit message just has a message > > by"Rl" > > saying that I said it was OK

Re: [FFmpeg-devel] [PATCH] libavformat aviobuf: Fixed dst pointer initialization in fill_buffer

2017-05-16 Thread Michael Niedermayer
On Tue, May 16, 2017 at 04:17:45PM +, Rob Meyers wrote: > Here's a simple server we used to reproduce the problem: > > #include > #include > #include > #include > #include > > #define INGOING "/tmp/audio.fifo" > > ssize_t write_fifo(int fd, char* msg, int size) { > ssize_t write_rc; >

Re: [FFmpeg-devel] Decoding issue with AAC SBR from flv

2017-05-16 Thread James Almer
On 5/16/2017 11:11 AM, Thomas Jammet wrote: > Hi, > > I think to have found a regression into ffmpeg 3.x versions. > > When I try to play the file in attachment it gives inaudible output and a > lot of errors from ffplay (see example below). I have tested it with ffmpeg > 3.3.git and stable relea

Re: [FFmpeg-devel] [PATCH] libavformat: data loss in message accumulation in fill_buffer()

2017-05-16 Thread Michael Niedermayer
On Tue, May 16, 2017 at 09:05:49AM -0700, Rob Meyers wrote: > We noticed when reading data from a named pipe the first 10 bytes > would get dropped. I traced this to the affected code in > fill_buffer(). The assignment of "dst" was always set to the beginning > of the buffer, and if it hadn't been

Re: [FFmpeg-devel] [PATCH] fix GetBitContext index when SPS bitstream_restriction_flag=1 but can't be parsed, because index is out of bit-stream size. Need return index value continue H.264 parsing

2017-05-16 Thread Michael Niedermayer
On Tue, May 16, 2017 at 03:13:36PM +0300, Ivan Shmakov wrote: > --- > libavcodec/h264_ps.c | 4 > 1 file changed, 4 insertions(+) > > diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c > index 7858361..09e2290 100644 > --- a/libavcodec/h264_ps.c > +++ b/libavcodec/h264_ps.c > @@ -136,6

Re: [FFmpeg-devel] [PATCH] avutil/hwcontext_dxva2: Don't improperly free IDirect3DSurface9 objects

2017-05-16 Thread Mark Thompson
On 16/05/17 13:04, Aaron Levinson wrote: > Add dxva2_pool_release_dummy() and use it in call to > av_buffer_create() in dxva2_pool_alloc(). > > Prior to this change, av_buffer_create() was called with NULL for the > third argument, which indicates that av_buffer_default_free() should > be used to

[FFmpeg-devel] [PATCH] avfilter: add audio crossfeed filter

2017-05-16 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 16 + libavfilter/Makefile | 1 + libavfilter/af_crossfeed.c | 161 + libavfilter/allfilters.c | 1 + 4 files changed, 179 insertions(+) create mode 100644 libavfilter/af_cro

Re: [FFmpeg-devel] [PATCH] libavformat/hls: Observe Set-Cookie headers

2017-05-16 Thread Michael Niedermayer
On Sat, May 06, 2017 at 02:28:10PM -0400, Micah Galizia wrote: > On 2017-05-05 09:28 PM, wm4 wrote: > >On Fri, 5 May 2017 20:55:05 -0400 > >Micah Galizia wrote: > > > >>Signed-off-by: Micah Galizia > >>--- > >> libavformat/hls.c | 12 ++-- > >> 1 file changed, 10 insertions(+), 2 deleti

[FFmpeg-devel] [PATCH] avcodec/takdec: Fix runtime error: signed integer overflow: 8192 * 524308 cannot be represented in type 'int'

2017-05-16 Thread Michael Niedermayer
Fixes: 1630/clusterfuzz-testcase-minimized-6326111917047808 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/takdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libav

[FFmpeg-devel] [PATCH] configure: If vfwcap_indev disabled, don't do vfw32 checks; if enabled, require vfw32

2017-05-16 Thread Aaron Levinson
Signed-off-by: Aaron Levinson --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 7980d92..49f91ac 100755 --- a/configure +++ b/configure @@ -6013,10 +6013,10 @@ check_header sys/videoio.h check_code cc sys/videoio.h "struct v4l2_frms

Re: [FFmpeg-devel] [PATCH] configure: If vfwcap_indev disabled, don't do vfw32 checks; if enabled, require vfw32

2017-05-16 Thread Steven Liu
2017-05-17 6:38 GMT+08:00 Aaron Levinson : > Signed-off-by: Aaron Levinson > --- > configure | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/configure b/configure > index 7980d92..49f91ac 100755 > --- a/configure > +++ b/configure > @@ -6013,10 +6013,10 @@ check_head

Re: [FFmpeg-devel] [PATCH] avfilter: align data frame when needed

2017-05-16 Thread Muhammad Faiz
On Sun, May 7, 2017 at 8:18 PM, Nicolas George wrote: > L'octidi 18 floréal, an CCXXV, James Almer a écrit : >> Will that complete fix be ready and be backport-enabled (AKA, no new >> API) in the coming days? > > It can. Right now, I am waiting for a comment from Hendrik, who seemed > to have obje

Re: [FFmpeg-devel] [PATCH] configure: If vfwcap_indev disabled, don't do vfw32 checks; if enabled, require vfw32

2017-05-16 Thread Aaron Levinson
On 5/16/2017 4:23 PM, Steven Liu wrote: 2017-05-17 6:38 GMT+08:00 Aaron Levinson : Signed-off-by: Aaron Levinson --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 7980d92..49f91ac 100755 --- a/configure +++ b/configure @@ -6013,1

Re: [FFmpeg-devel] [PATCH] avfilter: align data frame when needed

2017-05-16 Thread Ronald S. Bultje
Hi, On Tue, May 16, 2017 at 7:23 PM, Muhammad Faiz wrote: > On Sun, May 7, 2017 at 8:18 PM, Nicolas George wrote: > > L'octidi 18 floréal, an CCXXV, James Almer a écrit : > >> Will that complete fix be ready and be backport-enabled (AKA, no new > >> API) in the coming days? > > > > It can. Righ

Re: [FFmpeg-devel] [PATCH] avfilter: align data frame when needed

2017-05-16 Thread Muhammad Faiz
On Wed, May 17, 2017 at 6:33 AM, Ronald S. Bultje wrote: > Hi, > > On Tue, May 16, 2017 at 7:23 PM, Muhammad Faiz wrote: > >> On Sun, May 7, 2017 at 8:18 PM, Nicolas George wrote: >> > L'octidi 18 floréal, an CCXXV, James Almer a écrit : >> >> Will that complete fix be ready and be backport-enab

Re: [FFmpeg-devel] Decoding issue with AAC SBR from flv

2017-05-16 Thread Carl Eugen Hoyos
2017-05-16 16:11 GMT+02:00 Thomas Jammet : > Can someone help me for this problem? I opened ticket #6398, thank you for the sample! Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] libavformat/hls: Observe Set-Cookie headers

2017-05-16 Thread Micah Galizia
Signed-off-by: Micah Galizia --- libavformat/hls.c | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/libavformat/hls.c b/libavformat/hls.c index bac53a4350..42022690f1 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -630,8 +630,16 @@ static int open_url(A

Re: [FFmpeg-devel] [PATCH] libavformat/hls: Observe Set-Cookie headers

2017-05-16 Thread Micah Galizia
On 2017-05-16 04:57 PM, Michael Niedermayer wrote: On Sat, May 06, 2017 at 02:28:10PM -0400, Micah Galizia wrote: On 2017-05-05 09:28 PM, wm4 wrote: Did you mean & instead of ^? No, the original code was structured to set *u to null (and thus did not copy cookies) iff AVFMT_FLAG_CUSTOM_IO was

Re: [FFmpeg-devel] [PATCH] avfilter: align data frame when needed

2017-05-16 Thread Ronald S. Bultje
Hi, On Tue, May 16, 2017 at 7:43 PM, Muhammad Faiz wrote: > On Wed, May 17, 2017 at 6:33 AM, Ronald S. Bultje > wrote: > > Hi, > > > > On Tue, May 16, 2017 at 7:23 PM, Muhammad Faiz wrote: > > > >> On Sun, May 7, 2017 at 8:18 PM, Nicolas George wrote: > >> > L'octidi 18 floréal, an CCXXV, Jam

Re: [FFmpeg-devel] [PATCH] avfilter: align data frame when needed

2017-05-16 Thread James Almer
On 5/16/2017 11:28 PM, Ronald S. Bultje wrote: > Hi, > > On Tue, May 16, 2017 at 7:43 PM, Muhammad Faiz wrote: > >> On Wed, May 17, 2017 at 6:33 AM, Ronald S. Bultje >> wrote: >>> Hi, >>> >>> On Tue, May 16, 2017 at 7:23 PM, Muhammad Faiz wrote: >>> On Sun, May 7, 2017 at 8:18 PM, Nicolas

Re: [FFmpeg-devel] License consent (cinepakenc.c)

2017-05-16 Thread James Almer
On 5/16/2017 5:12 PM, Tomas Härdin wrote: > On Tue, 2017-05-16 at 15:42 -0300, James Almer wrote: >> On 5/16/2017 3:13 PM, Tomas Härdin wrote: >>> >>> Hi >>> >>> I got a question from Diego via IRC about what license cinepakenc.c >>> actually has, since the first commit message just has a message >

Re: [FFmpeg-devel] [PATCH] avfilter: align data frame when needed

2017-05-16 Thread Muhammad Faiz
On Wed, May 17, 2017 at 10:47 AM, James Almer wrote: > On 5/16/2017 11:28 PM, Ronald S. Bultje wrote: >> Hi, >> >> On Tue, May 16, 2017 at 7:43 PM, Muhammad Faiz wrote: >> >>> On Wed, May 17, 2017 at 6:33 AM, Ronald S. Bultje >>> wrote: Hi, On Tue, May 16, 2017 at 7:23 PM, Muhamma

[FFmpeg-devel] [PATCH] avfilter/graphparser: allow specifying filter@id as filter instance

2017-05-16 Thread Muhammad Faiz
See http://lists.ffmpeg.org/pipermail/ffmpeg-user/2017-April/035975.html Parsed_filter_X is not intuitive as filter instance name and also undocumented. Signed-off-by: Muhammad Faiz --- doc/filters.texi | 13 ++--- libavfilter/graphparser.c | 26 +- 2 fil