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
cafdec: return right code if EOF is reached
Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n1.1
Paul B Mahol
13 years ago
parent
25d8ebd422
commit
e94f429474
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/cafdec.c
+ 1
- 1
libavformat/cafdec.c
View File
@@ -343,7 +343,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
int64_t left = CAF_MAX_PKT_SIZE;
if (url_feof(pb))
return AVERROR
(EIO)
;
return AVERROR
_EOF
;
/* don't read past end of data chunk */
if (caf->data_size > 0) {
Write
Preview
Loading…
Cancel
Save