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
gxf: return AVERROR_EOF instead of AVERROR(EIO) at end of gxf_packet function
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Matthieu Bouron
Michael Niedermayer
13 years ago
parent
78f2833f78
commit
f645132061
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/gxf.c
+ 1
- 1
libavformat/gxf.c
View File
@@ -527,7 +527,7 @@ static int gxf_packet(AVFormatContext *s, AVPacket *pkt) {
return ret;
}
return AVERROR
(EIO)
;
return AVERROR
_EOF
;
}
static int gxf_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) {
Write
Preview
Loading…
Cancel
Save