Re: [FFmpeg-devel] [PATCH v2 1/2] avformat/hlsenc, utils: Moved is_http_proto from hlsenc to utils for re-use

2017-12-26 Thread Steven Liu
2017-12-27 6:22 GMT+08:00 Aman Gupta : > On Sat, Dec 16, 2017 at 11:03 AM Karthick J wrote: > >> From: Karthick Jeyapal >> >> --- >> libavformat/hlsenc.c | 12 +++- >> libavformat/internal.h | 8 >> libavformat/utils.c| 5 + >> 3 files changed, 16 insertions(+), 9 de

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

2017-12-26 Thread Steven Liu
2017-12-26 19:11 GMT+08:00 Karthick J : > From: Karthick Jeyapal > > This is required for AV playout from master.m3u8. > Otherwise master.m3u8 lists only video-only and/or audio-only streams. > --- > libavformat/dashenc.c | 24 ++-- > 1 file changed, 22 insertions(+), 2 deleti

[FFmpeg-devel] [PATCH v2] avformat/dash: move reused API to common file and header file

2017-08-31 Thread Steven Liu
move from dashenc, move DASHTmplId and dash_fill_tmpl_params to dash.c, they will be used by dash demuxer and dash muxer. v2 fixed: 1. rename common file from dashcomm.* to dash.* Suggested-by: Hendrik Leppkes Suggested-by: Timo Rothenpieler Signed-off-by: Steven Liu --- libavformat/Makefile

[FFmpeg-devel] [PATCH v3] avformat/dash: move reused API to common file and header file

2017-08-31 Thread Steven Liu
Suggested-by: James Almer Suggested-by: Timo Rothenpieler Signed-off-by: Steven Liu --- libavformat/Makefile | 2 +- libavformat/dash.c| 136 ++ libavformat/dash.h| 39 +++ libavformat/dashenc.c | 130

Re: [FFmpeg-devel] [PATCH v3] avformat/dash: move reused API to common file and header file

2017-08-31 Thread Steven Liu
2017-09-01 0:21 GMT+08:00 wm4 : > On Thu, 31 Aug 2017 22:56:53 +0800 > Steven Liu wrote: > >> move from dashenc, move DASHTmplId and dash_fill_tmpl_params to >> dash.c, they will be used by dash demuxer and dash muxer. >> >> v2 fixed: >> 1. ren

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

2017-08-31 Thread Steven Liu
and get_segment_filename 2. process use dashcomm APIs v22 fixed: 1. modify the include "dashcomm.h" to include "dash.h" 2. use internal API from dash_fill_tmpl_params to ff_dash_fill_tmpl_params Signed-off-by: Steven Liu Signed-off-by: samsamsam --- configure

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

2017-09-01 Thread Steven Liu
and get_segment_filename 2. process use dashcomm APIs v22 fixed: 1. modify the include "dashcomm.h" to include "dash.h" 2. use internal API from dash_fill_tmpl_params to ff_dash_fill_tmpl_params Signed-off-by: Steven Liu Signed-off-by: samsamsam --- configure

[FFmpeg-devel] [PATCH v23 2/2] avformat/dashdec: free resource allocated by xml

2017-09-01 Thread Steven Liu
modify from av_free to xmlFree Signed-off-by: Steven Liu --- libavformat/dashdec.c | 44 ++-- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index 9a3a199d4e..f63f1fffbd 100644 --- a

Re: [FFmpeg-devel] [PATCH 1/1] avformat/hlsenc: Fix target duration computation when 'round_durations' is enabled

2017-09-01 Thread Steven Liu
2017-09-01 18:15 GMT+08:00 : > From: Karthick J > > Signed-off-by: Karthick J > --- > libavformat/hlsenc.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c > index 4a908863..dd36fde 100644 > --- a/libavformat/hlsenc.c > +++

Re: [FFmpeg-devel] [PATCH 1/1] avformat/hlsenc: Fix target duration computation when 'round_durations' is enabled

2017-09-01 Thread Steven Liu
2017-09-01 18:32 GMT+08:00 Steven Liu : > 2017-09-01 18:15 GMT+08:00 : >> From: Karthick J >> >> Signed-off-by: Karthick J >> --- >> libavformat/hlsenc.c | 4 +++- >> 1 file changed, 3 insertions(+), 1 deletion(-) >> >> diff --git a/libavforma

Re: [FFmpeg-devel] [PATCH 1/1] avformat/hlsenc: Fix target duration computation when 'round_durations' is enabled

