[FFmpeg-cvslog] ogg_read_packet: forward error code.
Nicolas George
git at videolan.org
Sat Jun 25 11:21:50 CEST 2011
ffmpeg | branch: master | Nicolas George <nicolas.george at normalesup.org> | Fri Jun 24 12:02:41 2011 +0200| [392aa6e444f13aaddcf3d215b1058640a2ada846] | committer: Nicolas George
ogg_read_packet: forward error code.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=392aa6e444f13aaddcf3d215b1058640a2ada846
---
libavformat/oggdec.c | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c
index 655da35..08de280 100644
--- a/libavformat/oggdec.c
+++ b/libavformat/oggdec.c
@@ -550,15 +550,16 @@ static int ogg_read_packet(AVFormatContext *s, AVPacket *pkt)
{
struct ogg *ogg;
struct ogg_stream *os;
- int idx = -1;
+ int idx = -1, ret;
int pstart, psize;
int64_t fpos, pts, dts;
//Get an ogg packet
retry:
do{
- if (ogg_packet (s, &idx, &pstart, &psize, &fpos) < 0)
- return AVERROR(EIO);
+ ret = ogg_packet (s, &idx, &pstart, &psize, &fpos);
+ if (ret < 0)
+ return ret;
}while (idx < 0 || !s->streams[idx]);
ogg = s->priv_data;
@@ -572,8 +573,9 @@ retry:
os->keyframe_seek = 0;
//Alloc a pkt
- if (av_new_packet (pkt, psize) < 0)
- return AVERROR(EIO);
+ ret = av_new_packet (pkt, psize);
+ if (ret < 0)
+ return ret;
pkt->stream_index = idx;
memcpy (pkt->data, os->buf + pstart, psize);
More information about the ffmpeg-cvslog
mailing list