This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
mp3: Forward seeking errors
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
tags/n2.8
Luca Barbato
10 years ago
parent
32c8d89c03
commit
a5a6a786bf
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
libavformat/mp3dec.c
+ 3
- 1
libavformat/mp3dec.c
View File
@@ -422,7 +422,9 @@ static int reposition(AVFormatContext *s, int64_t pos)
if (best_valid <= 0)
return AVERROR(ENOSYS);
avio_seek(s->pb, best_pos, SEEK_SET);
p = avio_seek(s->pb, best_pos, SEEK_SET);
if (p < 0)
return p;
return 0;
}
Write
Preview
Loading…
Cancel
Save