mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 14:01:27 +00:00
flashsv: return more meaningful error values
This commit is contained in:
parent
940230202a
commit
dbf5b95d35
@ -150,7 +150,7 @@ static int flashsv_decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
"Frame width or height differs from first frames!\n");
|
"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",
|
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);
|
avctx->height, avctx->width, s->image_height, s->image_width);
|
||||||
return -1;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
|
||||||
av_log(avctx, AV_LOG_DEBUG,
|
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)) {
|
if (8 * size > get_bits_left(&gb)) {
|
||||||
avctx->release_buffer(avctx, &s->frame);
|
avctx->release_buffer(avctx, &s->frame);
|
||||||
s->frame.data[0] = NULL;
|
s->frame.data[0] = NULL;
|
||||||
return -1;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (size == 0) {
|
if (size == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user