diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-30 00:28:08 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-07-06 13:21:25 +0200 |
commit | dbf5b95d35043ae3a24024d1db44d51bfa218704 (patch) | |
tree | c74676fc3edb1076ff87a26d748f1e4768ad26ed /libavcodec/flashsv.c | |
parent | 940230202a5cc80cef75a91cf9c063ae616e195d (diff) | |
download | ffmpeg-dbf5b95d35043ae3a24024d1db44d51bfa218704.tar.gz |
flashsv: return more meaningful error values
Diffstat (limited to 'libavcodec/flashsv.c')
-rw-r--r-- | libavcodec/flashsv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/flashsv.c b/libavcodec/flashsv.c index 8e17ac4535..837a92243c 100644 --- a/libavcodec/flashsv.c +++ b/libavcodec/flashsv.c @@ -150,7 +150,7 @@ static int flashsv_decode_frame(AVCodecContext *avctx, void *data, "Frame width or height differs from first frames!\n"); av_log(avctx, AV_LOG_ERROR, "fh = %d, fv %d vs ch = %d, cv = %d\n", avctx->height, avctx->width, s->image_height, s->image_width); - return -1; + return AVERROR_INVALIDDATA; } av_log(avctx, AV_LOG_DEBUG, @@ -184,7 +184,7 @@ static int flashsv_decode_frame(AVCodecContext *avctx, void *data, if (8 * size > get_bits_left(&gb)) { avctx->release_buffer(avctx, &s->frame); s->frame.data[0] = NULL; - return -1; + return AVERROR_INVALIDDATA; } if (size == 0) { |