Browse Source

Fix concat seek result.

Patch by Wolfram Gloger wmglo AT-SIGN dent.med.uni-muenchen DOT de.

Originally committed as revision 22302 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Wolfram Gloger Stefano Sabatini 16 years ago
parent
commit
35eaadcba0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/concat.c

+ 1
- 1
libavformat/concat.c View File

@@ -183,7 +183,7 @@ static int64_t concat_seek(URLContext *h, int64_t pos, int whence)
if (result >= 0) {
data->current = i;
while (i)
result += nodes[i--].size;
result += nodes[--i].size;
}
return result;
}


Loading…
Cancel
Save