Re: [FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-04-07 Thread Michael Niedermayer
On Mon, Apr 06, 2015 at 02:52:24PM -0700, Vignesh Venkatasubramanian wrote: > On Mon, Apr 6, 2015 at 2:25 PM, Michael Niedermayer wrote: > > On Mon, Apr 06, 2015 at 11:19:36AM -0700, Vignesh Venkatasubramanian wrote: > >> On Sat, Apr 4, 2015 at 3:38 PM, Michael Niedermayer > >> wrote: > >> > On

Re: [FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-04-06 Thread Michael Niedermayer
On Mon, Apr 06, 2015 at 11:19:36AM -0700, Vignesh Venkatasubramanian wrote: > On Sat, Apr 4, 2015 at 3:38 PM, Michael Niedermayer wrote: > > On Mon, Mar 30, 2015 at 02:46:10PM -0700, Vignesh Venkatasubramanian wrote: > >> This patch adds support for WebM Live Muxing by adding a new WebM > >> Chunk

Re: [FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-04-06 Thread Vignesh Venkatasubramanian
On Sat, Apr 4, 2015 at 3:38 PM, Michael Niedermayer wrote: > On Mon, Mar 30, 2015 at 02:46:10PM -0700, Vignesh Venkatasubramanian wrote: >> This patch adds support for WebM Live Muxing by adding a new WebM >> Chunk muxer. It writes out live WebM Chunks which can be used for >> playback using Live

Re: [FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-04-04 Thread Michael Niedermayer
On Mon, Mar 30, 2015 at 02:46:10PM -0700, Vignesh Venkatasubramanian wrote: > This patch adds support for WebM Live Muxing by adding a new WebM > Chunk muxer. It writes out live WebM Chunks which can be used for > playback using Live DASH Clients. > > Please see muxers.texi for sample usage. [...

Re: [FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-03-30 Thread Lukasz Marek
When are we going to get a DASH demuxer? Why don't you implement it? ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-03-30 Thread wm4
On Mon, 30 Mar 2015 12:49:45 -0700 Vignesh Venkatasubramanian wrote: > This patch adds support for WebM Live Muxing by adding a new WebM > Chunk muxer. It writes out live WebM Chunks which can be used for > playback using Live DASH Clients. > > Please see muxers.texi for sample usage. > > Signe

Re: [FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-03-30 Thread Carl Eugen Hoyos
Vignesh Venkatasubramanian google.com> writes: > >> +oc->streams = NULL; > >> +oc->nb_streams = 0; > >> +avformat_free_context(oc); > > > > The first two seem unnecessary if you call > > avformat_free_context(). > > The first two lines are intentional. Sorry about the comment;-) Ca

[FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-03-30 Thread Vignesh Venkatasubramanian
This patch adds support for WebM Live Muxing by adding a new WebM Chunk muxer. It writes out live WebM Chunks which can be used for playback using Live DASH Clients. Please see muxers.texi for sample usage. Signed-off-by: Vignesh Venkatasubramanian --- Changelog | 1 + doc/mux

Re: [FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-03-30 Thread Carl Eugen Hoyos
Vignesh Venkatasubramanian google.com> writes: > +if (!wc->oformat) { return AVERROR_MUXER_NOT_FOUND; } It is your file but most people here seem to agree that the following is more (and not less) readable: if (!wc->oformat) return AVERROR_MUXER_NOT_FOUND; > +if ((ret = chu

[FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-03-30 Thread Vignesh Venkatasubramanian
This patch adds support for WebM Live Muxing by adding a new WebM Chunk muxer. It writes out live WebM Chunks which can be used for playback using Live DASH Clients. Please see muxers.texi for sample usage. Signed-off-by: Vignesh Venkatasubramanian --- Changelog | 1 + doc/mux