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
au demuxer: pass av_get_packet error on unchanged instead of converting to
AVERROR(EIO). Originally committed as revision 20127 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Reimar Döffinger
15 years ago
parent
c67031e7cf
commit
b46c98bf66
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/au.c
+ 1
- 1
libavformat/au.c
View File
@@ -168,7 +168,7 @@ static int au_read_packet(AVFormatContext *s,
return AVERROR(EIO);
ret= av_get_packet(s->pb, pkt, MAX_SIZE);
if (ret < 0)
return
AVERROR(EIO)
;
return
ret
;
pkt->stream_index = 0;
/* note: we need to modify the packet size here to handle the last
Write
Preview
Loading…
Cancel
Save