[FFmpeg-devel] [PATCH] lavc/roqvideodec: propagate reget_buffer() error code
Stefano Sabatini
stefasab at gmail.com
Mon Sep 24 11:42:43 CEST 2012
---
libavcodec/roqvideodec.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/libavcodec/roqvideodec.c b/libavcodec/roqvideodec.c
index 1e2915e..cd4eb2a 100644
--- a/libavcodec/roqvideodec.c
+++ b/libavcodec/roqvideodec.c
@@ -188,11 +188,12 @@ static int roq_decode_frame(AVCodecContext *avctx,
int buf_size = avpkt->size;
RoqContext *s = avctx->priv_data;
int copy= !s->current_frame->data[0];
+ int ret;
s->current_frame->reference = 3;
- if (avctx->reget_buffer(avctx, s->current_frame)) {
+ if ((ret = avctx->reget_buffer(avctx, s->current_frame)) < 0) {
av_log(avctx, AV_LOG_ERROR, " RoQ: get_buffer() failed\n");
- return -1;
+ return ret;
}
if(copy)
--
1.7.5.4
More information about the ffmpeg-devel
mailing list