Re: [FFmpeg-devel] [PATCH]libavformat/http: fix http error eof

2017-05-22 Thread Steven Liu
p is actually disconnect abnormally, it should return to > ERROR, rather than return to EOF. > Can you reproduce it? and provide me try to reproduce it. I cannot sure if apply this patch will influence other people require function, for example: retry or reconnect again. > 2017-05-22 23:05 GMT

Re: [FFmpeg-devel] [PATCH]libavformat/http: fix http error eof

2017-05-23 Thread Steven Liu
2017-05-23 14:01 GMT+08:00 raymond zheng : > You can close http link on your http server, and check ffurl_read result. > > Besides, this problem was caused by commit: > 2a05c8f813de6f2278827734bf8102291e7484aa > ping Ronald S. Bultje > > 2017-05-23 13:37 GMT+08:00 Steven L

Re: [FFmpeg-devel] [PATCH] lavc/mpegvideo_enc: allow to force low_delay by increasing strict_std_compliance

2017-05-23 Thread Steven Liu
2017-05-23 18:28 GMT+08:00 Stefano Sabatini : > Forcing low_delay can be useful, even if not officially supported. > --- > libavcodec/mpegvideo_enc.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c > index db241

Re: [FFmpeg-devel] Snapping ffmpeg

2017-06-01 Thread Steven Liu
2017-06-01 21:51 GMT+08:00 Alan Pope : > Hi Reto, > > On 1 June 2017 at 12:37, Reto Kromer wrote: > > Alan Pope wrote: > > > >>Snaps are universal Linux packages. > > > > On number of Linux distributions you can use Linuxbrew: > > > > brew install ffmpeg --with-the-parameters-you-wish > > > > I

[FFmpeg-devel] [PATCH] cmdutils: add log time info into report log file

2017-06-02 Thread Steven Liu
add time info into every line of log report the time info can be used to find out error message occur time. Signed-off-by: Steven Liu --- cmdutils.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cmdutils.c b/cmdutils.c index 3d428f3eea..b760a0565d 100644 --- a

[FFmpeg-devel] [PATCH] cmdutils: add log time info into report log file

2017-06-02 Thread Steven Liu
add time info into every line of log report the time info can be used to find out error message occur time. Signed-off-by: Steven Liu --- cmdutils.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cmdutils.c b/cmdutils.c index 3d428f3eea..b760a0565d 100644 --- a

Re: [FFmpeg-devel] [PATCH] cmdutils: add log time info into report log file

2017-06-02 Thread Steven Liu
2017-06-03 0:30 GMT+08:00 Nicolas George : > > Le quintidi 15 prairial, an CCXXV, Steven Liu a écrit : > > add time info into every line of log report > > the time info can be used to find out error message occur time. > > > > Signed-off-by: Steven Liu > > ---

Re: [FFmpeg-devel] [PATCH 04/11] avformat/librtmp: check return value of setsockopt

2017-06-11 Thread Steven Liu
2017-06-11 22:05 GMT+08:00 Timo Rothenpieler : > Fixes CID 1396837 > --- > libavformat/librtmp.c | 5 - > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/libavformat/librtmp.c b/libavformat/librtmp.c > index 146df660ac..f3cfa9a8e2 100644 > --- a/libavformat/librtmp.c > +++ b/li

[FFmpeg-devel] [PATCH] avformat/hlsenc: donnot show duplicate segment warning at byterange mode

2017-06-15 Thread Steven Liu
When the hlsenc at BYTERANGE mode, it should not show the warning message: "Duplicated segment filename detected:" Reported-by: Marco Signed-off-by: Steven Liu --- libavformat/hlsenc.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libavformat/

Re: [FFmpeg-devel] videotoolboxenc.c crash on iOS8

2017-06-17 Thread Steven Liu
2017-06-17 11:17 GMT+08:00 姜 文杰 : > when use videotoolboxencoder in ffmpeg, some codes will lead to crash. > > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > http://ffmpeg.org/mailman/listinfo/ffmpeg-devel > From ee465de23b27cbeaaa25fd

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: donnot show duplicate segment warning at byterange mode

2017-06-18 Thread Steven Liu
2017-06-16 10:57 GMT+08:00 Steven Liu : > When the hlsenc at BYTERANGE mode, it should not show the warning message: > "Duplicated segment filename detected:" > > Reported-by: Marco > Signed-off-by: Steven Liu > --- > libavformat/hlsenc.c |5 +++-- > 1

Re: [FFmpeg-devel] 回复: [PATCH] x86/aacpsdsp: addff_ps_hybrid_analysis_ileave_sse

2017-06-18 Thread Steven Liu
2017-06-19 10:14 GMT+08:00 liyoubdu : > On 6/12/2017 9:35 PM, James Almer wrote: >> About 2x faster than the c version. >> >> Signed-off-by: James Almer >> --- >> Depends on "[PATCH] x86/aacpsdsp: add >> ff_ps_hybrid_synthesis_deint_{sse,sse4}" >> >> libavcodec/x86/aacpsdsp.asm| 106 >>

Re: [FFmpeg-devel] [PATCH 2/2] avformat/hlsenc: reindent hlsenc code

