From 81e40c26e176a6bcd91d1bfbf9e1820d89bb493b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 26 Apr 2015 21:09:17 +0200 Subject: [PATCH] avcodec/ffv1enc: Ensure that bits per raw sample is valid Signed-off-by: Michael Niedermayer --- libavcodec/ffv1enc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c index 5b0ade4f06..805158eb04 100644 --- a/libavcodec/ffv1enc.c +++ b/libavcodec/ffv1enc.c @@ -793,6 +793,8 @@ static av_cold int encode_init(AVCodecContext *avctx) av_log(avctx, AV_LOG_ERROR, "format not supported\n"); return AVERROR(ENOSYS); } + av_assert0(s->bits_per_raw_sample >= 8); + if (s->transparency) { av_log(avctx, AV_LOG_WARNING, "Storing alpha plane, this will require a recent FFV1 decoder to playback!\n"); }