2017-09-01 Thread Steven Liu
2017-09-01 18:40 GMT+08:00 Steven Liu : > 2017-09-01 18:32 GMT+08:00 Steven Liu : >> 2017-09-01 18:15 GMT+08:00 : >>> From: Karthick J >>> >>> Signed-off-by: Karthick J >>> --- >>> libavformat/hlsenc.c | 4 +++- >>> 1 fi

Re: [FFmpeg-devel] [PATCH v3] avformat/dash: move reused API to common file and header file

2017-09-01 Thread Steven Liu
2017-09-01 17:19 GMT+08:00 Jeyapal, Karthick : >>Pushed. >> >>Thanks > > FYI. FATE is failing after this push. It is due to the missing copyright > header in dash.c copyright has add now and pushed :) > > Thanks and Regards, > Karthick > ___ > ffmpeg-dev

Re: [FFmpeg-devel] [PATCH 1/1] avformat/hlsenc: Fix target duration computation when 'round_durations' is enabled

2017-09-01 Thread Steven Liu
2017-09-01 18:54 GMT+08:00 Jeyapal, Karthick : >>2017-09-01 18:32 GMT+08:00 Steven Liu >>mailto:lingjiujia...@gmail.com>>: >>Sorry, my mistake. >> >>the target_duration must large or equal to the en->duration, can not >>small than en->duration f

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

2017-09-01 Thread Steven Liu
2017-09-01 19:20 GMT+08:00 Jeyapal, Karthick : > Please find the patch attached. > > Regards, > Karthick > > > > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > http://ffmpeg.org/mailman/listinfo/ffmpeg-devel > FFmpeg has support it yet, you

[FFmpeg-devel] [PATCH] avformat/hls: return eof when avio_read data at the file end

2017-09-03 Thread Steven Liu
fix ticket: #6490 Signed-off-by: Steven Liu --- libavformat/hls.c | 4 1 file changed, 4 insertions(+) diff --git a/libavformat/hls.c b/libavformat/hls.c index 0995345bbf..7572fe6e06 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -898,6 +898,10 @@ static int read_from_url

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

2017-09-04 Thread Steven Liu
2017-09-04 14:47 GMT+08:00 Jeyapal, Karthick : >>On 9/1/17, 5:36 PM, "Steven Liu" wrote: >>> Please find the patch attached. >>> >>> Regards, >>> Karthick >>> >>> >>> >>> _

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

2017-09-04 Thread Steven Liu
2017-09-04 16:01 GMT+08:00 Jeyapal, Karthick : >>On 9/4/17, 12:41 PM, "Steven Liu" >>mailto:lingjiujia...@gmail.com>> wrote: >> >>Hi Karthick, >>set user_agent better than user-agent, because the user-agent is >>duplicate with user_agent, an

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

2017-09-04 Thread Steven Liu
2017-09-04 16:16 GMT+08:00 Jeyapal, Karthick : >>On 9/4/17, 1:36 PM, "Steven Liu" >>mailto:lingjiujia...@gmail.com>> wrote: >>+if (c->user_agent) >>+av_dict_set(options, "user-agent", c->user_agent, 0); >> >>should b

Re: [FFmpeg-devel] [PATCH v23 2/2] avformat/dashdec: free resource allocated by xml

2017-09-04 Thread Steven Liu
2017-09-01 18:26 GMT+08:00 Steven Liu : > modify from av_free to xmlFree > > Signed-off-by: Steven Liu > --- > libavformat/dashdec.c | 44 ++-- > 1 file changed, 22 insertions(+), 22 deletions(-) > > diff --git a/libavformat

Re: [FFmpeg-devel] [PATCH v23 2/2] avformat/dashdec: free resource allocated by xml

2017-09-04 Thread Steven Liu
2017-09-04 23:36 GMT+08:00 wm4 : > On Mon, 4 Sep 2017 22:58:27 +0800 > Steven Liu wrote: > >> 2017-09-01 18:26 GMT+08:00 Steven Liu : >> > modify from av_free to xmlFree >> > >> > Signed-off-by: Steven Liu

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

2017-09-05 Thread Steven Liu
2017-09-01 18:26 GMT+08:00 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 > > TODO: > 1. support multi bitrate dash. > >

Re: [FFmpeg-devel] [PATCH] RFC: drop VDA

