Re: [FFmpeg-devel] [PATCH 2/2] avcodec/wavpack: Check shift

2017-03-19 Thread Clément Bœsch
On Mon, Mar 20, 2017 at 02:21:50AM +0100, Michael Niedermayer wrote: > Fixes: runtime error: shift exponent 255 is too large for 32-bit type > 'unsigned int' > Fixes: 894/clusterfuzz-testcase-4841537823309824 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/mast

Re: [FFmpeg-devel] [PATCH 7/9] pthread_frame: do not run hwaccel decoding asynchronously unless it's safe

2017-03-19 Thread wm4
On Sun, 19 Mar 2017 02:30:11 +0100 Michael Niedermayer wrote: > On Sat, Mar 18, 2017 at 09:56:04AM +0100, wm4 wrote: > > From: Anton Khirnov > > > > Certain hardware decoding APIs are not guaranteed to be thread-safe, so > > having the user access decoded hardware surfaces while the decoder is

Re: [FFmpeg-devel] [PATCH 2/3] ffplay: convert to new decode API

2017-03-19 Thread wm4
On Sun, 19 Mar 2017 11:51:28 -0700 Philip Langdale wrote: > On Fri, 17 Mar 2017 19:42:07 -0700 > Philip Langdale wrote: > > > On Sat, 18 Mar 2017 01:51:39 +0100 (CET) > > Marton Balint wrote: > > > > > On Sat, 18 Mar 2017, wal...@free.fr wrote: > > > > > > > The logs: http://pastebin.

[FFmpeg-devel] [PATCH 2/2] avcodec/wavpack: Check shift

2017-03-19 Thread Michael Niedermayer
Fixes: runtime error: shift exponent 255 is too large for 32-bit type 'unsigned int' Fixes: 894/clusterfuzz-testcase-4841537823309824 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/wavpack.c |

[FFmpeg-devel] [PATCH 1/2] avcodec/mpegaudiodec_template: Fix 2 runtime error: signed integer overflow

2017-03-19 Thread Michael Niedermayer
Fixes: 873/clusterfuzz-testcase-5714546230558720 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/mpegaudiodec_template.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/mjpegdec: Check quant_matrixes values for being non zero

