Re: [FFmpeg-devel] [PATCH] webm_dash_manifest_demuxer: Fix initialization range for files with cues at the front

2017-04-24 Thread Vignesh Venkatasubramanian
On Fri, Apr 21, 2017 at 8:40 AM, Derek Buitenhuis wrote: > The WebM DASH spec states: > The Initialization Segment shall not contain Clusters or Cues. > The Segment Index corresponds to the Cues. > > Previously, it included the cues if they were at the front. Looks good. Thanks. > > Sign

Re: [FFmpeg-devel] [PATCH] webm_dash_manifest_demuxer: Fix initialization range for files with cues at the front

2017-04-23 Thread wm4
On Sun, 23 Apr 2017 14:08:18 +0100 Derek Buitenhuis wrote: > On 4/21/2017 4:40 PM, Derek Buitenhuis wrote: > > The WebM DASH spec states: > > The Initialization Segment shall not contain Clusters or Cues. > > The Segment Index corresponds to the Cues. > > > > Previously, it included the

Re: [FFmpeg-devel] [PATCH] webm_dash_manifest_demuxer: Fix initialization range for files with cues at the front

2017-04-23 Thread Derek Buitenhuis
On 4/21/2017 4:40 PM, Derek Buitenhuis wrote: > The WebM DASH spec states: > The Initialization Segment shall not contain Clusters or Cues. > The Segment Index corresponds to the Cues. > > Previously, it included the cues if they were at the front. > > Signed-off-by: Derek Buitenhuis > -

[FFmpeg-devel] [PATCH] webm_dash_manifest_demuxer: Fix initialization range for files with cues at the front

2017-04-21 Thread Derek Buitenhuis
The WebM DASH spec states: The Initialization Segment shall not contain Clusters or Cues. The Segment Index corresponds to the Cues. Previously, it included the cues if they were at the front. Signed-off-by: Derek Buitenhuis --- libavformat/matroskadec.c | 13 ++--- 1 file chang