mirror of https://git.ffmpeg.org/ffmpeg.git
compilation of mov.c broken patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
Originally committed as revision 3292 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b71cf33c9b
commit
5c030d3ee9
|
@ -1985,9 +1985,10 @@ static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp
|
||||||
|
|
||||||
// Update other streams
|
// Update other streams
|
||||||
for (i = 0; i<mov->total_streams; i++) {
|
for (i = 0; i<mov->total_streams; i++) {
|
||||||
|
MOVStreamContext *msc;
|
||||||
if (i == mov_idx) continue;
|
if (i == mov_idx) continue;
|
||||||
// Find the nearest 'next' chunk
|
// Find the nearest 'next' chunk
|
||||||
MOVStreamContext *msc = mov->streams[i];
|
msc = mov->streams[i];
|
||||||
a = 0;
|
a = 0;
|
||||||
b = msc->chunk_count - 1;
|
b = msc->chunk_count - 1;
|
||||||
while (a < b) {
|
while (a < b) {
|
||||||
|
|
Loading…
Reference in New Issue