diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-12-05 20:02:34 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-12-05 20:03:30 +0000 |
commit | c5008135c2ec10db071ff914be4f296656eb6ccc (patch) | |
tree | c8bebb59852aa010f7125699248c848dd0ecbc08 /libavformat/dxa.c | |
parent | dd154198b1afa9f3f740eb0b2ccd7ab665f8edd4 (diff) | |
download | ffmpeg-c5008135c2ec10db071ff914be4f296656eb6ccc.tar.gz |
dxa: signal EOF
Fixes #1948.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/dxa.c')
-rw-r--r-- | libavformat/dxa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dxa.c b/libavformat/dxa.c index 30d1e02068..6c76ab8b40 100644 --- a/libavformat/dxa.c +++ b/libavformat/dxa.c @@ -212,7 +212,7 @@ static int dxa_read_packet(AVFormatContext *s, AVPacket *pkt) return -1; } } - return AVERROR(EIO); + return AVERROR_EOF; } AVInputFormat ff_dxa_demuxer = { |