2017-11-02 Thread Steven Liu
2017-11-02 7:52 GMT+08:00 Steven Liu : > Signed-off-by: Steven Liu > --- > libavformat/hlsenc.c | 52 > ++-- > 1 file changed, 26 insertions(+), 26 deletions(-) > > diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc

Re: [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: check hls segment mode for ignore the init filename

2017-11-02 Thread Steven Liu
2017-11-02 7:52 GMT+08:00 Steven Liu : > ignore the fmp4_init_filename when in normal hls segment mode > > Signed-off-by: Steven Liu > --- > libavformat/hlsenc.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c > i

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: creation of hls variant streams with master playlist in a single hlsenc instance

2017-11-03 Thread Steven Liu
在 2017年11月3日,下午5:44,Dixit, Vishwanath 写道: >> On 10/24/17, 12:58 PM, "Liu Steven" wrote: >> tests/fate/filter-audio.mak >> reference it > I went through this file. The only HLS related test seems to be for HLS > decoder (fate-filter-hls). I think, FATE does not have any test for HLS >

Re: [FFmpeg-devel] FFplay: progress bar feature proposal

2017-11-05 Thread Steven Liu
2017-11-06 4:36 GMT+08:00 Michael Niedermayer : > On Thu, Apr 13, 2017 at 10:53:49AM -0500, Raymond Pierce wrote: >> 13.04.2017, 09:40, "Steven Liu" : >> > 2017-04-13 20:48 GMT+08:00 Raymond Pierce : >> > >> >> Hi. Currently FFplay has no visible p

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: creation of hls variant streams with master playlist in a single hlsenc instance

2017-11-07 Thread Steven Liu
2017-11-07 21:32 GMT+08:00 Dixit, Vishwanath : > > >>On 11/3/17, 8:31 PM, "刘歧" wrote: >>look at your mail title please! >>and read the test case which i write for the fate-filter-hls-append > > Thanks for your clarification on sample HLS encoder test. I have referred to > the test fate-filte

[FFmpeg-devel] [PATCH] avformat/dashdec: fix memleak of rep_dest->parent null

2017-11-08 Thread Steven Liu
fix ticket id: #6820 use the current DASHContext for the rep_dest Signed-off-by: Steven Liu --- libavformat/dashdec.c | 23 +++ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index f63f1fffbd..0f5f91c6b5 100644

Re: [FFmpeg-devel] [PATCH]lavf/dashdec: Fix several memleaks

2017-11-09 Thread Steven Liu
2017-11-10 2:55 GMT+08:00 Michael Niedermayer : > On Wed, Nov 08, 2017 at 10:46:27PM +0100, Carl Eugen Hoyos wrote: >> Hi! >> >> Attached patch fixes several memleaks found testing ticket #6820 (I >> cannot reproduce the crash). >> >> Please comment, Carl Eugen > >> dashdec.c | 22 +-

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: fix memleak of rep_dest->parent null

2017-11-09 Thread Steven Liu
2017-11-09 16:28 GMT+08:00 Carl Eugen Hoyos : > Hi! > >> Am 09.11.2017 um 00:52 schrieb Steven Liu : >> >> fix ticket id: #6820 > > I find the commit message misleading. > >> use the current DASHContext for the rep_dest > > This may be better imo.

Re: [FFmpeg-devel] [PATCH] avformat/img2enc: add frame_pts option for make output filename

2017-11-09 Thread Steven Liu
2017-10-31 23:47 GMT+08:00 Steven Liu : > when use frame_pts option, the output image name can be set with PTS > of current frame. > > Signed-off-by: Steven Liu > --- > doc/muxers.texi | 9 + > libavformat/img2enc.c | 7 +++ > 2 files changed, 16 insert

[FFmpeg-devel] [PATCH] avformat/hlsenc: write fmp4 init header after first AV frame

2017-11-12 Thread Steven Liu
fix ticket id: 6825 Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 28 +--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 5ea9d216a4..3a4c8d65be 100644 --- a/libavformat/hlsenc.c +++ b/libavformat

Re: [FFmpeg-devel] [PATCH 2/9] avformat/hlsenc: allocate space for terminating null

2017-11-12 Thread Steven Liu
2017-11-09 2:17 GMT+08:00 Timo Rothenpieler : > Fixes CID #1420394 > --- > libavformat/hlsenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c > index 5ea9d216a4..b571772f60 100644 > --- a/libavformat/hlsenc.c > +++ b/libavforma

Re: [FFmpeg-devel] [PATCH] avformat/img2enc: add frame_pts option for make output filename

2017-11-12 Thread Steven Liu
2017-11-12 9:44 GMT+08:00 Carl Eugen Hoyos : > 2017-10-31 8:14 GMT+01:00 Steven Liu : >> when use frame_pts option, the output image name can be set >> with PTS of current frame. > > If this fixes ticket #1452, please mention it in the commit message. >

[FFmpeg-devel] [PATCH 02/11] avformat/dump: use FFABS to instead of llabs

2017-11-14 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/dump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/dump.c b/libavformat/dump.c index 77043e3fdb..d414a6548f 100644 --- a/libavformat/dump.c +++ b/libavformat/dump.c @@ -586,8 +586,8 @@ void av_dump_format

[FFmpeg-devel] [PATCH 04/11] avformat/mov: use FFABS to instead of fabs

2017-11-14 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index fd170baa57..e1a3e21e8d 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -4332,7 +4332,7 @@ static int mov_read_tkhd(MOVContext

[FFmpeg-devel] [PATCH 01/11] avformat/hlsenc: use FFABS to instead of abs

2017-11-14 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index e0cef8b879..5af907b6f0 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1113,7 +1113,7 @@ static int hls_window

[FFmpeg-devel] [PATCH 03/11] avformat/fitsdec: use FFABS to instead of abs

2017-11-14 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/fitsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/fitsdec.c b/libavformat/fitsdec.c index 4b288b3903..b190118345 100644 --- a/libavformat/fitsdec.c +++ b/libavformat/fitsdec.c @@ -124,7 +124,7 @@ static int64_t

[FFmpeg-devel] [PATCH 06/11] avformat/mux: use FFABS to instead of fabs

2017-11-14 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/mux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mux.c b/libavformat/mux.c index b1244c67f3..ec18c6d7b0 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -316,7 +316,7 @@ FF_ENABLE_DEPRECATION_WARNINGS

[FFmpeg-devel] [PATCH 05/11] avformat/mp3dec: use FFABS to instead of abs

2017-11-14 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/mp3dec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c index a5c4f2ea12..a76fe32e59 100644 --- a/libavformat/mp3dec.c +++ b/libavformat/mp3dec.c @@ -508,9 +508,9 @@ static int64_t

[FFmpeg-devel] [PATCH 11/11] avformat/wavdecuse FFABS to instead of fabs

2017-11-14 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/wavdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c index b016185a1b..9f3e01e5b8 100644 --- a/libavformat/wavdec.c +++ b/libavformat/wavdec.c @@ -531,7 +531,7 @@ break_loop

[FFmpeg-devel] [PATCH 07/11] avformat/mxf: use FFABS to instead of abs

2017-11-14 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/mxf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mxf.c b/libavformat/mxf.c index bfc3218b81..2e23b5d739 100644 --- a/libavformat/mxf.c +++ b/libavformat/mxf.c @@ -155,7 +155,7 @@ const MXFSamplesPerFrame

[FFmpeg-devel] [PATCH 09/11] avformat/swfenc: use FFABS to instead of abs

2017-11-14 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/swfenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/swfenc.c b/libavformat/swfenc.c index cada45ef9a..f53db0fb2b 100644 --- a/libavformat/swfenc.c +++ b/libavformat/swfenc.c @@ -69,7 +69,7 @@ static inline void

[FFmpeg-devel] [PATCH 10/11] avformat/utils: use FFABS to instead of fabs

2017-11-14 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/utils.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 87887063be..c2c9afbbfd 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3359,7 +3359,7 @@ void

[FFmpeg-devel] [PATCH 08/11] avformat/replaygain: use FFABS to instead of abs

2017-11-14 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/replaygain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/replaygain.c b/libavformat/replaygain.c index 707d3cd4f1..0d1fb7d11d 100644 --- a/libavformat/replaygain.c +++ b/libavformat/replaygain.c @@ -61,7 +61,7

Re: [FFmpeg-devel] [Patch] Download dash content with byte range info

2017-11-14 Thread Steven Liu
2017-11-15 10:26 GMT+08:00 Colin NG : > Please ignore the previous "patch" email. > > > > > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > http://ffmpeg.org/mailman/listinfo/ffmpeg-devel > diff --git a/libavformat/dashdec.c b/libavformat/das

Re: [FFmpeg-devel] [PATCH v3 1/2] avformat/tcp: add option to enable TCP_NODELAY

2017-11-15 Thread Steven Liu
2017-11-15 13:01 GMT+08:00 Aman Gupta : > From: Aman Gupta > > This can reduce latency and increase throughput, particularly on high > latency networks. > > Signed-off-by: Aman Gupta > Reviewed-by: Jeyapal, Karthick > --- > doc/protocols.texi| 3 +++ > libavformat/network.h | 1 + > libavfo

Re: [FFmpeg-devel] [Patch] Download dash content with byte range info

2017-11-15 Thread Steven Liu
s/get_Fragment/get_fragment_range/g Maybe better > 在 2017年11月16日,上午8:59,Colin NG 写道: > > Made change suggested by Carl and add some minor fixes. > > > > From: ffmpeg-devel on behalf of Carl Eugen > Hoyos > Sent: November 15, 2017 5:37 PM > To: FFmpeg de

[FFmpeg-devel] [PATCH] avformat/hlsenc: checking return value of avio_open_dyn_buf

2017-11-15 Thread Steven Liu
fix CID: 1421196 Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index e0cef8b879..54342cf288 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1678,7 +1678,11

[FFmpeg-devel] [PATCH] avformat/hlsenc: remove unused avio_open_dyn_buf call

2017-11-17 Thread Steven Liu
fix CID: 1421196 Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index e0cef8b879..d39b65fddd 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1678,7 +1678,6 @@ static int

Re: [FFmpeg-devel] [PATCH 07/11] avformat/mxf: use FFABS to instead of abs

2017-11-19 Thread Steven Liu
2017-11-16 22:59 GMT+08:00 Michael Niedermayer : > On Wed, Nov 15, 2017 at 03:44:39PM +0800, Steven Liu wrote: >> Signed-off-by: Steven Liu >> --- >> libavformat/mxf.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) > > LGTM > Pushed Thx >

Re: [FFmpeg-devel] [PATCH 05/11] avformat/mp3dec: use FFABS to instead of abs

2017-11-19 Thread Steven Liu
2017-11-16 22:58 GMT+08:00 Michael Niedermayer : > On Wed, Nov 15, 2017 at 03:44:17PM +0800, Steven Liu wrote: >> Signed-off-by: Steven Liu >> --- >> libavformat/mp3dec.c | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) > > LGTM > Pushed

