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
wv: return AVERROR_EOF on EOF, not EIO.
tags/n1.0
Anton Khirnov
13 years ago
parent
f73e3938ac
commit
ccc10acb5b
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/wv.c
+ 1
- 1
libavformat/wv.c
View File
@@ -254,7 +254,7 @@ static int wv_read_packet(AVFormatContext *s,
uint32_t block_samples;
if (s->pb->eof_reached)
return AVERROR
(EIO)
;
return AVERROR
_EOF
;
if(wc->block_parsed){
if(wv_read_block_header(s, s->pb, 0) < 0)
return -1;
Write
Preview
Loading…
Cancel
Save