mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 00:32:31 +00:00
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
This commit is contained in:
parent
e7e291e960
commit
35eaadcba0
@ -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…
Reference in New Issue
Block a user