Re: [FFmpeg-devel] [PATCH 09/11] avformat/swfenc: use FFABS to instead of abs

2017-11-19 Thread Steven Liu
2017-11-16 23:00 GMT+08:00 Michael Niedermayer : > On Wed, Nov 15, 2017 at 03:45:03PM +0800, Steven Liu wrote: >> Signed-off-by: Steven Liu >> --- >> libavformat/swfenc.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) > > LGTM > Pushed Thx >

[FFmpeg-devel] [PATCH] avformat/avio: check input URLContext value NULL

2017-11-19 Thread Steven Liu
fix ticket id: #6846 Signed-off-by: Steven Liu --- libavformat/avio.c | 8 1 file changed, 8 insertions(+) diff --git a/libavformat/avio.c b/libavformat/avio.c index 4dc468350c..e719326660 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -625,6 +625,8 @@ int64_t ffurl_size

[FFmpeg-devel] [PATCH] avformat/avio: check input URLContext value NULL

2017-11-20 Thread Steven Liu
fix ticket id: #6846 Signed-off-by: Steven Liu --- libavformat/avio.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/libavformat/avio.c b/libavformat/avio.c index 4dc468350c..63e82872f7 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -625,13 +625,15

Re: [FFmpeg-devel] [PATCH 1/1] avformat/dashenc: Added configuration to override HTTP User-Agent

