summaryrefslogtreecommitdiff
path: root/libavformat/omadec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-08 13:41:40 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-08 13:41:45 +0200
commitf302ba4ddab75d217e1ed63d15a56ef4e6e799b3 (patch)
tree33c1b4de23d79fe30c14036647970c0509d494c7 /libavformat/omadec.c
parentd13bc208da3b4a7d058d96fad884f272c9647eb9 (diff)
parentdb9aee6ccf183508835acc325f5ad87d595eacc4 (diff)
Merge commit 'db9aee6ccf183508835acc325f5ad87d595eacc4'
* commit 'db9aee6ccf183508835acc325f5ad87d595eacc4': oma: properly forward errors in oma_read_packet Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/omadec.c')
-rw-r--r--libavformat/omadec.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavformat/omadec.c b/libavformat/omadec.c
index 38e22da563..e571495c8d 100644
--- a/libavformat/omadec.c
+++ b/libavformat/omadec.c
@@ -400,8 +400,10 @@ static int oma_read_packet(AVFormatContext *s, AVPacket *pkt)
int packet_size = s->streams[0]->codec->block_align;
int ret = av_get_packet(s->pb, pkt, packet_size);
- if (ret <= 0)
- return AVERROR(EIO);
+ if (ret < 0)
+ return ret;
+ if (!ret)
+ return AVERROR_EOF;
pkt->stream_index = 0;