yop: use a meaningful error code.

This commit is contained in:
Anton Khirnov 2012-11-15 20:49:17 +01:00
parent 11c3f2047e
commit 01b60883ea
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ static av_cold int yop_decode_init(AVCodecContext *avctx)
if (avctx->width & 1 || avctx->height & 1 ||
av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0) {
av_log(avctx, AV_LOG_ERROR, "YOP has invalid dimensions\n");
return -1;
return AVERROR_INVALIDDATA;
}
avctx->pix_fmt = AV_PIX_FMT_PAL8;