2017-11-20 Thread Steven Liu
> 在 2017年11月20日,下午9:03,Carl Eugen Hoyos 写道: > > 2017-11-20 9:17 GMT+01:00 刘歧 : >> > 在 2017年11月20日,15:59,Jeyapal, Karthick 写道: > On 11/20/17, 1:01 PM, "刘歧" wrote: > 在 2017年11月8日,17:22,Karthick J 写道: > +{ "http_user_agent", "override User-Agent field in HTTP header",

Re: [FFmpeg-devel] [PATCH 1/1] avformat/dashenc: Added configuration to override HTTP User-Agent

2017-11-20 Thread Steven Liu
> 在 2017年11月20日,下午10:03,Carl Eugen Hoyos 写道: > > 2017-11-20 15:00 GMT+01:00 Steven Liu : >> >> >>> 在 2017年11月20日,下午9:03,Carl Eugen Hoyos 写道: >>> >>> 2017-11-20 9:17 GMT+01:00 刘歧 : >>>> >>>>>>>> 在 2017年11

Re: [FFmpeg-devel] [PATCH 1/1] avformat/dashenc: Added configuration to override HTTP User-Agent

2017-11-20 Thread Steven Liu
2017-11-20 23:12 GMT+08:00 Hendrik Leppkes : > On Mon, Nov 20, 2017 at 3:11 PM, Steven Liu wrote: >> >> >>> 在 2017年11月20日,下午10:03,Carl Eugen Hoyos 写道: >>> >>> 2017-11-20 15:00 GMT+01:00 Steven Liu : >>>> >>>> >>>>>

Re: [FFmpeg-devel] [PATCH v2 3/3] libavformat/hlsenc: Persistent HTTP connections supported as an option

2017-11-21 Thread Steven Liu
2017-11-21 12:54 GMT+08:00 Karthick J : > --- > doc/muxers.texi | 3 +++ > libavformat/hlsenc.c | 48 +--- > 2 files changed, 44 insertions(+), 7 deletions(-) > > diff --git a/doc/muxers.texi b/doc/muxers.texi > index 0bb8ad2..c1d753b 100644 > ---

Re: [FFmpeg-devel] [Patch] Fix for ticket 6658 (Dash demuxer segfault)

2017-11-22 Thread Steven Liu
2017-11-23 9:16 GMT+08:00 Colin NG : > Clean up coding style. > > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > http://ffmpeg.org/mailman/listinfo/ffmpeg-devel > diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index 3798649..7e7a

Re: [FFmpeg-devel] [PATCH] Download dash content with byte range info

2017-11-22 Thread Steven Liu
2017-11-23 6:58 GMT+08:00 Colin NG : > --- > libavformat/dashdec.c | 38 -- > 1 file changed, 32 insertions(+), 6 deletions(-) > > diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c > index 0e3afd2..3798649 100644 > --- a/libavformat/dashdec.c > +++ b/li

Re: [FFmpeg-devel] [PATCH 1/3] avformat/hlsenc:addition of #EXT-X-MEDIA tag and AUDIO attribute

2017-11-23 Thread Steven Liu
2017-11-24 1:15 GMT+08:00 Moritz Barsnick : > On Thu, Nov 23, 2017 at 11:47:30 +0100, Carl Eugen Hoyos wrote: >> (Isn't there a patch to fix the variable name?) > Still pending: > https://patchwork.ffmpeg.org/patch/6257/ patchset pushed Thanks > ___ >

Re: [FFmpeg-devel] [PATCH v3] avformat/hlsenc: Added option to add EXT-X-INDEPENDENT-SEGMENTS tag

2017-11-23 Thread Steven Liu
2017-11-23 19:33 GMT+08:00 Karthick J : > --- > doc/muxers.texi | 4 > libavformat/hlsenc.c | 17 + > 2 files changed, 21 insertions(+) > > diff --git a/doc/muxers.texi b/doc/muxers.texi > index 0bb8ad2..9d9ca31 100644 > --- a/doc/muxers.texi > +++ b/doc/muxers.texi > @@

Re: [FFmpeg-devel] [PATCH] hls demuxer: add option to defer parsing of variants

2017-11-25 Thread Steven Liu
2017-11-25 17:31 GMT+08:00 Rainer Hochecker : > fate runs now without error, sorry for that > > --- > doc/demuxers.texi | 5 + > libavformat/hls.c | 302 > -- > 2 files changed, 207 insertions(+), 100 deletions(-) > > diff --git a/doc/demuxers

Re: [FFmpeg-devel] [PATCH] hls demuxer: add option to defer parsing of variants

2017-11-26 Thread Steven Liu
2017-11-26 18:46 GMT+08:00 Rainer Hochecker : > fixed mem leak poined out by Steven Hi Rainer, I'm not sure that is memleak, but looks like memleak when reading the code, i see the code always in hls.c before this patch, but no people report it memleak. If that is memleak, maybe use goto m

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Fixed initial setting for end_pts

2017-11-26 Thread Steven Liu
2017-11-27 13:03 GMT+08:00 Karthick J : > This patch fixes Bug #6868 > Sometimes end_pts is getting initialized to audio stream's > first pts, while the duration is calculated based on video stream's pts. > In this patch the end_pts is initialized with the correct stream's first pts. > --- > libav

Re: [FFmpeg-devel] [PATCH] Fix for ticket 6658 (Dash demuxer segfault)

2017-11-27 Thread Steven Liu
2017-11-28 8:46 GMT+08:00 Colin NG : > --- > libavformat/dashdec.c | 95 > --- > 1 file changed, 82 insertions(+), 13 deletions(-) > > diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c > index 3798649..5d5970e 100644 > --- a/libavformat/das

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Fixed initial setting for end_pts

2017-11-28 Thread Steven Liu
2017-11-27 13:16 GMT+08:00 Steven Liu : > 2017-11-27 13:03 GMT+08:00 Karthick J : >> This patch fixes Bug #6868 >> Sometimes end_pts is getting initialized to audio stream's >> first pts, while the duration is calculated based on video stream's pts. >> In this

Re: [FFmpeg-devel] [PATCH v6 2/2] avformat/dashenc: Option to generate hls playlist as well

2017-11-29 Thread Steven Liu
2017-11-29 22:05 GMT+08:00 Steven Liu : > 2017-11-29 20:48 GMT+08:00 Karthick J : >> This is to take full advantage of Common Media Application Format. >> Now server can generate one content and serve both HLS and DASH players. >> --- >> doc/muxers.texi | 3

Re: [FFmpeg-devel] [PATCH v6 2/2] avformat/dashenc: Option to generate hls playlist as well

2017-11-29 Thread Steven Liu
2017-11-29 20:48 GMT+08:00 Karthick J : > This is to take full advantage of Common Media Application Format. > Now server can generate one content and serve both HLS and DASH players. > --- > doc/muxers.texi | 3 ++ > libavformat/Makefile | 2 +- > libavformat/dashenc.c | 103 > +++

Re: [FFmpeg-devel] [PATCH v6 1/2] avformat/hlsenc: Modularized playlist creation to allow reuse

2017-11-29 Thread Steven Liu
2017-11-29 20:40 GMT+08:00 Jeyapal, Karthick : > On 11/29/17, 5:16 PM, "刘歧" wrote: >> >>Where can i find the v6 2/2 ? > Patch 2/2 didn’t change since v4. > So didn’t repost it. You have to use v4 2/2. > > I am sorry. I was not sure what is the normal practice here. I didn’t repost > it, so that t

Re: [FFmpeg-devel] [PATCH v2 1/2] avformat/hlsenc: Refactored 'get_int_from_double' function to allow reuse

2017-11-29 Thread Steven Liu
2017-11-29 23:44 GMT+08:00 Karthick J : > From: Karthick Jeyapal > > --- > libavformat/hlsenc.c | 7 +-- > libavformat/hlsplaylist.h | 5 + > 2 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c > index f63b08d..cdfbf45 100644

Re: [FFmpeg-devel] [PATCH v5 3/3] avformat/hlsenc:addition of CODECS attribute in the master playlist

2017-11-30 Thread Steven Liu
2017-11-30 19:32 GMT+08:00 : > From: Vishwanath Dixit > > --- > libavformat/Makefile | 2 +- > libavformat/dashenc.c | 2 +- > libavformat/hlsenc.c | 65 > +-- > libavformat/hlsplaylist.c | 5 +++- > libavformat/hlsplaylist.h | 3 ++-

Re: [FFmpeg-devel] [PATCH] hls: fix baseurl missing last char

2017-11-30 Thread Steven Liu
2017-12-01 0:31 GMT+08:00 Robert Nagy : > --- > libavformat/hlsenc.c | 9 + > 1 file changed, 1 insertion(+), 8 deletions(-) > > diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c > index cdfbf45823..394c7130ac 100644 > --- a/libavformat/hlsenc.c > +++ b/libavformat/hlsenc.c > @@ -19

Re: [FFmpeg-devel] [PATCH][RFC] avutil/reverse: make ff_reverse shared

2017-11-30 Thread Steven Liu
2017-12-01 9:19 GMT+08:00 James Almer : > Signed-off-by: James Almer > --- > Pros: > Removes duplicate arrays and ugly c file including c files > > Cons: > Makes the array in libavutil effectively part of the ABI. > Might not be worth doing for 256 bytes > > > Something like this was probably sent

Re: [FFmpeg-devel] [PATCH] hls: fix baseurl missing last char

2017-12-01 Thread Steven Liu
2017-12-01 18:06 GMT+08:00 Robert Nagy : > --- > libavformat/hlsenc.c | 5 + > 1 file changed, 1 insertion(+), 4 deletions(-) > > diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c > index cdfbf45823..dc8bf48791 100644 > --- a/libavformat/hlsenc.c > +++ b/libavformat/hlsenc.c > @@ -1921,

Re: [FFmpeg-devel] [PATCH] hls: fix baseurl missing last char

2017-12-01 Thread Steven Liu
2017-12-02 8:59 GMT+08:00 Michael Niedermayer : > On Fri, Dec 01, 2017 at 11:06:07AM +0100, Robert Nagy wrote: >> --- >> libavformat/hlsenc.c | 5 + >> 1 file changed, 1 insertion(+), 4 deletions(-) >> >> diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c >> index cdfbf45823..dc8bf48791

[FFmpeg-devel] [PATCH 1/3] avformat/hlsplaylist: add int type of API ff_hls_write_file_entry

2017-12-01 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/dashenc.c | 6 +- libavformat/hlsenc.c | 12 libavformat/hlsplaylist.c | 6 -- libavformat/hlsplaylist.h | 2 +- 4 files changed, 18 insertions(+), 8 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat

[FFmpeg-devel] [PATCH 2/3] avformat/hlsplaylist: add return value check of strftime

2017-12-01 Thread Steven Liu
fix CID: 1424884 Signed-off-by: Steven Liu --- libavformat/hlsplaylist.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libavformat/hlsplaylist.c b/libavformat/hlsplaylist.c index 96a8afbe1d..3349eb7ee3 100644 --- a/libavformat/hlsplaylist.c +++ b/libavformat

[FFmpeg-devel] [PATCH 3/3] avformat/dashenc: add avpriv_io_move return value check

2017-12-01 Thread Steven Liu
fix cid: 1424883 Signed-off-by: Steven Liu --- libavformat/dashenc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 22ef3103dc..bd0a98da4d 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -384,7 +384,9

Re: [FFmpeg-devel] [PATCH 1/2] v3 - SCTE extraction from mpegts

2017-12-03 Thread Steven Liu
2017-12-02 20:15 GMT+08:00 Sandeep Reddy : > Hi, > > I applied the SCTE patch on hlsenc. But I am unable to find a way to > intialize scte_interface of HLSContext . > > Please let me know ,how to intialize it hlsenc initialize in hls_mux_init API, it is called by hls_write_header, you can insert i

Re: [FFmpeg-devel] [PATCH] hls: fix baseurl missing last char

2017-12-03 Thread Steven Liu
2017-12-02 10:03 GMT+08:00 Steven Liu : > 2017-12-02 8:59 GMT+08:00 Michael Niedermayer : >> On Fri, Dec 01, 2017 at 11:06:07AM +0100, Robert Nagy wrote: >>> --- >>> libavformat/hlsenc.c | 5 + >>> 1 file changed, 1 insertion(+), 4 deletions(-) >>

Re: [FFmpeg-devel] [PATCH 3/3] avformat/dashenc: add avpriv_io_move return value check

2017-12-04 Thread Steven Liu
2017-12-02 22:42 GMT+08:00 Moritz Barsnick : > On Sat, Dec 02, 2017 at 10:44:02 +0800, Steven Liu wrote: >> +av_log(os->ctx, AV_LOG_WARNING, "rename file from %s to %s >> faild\n", temp_filename_hls, filename_hls); >

[FFmpeg-devel] [PATCH] avformat/hlsenc: move init operations from write_header to init

2017-12-04 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 681 ++- 1 file changed, 345 insertions(+), 336 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index aeeed5bcd2..852663d28f 100644 --- a/libavformat/hlsenc.c +++ b

Re: [FFmpeg-devel] [PATCH] libavformat/dashdec: Fix for ticket 6658 (Dash demuxer segfault)

2017-12-04 Thread Steven Liu
2017-12-04 12:28 GMT+08:00 Colin NG : > --- > libavformat/dashdec.c | 112 > -- > 1 file changed, 99 insertions(+), 13 deletions(-) > > diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c > index 3798649..d04bec0 100644 > --- a/libavformat/da

[FFmpeg-devel] [PATCH] avformat/hlsenc: fix complie error when disable-network

2017-12-04 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index aeeed5bcd2..7dc8f4237b 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -45,7 +45,9 @@ #include

Re: [FFmpeg-devel] [FFmpeg-cvslog] libavformat/hlsenc: Persistent HTTP connections supported as an option

2017-12-04 Thread Steven Liu
2017-12-04 21:57 GMT+08:00 Tobias Rapp : > On 29.11.2017 07:33, Jeyapal, Karthick wrote: >> >> ffmpeg | branch: master | Jeyapal, Karthick | Wed >> Nov 29 14:33:07 2017 +0800| [815e34b5b4ed8fbb6c9d7b7b042ae49848bc170c] | >> committer: Steven Liu >> >&

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: fix complie error when disable-network

2017-12-04 Thread Steven Liu
2017-12-04 23:49 GMT+08:00 Tobias Rapp : > On 04.12.2017 16:36, Steven Liu wrote: >> >> Signed-off-by: Steven Liu >> --- >> libavformat/hlsenc.c | 6 +- >> 1 file changed, 5 insertions(+), 1 deletion(-) >> >> diff --git a/libavformat/hlsenc

Re: [FFmpeg-devel] [PATCH] libavformat/dashdec: Fix for ticket 6658 (Dash demuxer segfault) - Add function 'resolve_content_path' to propagate the baseURL from upper level nodes. * if no baseURL is av

2017-12-05 Thread Steven Liu
2017-12-06 9:42 GMT+08:00 Colin NG : > --- > libavformat/dashdec.c | 111 > -- > 1 file changed, 98 insertions(+), 13 deletions(-) > > diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c > index 3798649..6e35e91 100644 > --- a/libavformat/das

Re: [FFmpeg-devel] [PATCH] avformat/concat: Fix wrong wrapped timestamp

2017-12-14 Thread Steven Liu
2017-12-14 16:00 GMT+08:00 : > From: wu zhiqiang > > When using concat protocal, start from middle of file will generate non-zero > wrap reference. If seek to time less than the wrap reference, wrap control > will be triggered and generate wrong wrapped timestamp. > Copy wrap related stream pro

Re: [FFmpeg-devel] [RFC] [Vote] Drop Windows XP support

2017-12-14 Thread Steven Liu
> 在 2017年12月14日,下午10:12,Hendrik Leppkes 写道: > >> On Thu, Dec 14, 2017 at 2:26 PM, wm4 wrote: >> I propose that FFmpeg sets the minimum supported Windows version to >> Windows Vista (or maybe Windows 7). This would remove Windows XP >> support. >> >> The reason is that Windows XP does not prov

Re: [FFmpeg-devel] [PATCH v6 3/3] avformat/hlsenc:addition of CODECS attribute in the master playlist

2017-12-14 Thread Steven Liu
> 在 2017年12月14日,下午6:55,vdi...@akamai.com 写道: > > From: Vishwanath Dixit > > --- > libavformat/Makefile | 2 +- > libavformat/dashenc.c | 2 +- > libavformat/hlsenc.c | 65 +-- > libavformat/hlsplaylist.c | 5 +++- > libavformat/hlsplayl

Re: [FFmpeg-devel] [PATCH v6 1/3] avformat/hlsenc:addition of #EXT-X-MEDIA tag and AUDIO attribute

2017-12-14 Thread Steven Liu
> 在 2017年12月14日,下午6:52,vdi...@akamai.com 写道: > > From: Vishwanath Dixit > > --- > doc/muxers.texi | 12 + > libavformat/dashenc.c | 3 ++- > libavformat/hlsenc.c | 62 --- > libavformat/hlsplaylist.c | 4 ++- > libavformat/h

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Minor fix for persistent http connection of init fmp4

2017-12-15 Thread Steven Liu
2017-12-15 17:27 GMT+08:00 Karthick J : > From: Karthick Jeyapal > > --- > libavformat/hlsenc.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c > index fdf614b..0e2f412 100644 > --- a/libavformat/hlsenc.c > +++ b/libavformat/hlsenc.c > @@ -1787,

Re: [FFmpeg-devel] [PATCH 3/3] avformat/hlsenc: Extend persistent http connections to playlists

2017-12-15 Thread Steven Liu
>> Patchset LGTM, i will push it after 24 hours if there are no objections. > > Thanks for the reply. > But that patchset doesn’t apply with the latest master anymore. > I have rebased this patchset and sent a new version v2. > Patchset pushed, BTW, Your patchset need more time to make full rev

Re: [FFmpeg-devel] [PATCH v6 3/3] avformat/hlsenc:addition of CODECS attribute in the master playlist

2017-12-15 Thread Steven Liu
2017-12-15 16:21 GMT+08:00 Jeyapal, Karthick : > > >>On 12/15/17, 4:45 AM, "Liu Steven" wrote: >> >> >>> 在 2017年12月15日,上午6:28,Liu Steven 写道: >>> >>>> >>>> 在 2017年12月15日,上午12:29,Jeyapal, Karthick 写道: >>>>

[FFmpeg-devel] [PATCH 2/4] avformat/hlsenc: reindent after previous commits

2017-12-18 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index f51fec1030..0eebcb4462 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1806,14

[FFmpeg-devel] [PATCH 4/4] avformat/hlsenc: add http options to m3u8 hlsenc

2017-12-18 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 0cb75ff198..636b7db183 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1723,6 +1723,7 @@ static int

[FFmpeg-devel] [PATCH 3/4] avformat/hlsenc: use hlsenc_io_* APIs

2017-12-18 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 23 --- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 0eebcb4462..0cb75ff198 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -440,7 +440,7

[FFmpeg-devel] [PATCH 1/4] avformat/hlsenc: fix first fragment mp4 do not split bug

2017-12-18 Thread Steven Liu
fix ticket id: 6888 Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 72 1 file changed, 62 insertions(+), 10 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index e3442c368f..f51fec1030 100644 --- a/libavformat

[FFmpeg-devel] [PATCH] avformat/hls: update specification link of comments

2017-12-18 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/hls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hls.c b/libavformat/hls.c index ab6ff187a6..786b19ab5d 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -23,7 +23,7 @@ /** * @file * Apple HTTP Live

Re: [FFmpeg-devel] [PATCH 1/2] avformat/dashenc: Fix the EXT-X-TARGETDURATION as per the hls specification

2017-12-21 Thread Steven Liu
2017-12-21 23:41 GMT+08:00 Karthick J : > From: Karthick Jeyapal > > The HLS specification states the following about EXT-X-TARGETDURATION > > 4.3.3.1. EXT-X-TARGETDURATION > >The EXT-X-TARGETDURATION tag specifies the maximum Media Segment >duration. The EXTINF duration of each Media Se

Re: [FFmpeg-devel] [PATCH 1/2] avformat/dashenc: Fix the EXT-X-TARGETDURATION as per the hls specification

2017-12-21 Thread Steven Liu
2017-12-22 0:37 GMT+08:00 Jeyapal, Karthick : > > >>On 12/21/17, 9:47 PM, "Steven Liu" wrote: >> >>I cannot sure if this patch can fix the problem playlist target >>duration not same. >> >>MacBook:xxx StevenLiu$ ./ffmpeg -hide_banner -i &g

Re: [FFmpeg-devel] [PATCH] avformat/dashenc: Fix the EXT-X-TARGETDURATION as per the hls specification

2017-12-21 Thread Steven Liu
2017-12-21 18:09 GMT+08:00 Karthick J : > From: Karthick Jeyapal > > The HLS specification states the following about EXT-X-TARGETDURATION > > 4.3.3.1. EXT-X-TARGETDURATION > >The EXT-X-TARGETDURATION tag specifies the maximum Media Segment >duration. The EXTINF duration of each Media Se

Re: [FFmpeg-devel] [PATCH] avformat/dashenc: Fix the EXT-X-TARGETDURATION as per the hls specification

2017-12-21 Thread Steven Liu
2017-12-22 7:37 GMT+08:00 Steven Liu : > 2017-12-21 18:09 GMT+08:00 Karthick J : >> From: Karthick Jeyapal >> >> The HLS specification states the following about EXT-X-TARGETDURATION >> >> 4.3.3.1. EXT-X-TARGETDURATION >> >>The EXT-X-TARGETDUR

[FFmpeg-devel] [PATCH] avformat/hlsenc: improve compute target_duration way

2017-12-22 Thread Steven Liu
just use lrint(lrint(duration * 10.0) / 10.0) fix ticket: 6915 Suggested-by: beloko Signed-off-by: Steven Liu --- libavformat/dashenc.c | 2 +- libavformat/hlsenc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index

Re: [FFmpeg-devel] [PATCH v8 1/3] avformat/hlsenc:addition of #EXT-X-MEDIA tag and AUDIO attribute

2017-12-22 Thread Steven Liu
2017-12-22 19:30 GMT+08:00 刘歧 : > > >> On 22 Dec 2017, at 19:05, Dixit, Vishwanath wrote: >> >> On 12/19/17 11:53 AM, 刘歧 wrote: >>> On 19 Dec 2017, at 14:09, vdi...@akamai.com wrote: From: Vishwanath Dixit --- doc/muxers.texi | 12 + libavformat/dashenc.c

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: improve compute target_duration way

2017-12-23 Thread Steven Liu
> 在 2017年12月23日,下午6:38,Jeyapal, Karthick 写道: > > >> On 12/23/17 4:59 AM, Steven Liu wrote: >> just use lrint(lrint(duration * 10.0) / 10.0) >> fix ticket: 6915 >> >> Suggested-by: beloko >> Signed-off-by: Steven Liu >> --- >> libavfor

[FFmpeg-devel] [PATCH] avformat/hls: fix compiling error

2017-12-24 Thread Steven Liu
fix --disable-network compipling error Signed-off-by: Steven Liu --- libavformat/hls.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/hls.c b/libavformat/hls.c index f00e22dfef..51d83b7557 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -611,14

Re: [FFmpeg-devel] [PATCH] avformat/avio: check input URLContext value NULL

2017-12-26 Thread Steven Liu
2017-11-20 15:58 GMT+08:00 Steven Liu : > fix ticket id: #6846 > > Signed-off-by: Steven Liu > --- > libavformat/avio.c | 10 ++ > 1 file changed, 6 insertions(+), 4 deletions(-) > > diff --git a/libavformat/avio.c b/libavformat/avio.c > index 4dc468350c

<    4   5   6   7   8   9   10   11   12   13   >