2017-03-19 Thread Michael Niedermayer
On Fri, Mar 17, 2017 at 03:25:17AM +0100, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > libavcodec/mjpegdec.c | 4 > 1 file changed, 4 insertions(+) patchset applied [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Republics decli

Re: [FFmpeg-devel] [PATCH] avcodec/vp56: Check avctx->error_concealment before enabling EC

2017-03-19 Thread Ronald S. Bultje
Hi, On Sun, Mar 19, 2017 at 8:01 PM, Michael Niedermayer wrote: > On Thu, Mar 16, 2017 at 11:49:04AM +0100, Michael Niedermayer wrote: > > Fixes timeout with 847/clusterfuzz-testcase-5291877358108672 > > Fixes timeout with 850/clusterfuzz-testcase-5721296509861888 > > > > Found-by: continuous fu

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Alexander Strasser
On 2017-03-19 11:01 +0100, wm4 wrote: > On Sun, 19 Mar 2017 10:57:21 +0100 > Clément Bœsch wrote: > > > > > If you want to have DASH enabled by default, make sure to have a native > > XML parser, or discuss the policy about detecting all the external > > libraries within the configure. > > > >

Re: [FFmpeg-devel] [PATCH] avcodec/vp56: Check avctx->error_concealment before enabling EC

2017-03-19 Thread Michael Niedermayer
On Thu, Mar 16, 2017 at 11:49:04AM +0100, Michael Niedermayer wrote: > Fixes timeout with 847/clusterfuzz-testcase-5291877358108672 > Fixes timeout with 850/clusterfuzz-testcase-5721296509861888 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/targets/ffmp

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/h264_direct: Fix runtime error: signed integer overflow: -9 - 2147483647 cannot be represented in type 'int'

2017-03-19 Thread Michael Niedermayer
On Thu, Mar 16, 2017 at 06:54:36PM +, Kieran Kunhya wrote: > On Thu, 16 Mar 2017 at 15:37 Michael Niedermayer > wrote: > > > On Thu, Mar 16, 2017 at 11:41:12AM +, Kieran Kunhya wrote: > > > > > > > > + > > > > +if (pocdiff0 != (int)pocdiff0) > > > > +avpriv_request_sam

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/tiff: Check stripsize strippos for overflow

2017-03-19 Thread Michael Niedermayer
On Thu, Mar 16, 2017 at 03:02:49AM +0100, Michael Niedermayer wrote: > Fixes: 861/clusterfuzz-testcase-5688284384591872 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg > Signed-off-by: Michael Niedermayer > --- > libavcodec/tiff.c | 10 ++

Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: add MP2 to the probing list

2017-03-19 Thread Michael Niedermayer
On Sat, Mar 18, 2017 at 04:38:04AM -0500, Rodger Combs wrote: > --- > libavformat/utils.c | 1 + > 1 file changed, 1 insertion(+) should be ok thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I am the wisest man alive, for I know one thing, and that is that

Re: [FFmpeg-devel] [PATCH 3/5] swscale: use a function for isBayer

2017-03-19 Thread Michael Niedermayer
On Sun, Mar 19, 2017 at 10:37:30PM +0100, Clément Bœsch wrote: > On Sun, Mar 19, 2017 at 10:13:37PM +0100, Michael Niedermayer wrote: > [...] > > > > > +static av_always_inline int isBayer(enum AVPixelFormat pix_fmt) > > > > > +{ > > > > > +const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(p

Re: [FFmpeg-devel] [PATCH 1/3] lavf: identify MP1 and MP2 as distinct containers from MP3

2017-03-19 Thread Michael Niedermayer
On Sat, Mar 18, 2017 at 04:38:03AM -0500, Rodger Combs wrote: > This allows us to report the correct codec ID here > --- > libavformat/allformats.c | 3 ++- > libavformat/mp3dec.c | 66 > +++- > libavformat/rawenc.c | 13 ++ > libavform

[FFmpeg-devel] [PATCH 1/2 v3] decklink: add format_code of display mode to list_format output

2017-03-19 Thread Matthias Hunstock
Signed-off-by: Matthias Hunstock --- libavdevice/decklink_common.cpp | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/libavdevice/decklink_common.cpp b/libavdevice/decklink_common.cpp index 8b499c5..26c0776 100644 --- a/libavdevice/decklink_common.cpp +++ b/libavdev

[FFmpeg-devel] [PATCH 2/2 v3] decklink: new option 'format_code' to set video format by fourCC

2017-03-19 Thread Matthias Hunstock
Signed-off-by: Matthias Hunstock --- doc/indevs.texi | 14 ++ libavdevice/decklink_common.cpp | 17 + libavdevice/decklink_common_c.h | 1 + libavdevice/decklink_dec.cpp| 5 +++-- libavdevice/decklink_dec_c.c| 1 + 5 files changed, 28 inserti

Re: [FFmpeg-devel] [PATCH 2/3 v2] decklink: new option 'format_code' to set video format by fourCC

2017-03-19 Thread Matthias Hunstock
Am 18.03.2017 um 02:14 schrieb Marton Balint: > > On Fri, 17 Mar 2017, Matthias Hunstock wrote: > >> Signed-off-by: Matthias Hunstock >> --- >> libavdevice/decklink_common.cpp | 17 + >> libavdevice/decklink_common_c.h | 1 + >> libavdevice/decklink_dec.cpp| 5 +++-- >> libavd

Re: [FFmpeg-devel] [PATCH 3/5] swscale: use a function for isBayer

2017-03-19 Thread Clément Bœsch
On Sun, Mar 19, 2017 at 10:13:37PM +0100, Michael Niedermayer wrote: [...] > > > > +static av_always_inline int isBayer(enum AVPixelFormat pix_fmt) > > > > +{ > > > > +const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); > > > > +av_assert0(desc); > > > > +return !strncmp(desc

Re: [FFmpeg-devel] [PATCH] avformat/ftp: Solve a crash bug when network occur a exception

2017-03-19 Thread Nicolas George
Le nonidi 29 ventôse, an CCXXV, tiejun.peng a écrit : > This fixes a proble where ffmpeg would cause crash to do a seek when the > network disconnect. > The log like this: > 01-01 10:53:03.441 6580 6580 F DEBUG : backtrace: > 01-01 10:53:03.441 6580 6580 F DEBUG : #00 pc 0002942e > /

[FFmpeg-devel] [PATCH] avformat/ftp: Solve a crash bug when network occur a exception

2017-03-19 Thread tiejun.peng
This fixes a proble where ffmpeg would cause crash to do a seek when the network disconnect. The log like this: 01-01 10:53:03.441 6580 6580 F DEBUG : backtrace: 01-01 10:53:03.441 6580 6580 F DEBUG : #00 pc 0002942e /system/lib/libavformat.so (ffurl_write+9) Signed-off-by: tiejun.p

Re: [FFmpeg-devel] [PATCH 3/5] swscale: use a function for isBayer

2017-03-19 Thread Michael Niedermayer
On Sun, Mar 19, 2017 at 04:50:24PM +0100, Clément Bœsch wrote: > On Sun, Mar 19, 2017 at 04:35:12PM +0100, Michael Niedermayer wrote: > > On Sun, Mar 19, 2017 at 03:33:41PM +0100, Clément Bœsch wrote: > > > --- > > > libswscale/swscale_internal.h | 20 ++-- > > > 1 file changed, 6

Re: [FFmpeg-devel] [PATCH 2/3] ffplay: convert to new decode API

2017-03-19 Thread Philip Langdale
On Fri, 17 Mar 2017 19:42:07 -0700 Philip Langdale wrote: > On Sat, 18 Mar 2017 01:51:39 +0100 (CET) > Marton Balint wrote: > > > On Sat, 18 Mar 2017, wal...@free.fr wrote: > > > > > The logs: http://pastebin.com/1duYR0Ui > > > > > > > Log with video only (run ffplay with -an -sn) migh

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

2017-03-19 Thread Clément Bœsch
On Tue, Feb 21, 2017 at 05:15:59PM +, Saverio Blasi wrote: [...] > enabled libspeex && require_pkg_config speex speex/speex.h > speex_decoder_init -lspeex > enabled libtesseract && require_pkg_config tesseract tesseract/capi.h > TessBaseAPICreate > enabled libtheora &

Re: [FFmpeg-devel] [PATCH 3/5] swscale: use a function for isBayer

2017-03-19 Thread Clément Bœsch
On Sun, Mar 19, 2017 at 04:35:12PM +0100, Michael Niedermayer wrote: > On Sun, Mar 19, 2017 at 03:33:41PM +0100, Clément Bœsch wrote: > > --- > > libswscale/swscale_internal.h | 20 ++-- > > 1 file changed, 6 insertions(+), 14 deletions(-) > > > > diff --git a/libswscale/swscale_i

Re: [FFmpeg-devel] [PATCH 1/5] fate: add fate-sws-pixdesc-query

2017-03-19 Thread Michael Niedermayer
On Sun, Mar 19, 2017 at 03:33:39PM +0100, Clément Bœsch wrote: > Test the pixel format querying within libswscale. > --- > libswscale/Makefile | 1 + > libswscale/tests/.gitignore | 1 + > libswscale/tests/pixdesc_query.c | 90 + > tests/Makefile | 1

Re: [FFmpeg-devel] [PATCH 5/5] swscale: use a (more correct) function for isPacked

2017-03-19 Thread Michael Niedermayer
On Sun, Mar 19, 2017 at 03:33:43PM +0100, Clément Bœsch wrote: > --- > libswscale/swscale_internal.h| 21 +++-- > tests/ref/fate/sws-pixdesc-query | 19 +++ > 2 files changed, 22 insertions(+), 18 deletions(-) should be ok thx [...] -- Michael GnuPG fing

Re: [FFmpeg-devel] [PATCH 4/5] swscale: use a function for isAnyRGB

2017-03-19 Thread Michael Niedermayer
On Sun, Mar 19, 2017 at 03:33:42PM +0100, Clément Bœsch wrote: > --- > libswscale/swscale_internal.h | 14 +++--- > 1 file changed, 7 insertions(+), 7 deletions(-) should be ok thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB When you are offended a

Re: [FFmpeg-devel] [PATCH 3/5] swscale: use a function for isBayer

2017-03-19 Thread Michael Niedermayer
On Sun, Mar 19, 2017 at 03:33:41PM +0100, Clément Bœsch wrote: > --- > libswscale/swscale_internal.h | 20 ++-- > 1 file changed, 6 insertions(+), 14 deletions(-) > > diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h > index 6bcb4640ee..b3bb1695fb 100644 >

[FFmpeg-devel] [PATCH 5/5] swscale: use a (more correct) function for isPacked

2017-03-19 Thread Clément Bœsch
--- libswscale/swscale_internal.h| 21 +++-- tests/ref/fate/sws-pixdesc-query | 19 +++ 2 files changed, 22 insertions(+), 18 deletions(-) diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 9a28d180f1..2c2329ae56 100644 --- a/libsw

[FFmpeg-devel] [PATCH 4/5] swscale: use a function for isAnyRGB

2017-03-19 Thread Clément Bœsch
--- libswscale/swscale_internal.h | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index b3bb1695fb..9a28d180f1 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -767,13

[FFmpeg-devel] [PATCH 3/5] swscale: use a function for isBayer

2017-03-19 Thread Clément Bœsch
--- libswscale/swscale_internal.h | 20 ++-- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 6bcb4640ee..b3bb1695fb 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -

[FFmpeg-devel] [PATCH 1/5] fate: add fate-sws-pixdesc-query

2017-03-19 Thread Clément Bœsch
Test the pixel format querying within libswscale. --- libswscale/Makefile | 1 + libswscale/tests/.gitignore | 1 + libswscale/tests/pixdesc_query.c | 90 + tests/Makefile | 1 + tests/fate/libswscale.mak| 7 + tests/ref/fate/sws-pixdesc-que

[FFmpeg-devel] [PATCH 2/5] swscale: use a function for isGray

2017-03-19 Thread Clément Bœsch
--- libswscale/swscale_internal.h | 27 ++- 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index af82396b1c..6bcb4640ee 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_interna

[FFmpeg-devel] Patchset v2 for pixel format querying within swscale

2017-03-19 Thread Clément Bœsch
This is in response to the next Libav commit I'll (partially) noop soon (aa37d2bf45). ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 1/2] fate: add fate-sws-pixdesc-query

2017-03-19 Thread Clément Bœsch
On Sun, Mar 19, 2017 at 03:00:55PM +0100, Clément Bœsch wrote: > Test the pixel format querying within libswscale. > --- > libswscale/Makefile | 1 + > libswscale/tests/.gitignore | 1 + > libswscale/tests/pixdesc_query.c | 78 > tests/Makefile |

[FFmpeg-devel] [PATCH 2/2] swscale: use a function for isGray

2017-03-19 Thread Clément Bœsch
--- libswscale/swscale_internal.h | 27 ++- 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index af82396b1c..6bcb4640ee 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_interna

[FFmpeg-devel] [PATCH 1/2] fate: add fate-sws-pixdesc-query

2017-03-19 Thread Clément Bœsch
Test the pixel format querying within libswscale. --- libswscale/Makefile | 1 + libswscale/tests/.gitignore | 1 + libswscale/tests/pixdesc_query.c | 78 tests/Makefile | 1 + tests/fate/libswscale.mak| 7 + tests/ref/fate/sws-pixdesc-

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Nicolas George
Le nonidi 29 ventôse, an CCXXV, Rodger Combs a écrit : > fragmentTimescale. fragment_timescale or fragment_time_scale; camelCase is not part of FFmpeg's coding standards. > Use time_t or int64_t. Certainly not time_t. The rest looks fine at first glance. Regards, -- Nicolas George signat

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Rodger Combs
A few initial comments inline: > On Mar 19, 2017, at 04:05, Steven Liu wrote: > > ffmpeg need a dash demuxer for demux the dash formats > base on > https://github.com/samsamsam-iptvplayer/exteplayer3/blob/master/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch > > Signed-off-by: Steven Liu

Re: [FFmpeg-devel] fate/exr : add test for uint32

2017-03-19 Thread Michael Niedermayer
On Sat, Mar 18, 2017 at 01:50:06PM +0100, Martin Vignali wrote: > Hello, > > In attach patch to add fate test for uint 32 exr > > Sample can be found here : > https://we.tl/iB6xWicb4X > > and need to be put inside fate-suite/exr/ uploaded [...] -- Michael GnuPG fingerprint: 9FF2128B147EF

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread wm4
On Sun, 19 Mar 2017 10:57:21 +0100 Clément Bœsch wrote: > > If you want to have DASH enabled by default, make sure to have a native > XML parser, or discuss the policy about detecting all the external > libraries within the configure. > That's ridiculous. So NIH is encouraged because of a crap

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Nicolas George
Le nonidi 29 ventôse, an CCXXV, Clement Boesch a écrit : > If you want to have DASH enabled by default, make sure to have a native > XML parser For the record, I have started something a few months back. Not very advanced, because other more pressing matters arose, but reasonably clean for a start

Re: [FFmpeg-devel] [PATCH] avformat/concatdec: add concat_seekable operation

2017-03-19 Thread Nicolas George
L'octidi 28 ventôse, an CCXXV, Steven Liu a écrit : > Can the concat support network stream? As you can see, the concat demuxer does not contain any code specific to the protocol, or even to the demuxer. It should therefore work with any demuxer, and in turn protocol, provided it is reliab

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Clément Bœsch
On Sun, Mar 19, 2017 at 05:51:15PM +0800, Steven Liu wrote: > 2017-03-19 17:48 GMT+08:00 Clément Bœsch : > > > On Sun, Mar 19, 2017 at 05:05:55PM +0800, Steven Liu wrote: > > > ffmpeg need a dash demuxer for demux the dash formats > > > base on https://github.com/samsamsam-iptvplayer/exteplayer3/b

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Steven Liu
2017-03-19 17:55 GMT+08:00 Paul B Mahol : > On 3/19/17, Steven Liu wrote: > > 2017-03-19 17:48 GMT+08:00 Clement Boesch : > > > >> On Sun, Mar 19, 2017 at 05:05:55PM +0800, Steven Liu wrote: > >> > ffmpeg need a dash demuxer for demux the dash formats > >> > base on https://github.com/samsamsam-i

Re: [FFmpeg-devel] [PATCH 1/2] avcodec, avformat: deprecate anything related to side data merging

2017-03-19 Thread Nicolas George
L'octidi 28 ventôse, an CCXXV, Michael Niedermayer a écrit : > People cant always choose what they use, and IMHO a frame work which > doesnt allow passing side data cleanly may have simply different goals > or be build around a differnt architecture than what you have in mind > that doesnt make it

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Paul B Mahol
On 3/19/17, Steven Liu wrote: > 2017-03-19 17:48 GMT+08:00 Clement Boesch : > >> On Sun, Mar 19, 2017 at 05:05:55PM +0800, Steven Liu wrote: >> > ffmpeg need a dash demuxer for demux the dash formats >> > base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/ >> master/tmp/ffmpeg/patche

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Steven Liu
2017-03-19 17:48 GMT+08:00 Clément Bœsch : > On Sun, Mar 19, 2017 at 05:05:55PM +0800, Steven Liu wrote: > > ffmpeg need a dash demuxer for demux the dash formats > > base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/ > master/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch > >

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Clément Bœsch
On Sun, Mar 19, 2017 at 05:05:55PM +0800, Steven Liu wrote: > ffmpeg need a dash demuxer for demux the dash formats > base on > https://github.com/samsamsam-iptvplayer/exteplayer3/blob/master/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch > > Signed-off-by: Steven Liu > --- > configure

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Steven Liu
2017-03-19 17:34 GMT+08:00 Carl Eugen Hoyos : > 2017-03-19 10:05 GMT+01:00 Steven Liu : > > > + --disable-xml2 disable XML parsing using the C library > libxml2 [autodetect] > > I believe several developers have argued in the past that they are against > adding libxml2 as an external de

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Carl Eugen Hoyos
2017-03-19 10:05 GMT+01:00 Steven Liu : > + --disable-xml2 disable XML parsing using the C library libxml2 > [autodetect] I believe several developers have argued in the past that they are against adding libxml2 as an external dependency to FFmpeg. Instead of resending this (or a simi

[FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-19 Thread Steven Liu
ffmpeg need a dash demuxer for demux the dash formats base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/master/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch Signed-off-by: Steven Liu --- configure|4 + libavformat/Makefile |1 + libavformat/allf

[FFmpeg-devel] [PATCH] hwcontext: fix comments for av_hwdevice_ctx_alloc()

2017-03-19 Thread Jun Zhao
From 74fa715cdc1e17ab3a59a9e3efa6ef142dd35d1a Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Sun, 19 Mar 2017 15:44:46 +0800 Subject: [PATCH] hwcontext: fix comments for av_hwdevice_ctx_alloc() fix the wrong comments for av_hwdevice_ctx_alloc() Signed-off-by: Jun Zhao --- libavutil/hwcontext.h