You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
Make audio_read_packet() return AVERROR_EOF rather than AVERROR(EOF) =
AVERROR(-1) = 1. Originally committed as revision 22664 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -256,7 +256,7 @@ static int audio_read_packet(AVFormatContext *s1, AVPacket *pkt)
|
||||
av_free_packet(pkt);
|
||||
pkt->size = 0;
|
||||
if (ret<0) return AVERROR(errno);
|
||||
else return AVERROR(EOF);
|
||||
else return AVERROR_EOF;
|
||||
}
|
||||
pkt->size = ret;
|
||||
|
||||
|
Reference in New Issue
Block a user