Re: [libav-devel] [PATCH] mov: Add option to keep exact packet sequence after seeking

2015-03-17 Thread Vittorio Giovara
On Mon, Mar 16, 2015 at 8:08 PM, Martin Storsjö wrote: > From: Derek Buitenhuis > > +{"seek_streams_individually", > +"Seek each stream individually to the to the closest point", > +OFFSET(seek_individually), AV_OPT_TYPE_INT, { .i64 = 1 }, > +0, 1, FLAGS}, nit: space a

Re: [libav-devel] [PATCH] mov: Add option to keep exact packet sequence after seeking

2015-03-17 Thread Luca Barbato
On 17/03/15 15:21, Derek Buitenhuis wrote: On 3/16/2015 8:08 PM, Martin Storsjö wrote: The current behavior may produce a different sequence of packets after seeking, compared to demuxing linearly from the beginning. This is because the MOV demuxer seeks in each stream individually, based on tim

Re: [libav-devel] [PATCH] mov: Add option to keep exact packet sequence after seeking

2015-03-17 Thread Derek Buitenhuis
On 3/16/2015 8:08 PM, Martin Storsjö wrote: > The current behavior may produce a different sequence of packets > after seeking, compared to demuxing linearly from the beginning. > This is because the MOV demuxer seeks in each stream individually, > based on timestamp, which may set each stream at a

[libav-devel] [PATCH] mov: Add option to keep exact packet sequence after seeking

2015-03-16 Thread Martin Storsjö
From: Derek Buitenhuis The current behavior may produce a different sequence of packets after seeking, compared to demuxing linearly from the beginning. This is because the MOV demuxer seeks in each stream individually, based on timestamp, which may set each stream at a slightly different positio