diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-11-19 18:03:31 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-01-14 11:38:38 +0100 |
commit | 74a9a624c5c4d50760d8d57458eba57366f6cb26 (patch) | |
tree | 1e7de6fbb1dc7c6d3b62d822a62deab6bb78a015 | |
parent | e4ca055b3ce31a2faacd4c25e009cae69754cdac (diff) | |
download | ffmpeg-74a9a624c5c4d50760d8d57458eba57366f6cb26.tar.gz |
vcr1: return a meaningful error code.
-rw-r--r-- | libavcodec/vcr1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/vcr1.c b/libavcodec/vcr1.c index d0805a3759..2740c29437 100644 --- a/libavcodec/vcr1.c +++ b/libavcodec/vcr1.c @@ -72,15 +72,15 @@ static int vcr1_decode_frame(AVCodecContext *avctx, void *data, AVFrame *picture = data; AVFrame *const p = &a->picture; const uint8_t *bytestream = buf; - int i, x, y; + int i, x, y, ret; if (p->data[0]) avctx->release_buffer(avctx, p); p->reference = 0; - if (ff_get_buffer(avctx, p) < 0) { + if ((ret = ff_get_buffer(avctx, p)) < 0) { av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); - return -1; + return ret; } p->pict_type = AV_PICTURE_TYPE_I; p->key_frame = 1; |