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 > ---

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

2017-11-22 Thread 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/libavformat/dashdec.c @@ -522,6 +522,24 @@ static

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

2017-11-18 Thread 刘歧
> 在 2017年11月18日,07:13,Colin NG 写道: > > --- > libavformat/dashdec.c | 39 +-- > 1 file changed, 33 insertions(+), 6 deletions(-) > > diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c > index 0e3afd2..671ae9d 100644 > ---

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

2017-11-17 Thread Colin NG
--- libavformat/dashdec.c | 39 +-- 1 file changed, 33 insertions(+), 6 deletions(-) diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index 0e3afd2..671ae9d 100644 --- a/libavformat/dashdec.c +++ b/libavformat/dashdec.c @@ -522,6 +522,25 @@ static

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

2017-11-17 Thread Colin NG
evel] [PATCH] Download dash content with byte range info On Thu, Nov 16, 2017 at 08:33:35PM +, Colin NG wrote: > --- > libavformat/dashdec.c | 32 +--- > 1 file changed, 25 insertions(+), 7 deletions(-) > > diff --git a/libavformat/dashdec.c b/libavforma

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

2017-11-17 Thread Michael Niedermayer
On Thu, Nov 16, 2017 at 08:33:35PM +, Colin NG wrote: > --- > libavformat/dashdec.c | 32 +--- > 1 file changed, 25 insertions(+), 7 deletions(-) > > diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c > index 0e3afd2..33255f2 100644 > ---

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

2017-11-16 Thread Colin NG
--- libavformat/dashdec.c | 32 +--- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index 0e3afd2..33255f2 100644 --- a/libavformat/dashdec.c +++ b/libavformat/dashdec.c @@ -522,6 +522,22 @@ static enum

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

2017-11-15 Thread Michael Niedermayer
On Thu, Nov 16, 2017 at 12:59:51AM +, Colin NG wrote: > Made change suggested by Carl and add some minor fixes. please submit git patches so they can be applied automatically (git format-patch / send-email) while technically this can be applied, it cant in practice as the whole email ends

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

2017-11-15 Thread Steven Liu
g.org> on behalf of Carl Eugen > Hoyos <ceffm...@gmail.com> > Sent: November 15, 2017 5:37 PM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [Patch] Download dash content with byte range info > > 2017-11-15 22:00 GMT+01:00 Colin NG <colin..

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

2017-11-15 Thread Colin NG
Re: [FFmpeg-devel] [Patch] Download dash content with byte range info 2017-11-15 22:00 GMT+01:00 Colin NG <colin...@hotmail.com>: > This patch is partial fix for ticket 6658 (Dash demuxer segfault). > +static struct fragment * get_Fragment(char *range) { > +struct fragment * seg

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

2017-11-15 Thread Carl Eugen Hoyos
2017-11-15 22:00 GMT+01:00 Colin NG : > This patch is partial fix for ticket 6658 (Dash demuxer segfault). > +static struct fragment * get_Fragment(char *range) { > +struct fragment * seg = av_mallocz(sizeof(struct fragment)); Please make it (code-style): ... fragment

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

2017-11-15 Thread Colin NG
Subject: Re: [FFmpeg-devel] [Patch] Download dash content with byte range info 2017-11-15 10:26 GMT+08:00 Colin NG <colin...@hotmail.com>: > Please ignore the previous "patch" email. > > > > > ___ > ffmpeg-de

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

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

2017-11-14 Thread Colin NG
Please ignore the previous "patch" email. diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index 0e3afd2..68196e9 100644 --- a/libavformat/dashdec.c +++ b/libavformat/dashdec.c @@ -522,6 +522,22 @@ static enum AVMediaType get_content_type(xmlNodePtr node) return type; }

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

2017-11-14 Thread Colin NG
diff --git a/doc/examples/Makefile b/doc/examples/Makefile index 58afd71..bff4af6 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -1,3 +1,16 @@ +# use pkg-config for getting CFLAGS and LDLIBS +FFMPEG_LIBS=libavdevice\ +libavformat