2017-09-05 Thread Steven Liu
2017-09-05 21:57 GMT+08:00 Clément Bœsch : > From: Clément Bœsch > > I'm reworking the Apple Framework dependencies in the build system, and > unfortunately I can't test VDA (because OSX doesn't have it anymore). > I'll either break it badly without being able to fix it, or won't be > able to do a

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

2017-09-05 Thread Steven Liu
2017-09-05 21:45 GMT+08:00 Michael Niedermayer : > On Mon, Sep 04, 2017 at 08:16:53AM +, Jeyapal, Karthick wrote: >> >On 9/4/17, 1:36 PM, "Steven Liu" >> >mailto:lingjiujia...@gmail.com>> wrote: >> >+if (c->user_agent) >> >+

[FFmpeg-devel] [PATCH] flvdec: Check the avio_seek return value after reading a metadata packet

2017-09-05 Thread Steven Liu
). Prefer to clearly error out instead of silently trying to read from a desynced stream which will only be interpreted as garbage. Signed-off-by: Steven Liu --- libavformat/flvdec.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c

Re: [FFmpeg-devel] [PATCH 1/1] avformat/hlsenc: Fix target duration computation when 'round_durations' is enabled

2017-09-06 Thread Steven Liu
2017-09-06 14:06 GMT+08:00 Jeyapal, Karthick : > Hi Steven, > > I am restarting this discussion, just to conclude this thread one way or the > other. Maybe I am not thinking correctly. Here is detailed thinking, on why I > think this patch will not violate HLS spec. > >>if (target_duratio

Re: [FFmpeg-devel] [PATCH 1/1] avformat/hlsenc: Fix target duration computation when 'round_durations' is enabled

2017-09-06 Thread Steven Liu
2017-09-06 16:46 GMT+08:00 Jeyapal, Karthick : >>On 9/6/17, 12:37 PM, "Steven Liu" >>mailto:lingjiujia...@gmail.com>> wrote: >>segment1.ts duration = 4.88 >>ROUND is 5, not 4, is it? >>if its duration = 4.04 >>ROUND is 4, the real

Re: [FFmpeg-devel] [PATCH 1/1] avformat/hlsenc: Fix target duration computation when 'round_durations' is enabled

2017-09-06 Thread Steven Liu
2017-09-06 18:31 GMT+08:00 Jeyapal, Karthick : > > >>On 9/6/17, 3:43 PM, "Steven Liu" >>mailto:lingjiujia...@gmail.com>> wrote: >> >>>2017-09-06 16:46 GMT+08:00 Jeyapal, Karthick >>>mailto:kjeya...@akamai.com>>: >>>

Re: [FFmpeg-devel] [PATCH] flvdec: Check the avio_seek return value after reading a metadata packet

2017-09-06 Thread Steven Liu
2017-09-06 0:38 GMT+08:00 Steven Liu : > COPY FROM libav Martin Storsjö > > If the metadata packet is corrupted, flv_read_metabody can accidentally > read past the start of the next packet. If the start of the next packet > had been flushed out of the IO buffer, we would be un

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

2017-09-07 Thread Steven Liu
2017-09-05 17:36 GMT+08:00 Steven Liu : > 2017-09-01 18:26 GMT+08:00 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 >> >>

Re: [FFmpeg-devel] [PATCH v23 2/2] avformat/dashdec: free resource allocated by xml

2017-09-08 Thread Steven Liu
2017-09-04 23:55 GMT+08:00 Steven Liu : > 2017-09-04 23:36 GMT+08:00 wm4 : >> On Mon, 4 Sep 2017 22:58:27 +0800 >> Steven Liu wrote: >> >>> 2017-09-01 18:26 GMT+08:00 Steven Liu : >>> > modify from av_free to xmlFree >>> > >>> >

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

2017-09-08 Thread Steven Liu
2017-09-08 0:42 GMT+08:00 Steven Liu : > 2017-09-05 17:36 GMT+08:00 Steven Liu : >> 2017-09-01 18:26 GMT+08:00 Steven Liu : >>> ffmpeg need a dash demuxer for demux the dash formats base on >>> https://github.com/samsamsam-iptvplayer/exteplayer3/blob/mast

[FFmpeg-devel] [PATCH] MAINTAINERS: Add myself to maintainer of dashdec

2017-09-08 Thread Steven Liu
Add dash maintainer. Will invite SSS maintaining it together with me Signed-off-by: Steven Liu --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 8a6ac9840f..0b0f7fa1e4 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -394,6 +394,7 @@ Muxers

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: Add myself to maintainer of dashdec

2017-09-11 Thread Steven Liu
2017-09-11 18:27 GMT+08:00 Michael Niedermayer : > On Sat, Sep 09, 2017 at 08:43:29AM +0800, Steven Liu wrote: >> Add dash maintainer. >> Will invite SSS maintaining it together with me >> >> Signed-off-by: Steven Liu >> --- >> MAINTAINERS | 1 + >

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: fix segfault when using -hls_segment_type fmp4 with -hls_segment_filename

2017-09-15 Thread Steven Liu
2017-09-16 7:16 GMT+08:00 Aman Gupta : > From: Aman Gupta > > previously, specifying -hls_segment_filename meant > s->base_output_dirname was never set, causing a segfault: > > (lldb) bt > * thread #1, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS > (code=1, address=0x0) > * fra

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: fix segfault when using -hls_segment_type fmp4 with -hls_segment_filename

2017-09-15 Thread Steven Liu
2017-09-16 8:37 GMT+08:00 Steven Liu : > 2017-09-16 7:16 GMT+08:00 Aman Gupta : >> From: Aman Gupta >> >> previously, specifying -hls_segment_filename meant >> s->base_output_dirname was never set, causing a segfault: >> >> (lldb) bt >> * thread

[FFmpeg-devel] [PATCH 2/2] MAINTAINERS: modify the hlsenc description

2017-09-17 Thread Steven Liu
change the hlsenc from hls encryption to hlsenc Suggested-by: Aman Gupta Signed-off-by: Steven Liu --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 0b0f7fa1e4..81e1e4916a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -409,7

[FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: fix CID 1418106

2017-09-17 Thread Steven Liu
fix the "Uninitialized scalar variable (UNINIT)" problem. Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 3a9a235514..d70a2f7ff6 100644 --- a/libavformat/hlse

[FFmpeg-devel] [PATCH] avformat/hlsenc: support http method for hls fmp4 init file

2017-09-19 Thread Steven Liu
fix ticket id: 6673 Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 35 ++- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 3a9a235514..56f3cd505a 100644 --- a/libavformat/hlsenc.c +++ b

[FFmpeg-devel] [PATCH] avformat/hls: support cache protocol in hls

2017-09-19 Thread Steven Liu
support play hls from cache 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 0995345bbf..889ae6c201 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -628,7 +628,7 @@ static

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: support http method for hls fmp4 init file

2017-09-21 Thread Steven Liu
2017-09-20 5:42 GMT+08:00 Carl Eugen Hoyos : > 2017-09-19 12:15 GMT+02:00 Steven Liu : >> fix ticket id: 6673 > > Please split if/when you push. > > Thank you, Carl Eugen > ___ > ffmpeg-devel mailing list > ffmpeg-devel@

Re: [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: fix CID 1418106

2017-09-21 Thread Steven Liu
2017-09-18 10:08 GMT+08:00 Steven Liu : > fix the "Uninitialized scalar variable (UNINIT)" problem. > > Signed-off-by: Steven Liu > --- > libavformat/hlsenc.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/libavformat/hlsen

Re: [FFmpeg-devel] [PATCH 2/2] MAINTAINERS: modify the hlsenc description

2017-09-21 Thread Steven Liu
2017-09-19 1:00 GMT+08:00 Lou Logan : > On Sun, Sep 17, 2017, at 06:08 PM, Steven Liu wrote: >> change the hlsenc from hls encryption to hlsenc >> >> Suggested-by: Aman Gupta >> Signed-off-by: Steven Liu >> --- >> MAINTAINERS | 2 +- >> 1 file chan

[FFmpeg-devel] [PATCH 2/2] avformat/hlsenc: fix missing first segment bug in fmp4 mode

2017-10-25 Thread Steven Liu
fix ticket id: #6776 fix code logic error, need not check first segment. Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 26 +- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 55ce800c5a..caced6a3dd

[FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: fix base_output_dirname is null when basename_size is 0 bug

2017-10-25 Thread Steven Liu
fix ticket id: #6777 when use argument hls_segment_filename, the basename_size will be 0 Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 418f153c6f

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

2017-10-26 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 530fc11305..0ea93480a5 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1081,13 +1081,13

[FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: fix missing first segment bug in fmp4 mode

2017-10-26 Thread Steven Liu
fix ticket id: #6776 fix code logic error, need not check first segment. Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 55ce800c5a..530fc11305 100644 --- a/libavformat

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

2017-10-31 Thread 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 | 8 2 files changed, 17 insertions(+) diff --git a/doc/muxers.texi b/doc/muxers.texi index 91bbe673c5

Re: [FFmpeg-devel] [PATCH 1/3] examples/transcoding: suppress build warning.

2017-10-31 Thread Steven Liu
2017-10-31 16:22 GMT+08:00 Jun Zhao : > > > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > http://ffmpeg.org/mailman/listinfo/ffmpeg-devel > From 3ee6e7f01aa2c709afa7ad23f39af919c64f85d5 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 31

Re: [FFmpeg-devel] [PATCH 3/3] examples/filtering_audio: suppress the build warning.

2017-10-31 Thread Steven Liu
2017-10-31 16:22 GMT+08:00 Jun Zhao : > > > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > http://ffmpeg.org/mailman/listinfo/ffmpeg-devel > patchset LGTM ___ ffmpeg-devel mailing list ffmpeg-devel

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

2017-10-31 Thread 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 insertions(+) diff --git a/doc/muxers.texi b/doc/muxers.texi index 91bbe673c5

Re: [FFmpeg-devel] [PATCH] lavf/vf_ocr: check ff_set_common_formats() return value

2017-10-31 Thread Steven Liu
2017-11-01 8:30 GMT+08:00 Moritz Barsnick : > Signed-off-by: Moritz Barsnick > --- > > The only remaining unchecked one I could find in lavf. Fixes a warning, > obviously. > > libavfilter/vf_ocr.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/libavfilter/vf_ocr.c b/l

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

2017-11-01 Thread 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.c index 6d573db094..5ea9d216a4 100644 --- a/libavformat/hlsenc.c +++ b

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

2017-11-01 Thread 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 index 0ea93480a5..6d573db094 100644 --- a/libavformat/hlsenc.c +++ b/libavformat

[FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-08 Thread Steven Liu
0001-avformat-udp-deprecate-local_port-option.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-08 Thread Steven Liu
2016-10-09 2:11 GMT+08:00 Michael Niedermayer : > On Sat, Oct 08, 2016 at 03:35:02PM +0800, Steven Liu wrote: > > > > > udp.c | 19 ++- > > version.h |3 +++ > > 2 files changed, 21 insertions(+), 1 deletion(-) > > bf9c64b4a0fd9a1d998

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-09 19:00 GMT+08:00 Michael Niedermayer : > On Sat, Oct 08, 2016 at 03:35:02PM +0800, Steven Liu wrote: > > > > > udp.c | 19 ++- > > version.h |3 +++ > > 2 files changed, 21 insertions(+), 1 deletion(-) > > bf9c64b4a0

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-09 19:18 GMT+08:00 Steven Liu : > > > 2016-10-09 19:00 GMT+08:00 Michael Niedermayer : > >> On Sat, Oct 08, 2016 at 03:35:02PM +0800, Steven Liu wrote: >> > >> >> > udp.c | 19 ++- >> > version.h |3 +++

Re: [FFmpeg-devel] [PATCH] doc/developer: Add patchwork mentioning to "patch submission checklist"

2016-10-09 Thread Steven Liu
2016-09-16 15:07 GMT+08:00 Michael Niedermayer : > On Thu, Sep 15, 2016 at 05:53:58PM -0800, Lou Logan wrote: > > On Wed, 7 Sep 2016 14:27:07 +0200, Michael Niedermayer wrote: > > > > > yes one can ignore it but its alot more usefull if people keep in > > > mind that theres patchwork. > > > > The

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-09 20:19 GMT+08:00 Nicolas George : > L'octidi 18 vendémiaire, an CCXXV, Steven Liu a écrit : > > I promise there have no newline, the captrue picture is atteched. > > You can see for yourself there are: > http://ffmpeg.org/pipermail/ffmpeg-devel/2016-October/2007

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
check newline with chrome+gmail Signed-off-by: Steven Liu --- libavformat/udp.c | 19 ++- libavformat/version.h | 3 +++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/libavformat/udp.c b/libavformat/udp.c index 3835f98..fd400c6 100644 --- a/libavformat

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-09 20:24 GMT+08:00 Steven Liu : > check newline with chrome+gmail > Shit! > > > Signed-off-by: Steven Liu > --- > libavformat/udp.c | 19 ++- > libavformat/version.h | 3 +++ > 2 files changed, 21 insertions(+), 1 deletion(-) > >

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-09 20:09 GMT+08:00 Steven Liu : > > > 2016-10-09 19:54 GMT+08:00 Michael Niedermayer : > >> On Sun, Oct 09, 2016 at 07:18:48PM +0800, Steven Liu wrote: >> > 2016-10-09 19:00 GMT+08:00 Michael Niedermayer > >: >> > >> > > On S

[FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/udp.c | 19 ++- libavformat/version.h | 3 +++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/libavformat/udp.c b/libavformat/udp.c index 3835f98..fd400c6 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
ok, this is sent by git send-email :) there have no newline ,and i'll always use git send-email to send patch 2016-10-09 23:48 GMT+08:00 Steven Liu : > Signed-off-by: Steven Liu > --- > libavformat/udp.c | 19 ++- > libavformat/version.h | 3 +++ >

[FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/udp.c | 19 ++- libavformat/version.h | 3 +++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/libavformat/udp.c b/libavformat/udp.c index 3835f98..fd400c6 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-10 2:11 GMT+08:00 Michael Niedermayer : > On Sun, Oct 09, 2016 at 11:48:08PM +0800, Steven Liu wrote: > > Signed-off-by: Steven Liu > > --- > > libavformat/udp.c | 19 ++- > > libavformat/version.h | 3 +++ > > 2 files chan

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-10 5:53 GMT+08:00 Steven Liu : > > > 2016-10-10 2:11 GMT+08:00 Michael Niedermayer : > >> On Sun, Oct 09, 2016 at 11:48:08PM +0800, Steven Liu wrote: >> > Signed-off-by: Steven Liu >> > --- >> > libavformat/udp.c | 19 ++-

[FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
Signed-off-by: Steven Liu --- doc/protocols.texi|3 +++ libavformat/udp.c | 19 ++- libavformat/version.h |3 +++ 3 files changed, 24 insertions(+), 1 deletions(-) diff --git a/doc/protocols.texi b/doc/protocols.texi index 3abc5f3..85a3f56 100644 --- a/doc

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
Hi Michael, What about this patch, add local_port into documention and tell users this option will be deprecated, and give will be deprecated message to users when user using it. and give users 10 versions time. :-) 2016-10-10 10:24 GMT+08:00 Steven Liu : > > Signed-

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-10 10:27 GMT+08:00 James Almer : > On 10/9/2016 11:24 PM, Steven Liu wrote: > > > > Signed-off-by: Steven Liu > > --- > > doc/protocols.texi|3 +++ > > libavformat/udp.c | 19 ++- > > libavformat/version.h |3

[FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
Signed-off-by: Steven Liu --- doc/protocols.texi|3 +++ libavformat/udp.c | 19 ++- libavformat/version.h |3 +++ 3 files changed, 24 insertions(+), 1 deletions(-) diff --git a/doc/protocols.texi b/doc/protocols.texi index 3abc5f3..85a3f56 100644 --- a/doc

Re: [FFmpeg-devel] [PATCH] doc/developer: Mention mime type and patchwork in "Submitting patches"

2016-10-10 Thread Steven Liu
2016-10-11 9:05 GMT+08:00 Michael Niedermayer : > Suggested-by: ronald > Signed-off-by: Michael Niedermayer > --- > doc/developer.texi | 6 +- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/doc/developer.texi b/doc/developer.texi > index cf809b9..dbe1f54 100644 > --- a/doc

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-11 Thread Steven Liu
ping 2016-10-10 10:50 GMT+08:00 Steven Liu : > > Signed-off-by: Steven Liu > --- > doc/protocols.texi|3 +++ > libavformat/udp.c | 19 ++- > libavformat/version.h |3 +++ > 3 files changed, 24 insertions(+), 1 deletions(-) > > diff -

[FFmpeg-devel] [PATCH] add hds demuxer

2016-10-11 Thread Steven Liu
init add hds demuxer Based-on: patch by CORY MCCARTHY Based-on: patch by Gorilla Maguila Signed-off-by: Steven Liu --- configure |5 + libavformat/Makefile |1 + libavformat/allformats.c |2 +- libavformat/amfmetadata.c | 219 + libavformat

[FFmpeg-devel] [PATCH] add init hds demuxer

2016-10-11 Thread Steven Liu
TODO: docs, version bump, TODO: option passing support (as seperate commit/patch) TODO: refine AMF parser TODO: refine Metadata Steven Liu (1): add hds demuxer configure |5 + libavformat/Makefile |1 + libavformat/allformats.c |2 +- libavformat

[FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-11 Thread Steven Liu
Signed-off-by: Steven Liu --- doc/protocols.texi|3 +++ libavformat/udp.c | 19 ++- libavformat/version.h |3 +++ 3 files changed, 24 insertions(+), 1 deletions(-) diff --git a/doc/protocols.texi b/doc/protocols.texi index 3abc5f3..85a3f56 100644 --- a/doc

[FFmpeg-devel] [PATCH] add hds demuxer

2016-10-12 Thread Steven Liu
init add hds demuxer Based-on: patch by CORY MCCARTHY Based-on: patch by Gorilla Maguila Signed-off-by: Steven Liu --- configure |5 + libavformat/Makefile |1 + libavformat/allformats.c |2 +- libavformat/amfmetadata.c | 219 + libavformat

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-12 Thread Steven Liu
patch update! fix tool/patcheck warning! 2016-10-12 15:56 GMT+08:00 Steven Liu : > init add hds demuxer > > Based-on: patch by CORY MCCARTHY > Based-on: patch by Gorilla Maguila > Signed-off-by: Steven Liu > --- > configure |5 + > libavfor

[FFmpeg-devel] [PATCH] avcodec/vda: define av_vda_default_init2 when CONFIG_H264_VDA_HWACCEL equ 0

2016-10-12 Thread Steven Liu
on OSX: ../configure --disable-everything --enable-demuxer=hls make error message: Undefined symbols for architecture x86_64: "_av_vda_default_init2", referenced from:_videotoolbox_init in ffmpeg_videotoolbox.o so add av_vda_default_init2 when CONFIG_H264_VDA_HWACCEL=0 Signed-off-by:

[FFmpeg-devel] [PATCH] avformat/flvenc: do not write duration and filesize when cannot seekable

2016-10-12 Thread Steven Liu
when living stream cannot seekable, don't write duration and filesize in metadata, and donnot seek at the flv_write_trailer Signed-off-by: Steven Liu --- libavformat/flvenc.c | 49 - 1 files changed, 28 insertions(+), 21 deletions(-) diff

Re: [FFmpeg-devel] [PATCH] avformat/flvenc: do not write duration and filesize when cannot seekable

2016-10-12 Thread Steven Liu
2016-10-13 4:08 GMT+08:00 Michael Niedermayer : > On Wed, Oct 12, 2016 at 06:11:41PM +0800, Steven Liu wrote: > > when living stream cannot seekable, don't write duration and > > filesize in metadata, and donnot seek at the flv_write_trailer > > >

[FFmpeg-devel] [PATCH] add hds demuxer

2016-10-12 Thread Steven Liu
init add hds demuxer Based-on: patch by CORY MCCARTHY Based-on: patch by Gorilla Maguila Signed-off-by: Steven Liu --- configure |4 + libavformat/Makefile |1 + libavformat/allformats.c |2 +- libavformat/amfmetadata.c | 219 + libavformat

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-12 Thread Steven Liu
patch update. xml2 disabled by default test passed: ../configure --cc='ccache x86_64-w64-mingw32-gcc' --arch=x86_64 --target-os=mingw32 --cross-prefix=x86_64-w64-mingw32- --disable-yasm 2016-10-13 14:49 GMT+08:00 Steven Liu : > init add hds demuxer > > Based-on: pat

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-13 Thread Steven Liu
2016-10-13 17:27 GMT+08:00 Nicolas George : > Le duodi 22 vendémiaire, an CCXXV, Steven Liu a écrit : > > init add hds demuxer > > > > Based-on: patch by CORY MCCARTHY > > Based-on: patch by Gorilla Maguila > > Signed-off-by: Steven Liu > > Thanks for th

Re: [FFmpeg-devel] [PATCH] avcodec/vda: define av_vda_default_init2 when CONFIG_H264_VDA_HWACCEL equ 0

2016-10-13 Thread Steven Liu
ping 2016-10-12 17:36 GMT+08:00 Steven Liu : > on OSX: > ../configure --disable-everything --enable-demuxer=hls make > error message: Undefined symbols for architecture x86_64: > "_av_vda_default_init2", referenced from:_videotoolbox_init in > ffmpeg_videotoolbox.o >

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-13 Thread Steven Liu
ping 2016-10-12 14:21 GMT+08:00 Steven Liu : > > Signed-off-by: Steven Liu > --- > doc/protocols.texi|3 +++ > libavformat/udp.c | 19 ++- > libavformat/version.h |3 +++ > 3 files changed, 24 insertions(+), 1 deletions(-) > > diff -

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-13 Thread Steven Liu
2016-10-13 17:41 GMT+08:00 Carl Eugen Hoyos : > 2016-10-13 8:51 GMT+02:00 Steven Liu : > > patch update. > > > > xml2 disabled by default > > Before reading Nicolas' mail, I wanted to suggest that you fix > autodetection instead... > > Carl Eugen > Hi

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-14 Thread Steven Liu
2016-10-14 20:00 GMT+08:00 wm4 : > On Thu, 13 Oct 2016 11:27:12 +0200 > Nicolas George wrote: > > > Le duodi 22 vendémiaire, an CCXXV, Steven Liu a écrit : > > > init add hds demuxer > > > > > > Based-on: patch by CORY MCCARTHY > > > Base

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-14 Thread Steven Liu
2016-10-14 20:32 GMT+08:00 Carl Eugen Hoyos : > 2016-10-13 16:15 GMT+02:00 Steven Liu : > > > Is this right? Or can you give me a doc link to learn this. > > I am not really a "doc" type, more "trial-and-error", sorry. > Sorry for my abbreviations , s/

[FFmpeg-devel] [PATCH] add hds demuxer

2016-10-14 Thread Steven Liu
mmit/patch) TODO: refine AMF parser TODO: refine Metadata Based-on: patch by CORY MCCARTHY Based-on: patch by Gorilla Maguila Signed-off-by: Steven Liu --- configure |4 + libavformat/Makefile |1 + libavformat/allformats.c |2 +- libavformat/amfmetadat

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-14 Thread Steven Liu
2016-10-14 22:31 GMT+08:00 Nicolas George : > Le tridi 23 vendémiaire, an CCXXV, Steven Liu a écrit : > > > Rather than NIHing it, I think using libexpat would be a good choice > > > (even if its API is terrible). > > ok, i'll learn how to use it, and use it next

[FFmpeg-devel] [PATCH] add hds demuxer

2016-10-14 Thread Steven Liu
mmit/patch) TODO: refine AMF parser TODO: refine Metadata Based-on: patch by CORY MCCARTHY Based-on: patch by Gorilla Maguila Signed-off-by: Steven Liu --- configure |4 + libavformat/Makefile |1 + libavformat/allformats.c |2 +- libavformat/amfmetadat

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-14 Thread Steven Liu
2016-10-15 0:04 GMT+08:00 Ricardo Constantino : > > On 2016-10-14 14:53, Steven Liu wrote: > > @@ -295,6 +295,7 @@ External library support: > > on OSX if openssl and gnutls are not used > [autodetect] > >--enable-x11grab enabl

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-14 Thread Steven Liu
2016-10-15 0:10 GMT+08:00 Steven Liu : > > > 2016-10-15 0:04 GMT+08:00 Ricardo Constantino : > >> >> On 2016-10-14 14:53, Steven Liu wrote: >> > @@ -295,6 +295,7 @@ External library support: >> > on OSX if open

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-14 Thread Steven Liu
2016-10-13 20:57 GMT+08:00 Steven Liu : > ping > > 2016-10-12 14:21 GMT+08:00 Steven Liu : > >> >> Signed-off-by: Steven Liu >> --- >> doc/protocols.texi|3 +++ >> libavformat/udp.c | 19 ++- >> libavformat/version

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-14 Thread Steven Liu
2016-10-15 10:19 GMT+08:00 Michael Niedermayer : > On Sat, Oct 15, 2016 at 09:57:40AM +0800, Steven Liu wrote: > [...] > > and ping Luca Abeni > > iam not sure he is still maintaining udp, he hasnt been active since > many years IIRC > ping Michael :-D > >

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-15 Thread Steven Liu
update 2016-10-15 0:08 GMT+08:00 Steven Liu : > patch update. > > test passed: > Linux: > ../configure > MingW: > ../configure --cc='ccache x86_64-w64-mingw32-gcc' --arch=x86_64 > --target-os=mingw32 --cross-prefix=x86_64-w64-mingw32- --disable-yasm >

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-16 Thread Steven Liu
2016-10-16 22:54 GMT+08:00 Michael Niedermayer : > On Sun, Oct 16, 2016 at 11:32:37AM +0800, Steven Liu wrote: > > update > > you didnt attach any new patch > Just change the help message from disable to enable > > [...] > -- >

Re: [FFmpeg-devel] [PATCH] avcodec/vda: define av_vda_default_init2 when CONFIG_H264_VDA_HWACCEL equ 0

2016-10-17 Thread Steven Liu
ping Xidorn Quan 2016-10-15 6:01 GMT+08:00 wm4 : > On Thu, 13 Oct 2016 20:57:07 +0800 > Steven Liu wrote: > > > ping > > > > 2016-10-12 17:36 GMT+08:00 Steven Liu : > > > > > on OSX: > > > ../configure --disable-everything --enable-demuxer=

Re: [FFmpeg-devel] [PATCH] add hds demuxer

2016-10-17 Thread Steven Liu
2016-10-15 21:52 GMT+08:00 Nicolas George : > Le tridi 23 vendémiaire, an CCXXV, wm4 a écrit : > > XML is very complex > > This is the usual, and often only, argument raised in this kind of > situation. And unfortunately, I already addressed it in this very thread. > > XML is very complex, y

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