[FFmpeg-cvslog] avcodec/dnxhdenc: Assert that frame size is not assigned an error code
Michael Niedermayer
git at videolan.org
Thu Jun 15 01:18:20 EEST 2017
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Wed Jun 14 16:58:35 2017 +0200| [900fe8ee5d17b8f2bd2bd5f1fdd62cf992525bc8] | committer: Michael Niedermayer
avcodec/dnxhdenc: Assert that frame size is not assigned an error code
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=900fe8ee5d17b8f2bd2bd5f1fdd62cf992525bc8
---
libavcodec/dnxhdenc.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
index 59e3f73689..6e9b54de4f 100644
--- a/libavcodec/dnxhdenc.c
+++ b/libavcodec/dnxhdenc.c
@@ -478,6 +478,7 @@ static av_cold int dnxhd_encode_init(AVCodecContext *avctx)
if (ctx->cid_table->frame_size == DNXHD_VARIABLE) {
ctx->frame_size = ff_dnxhd_get_hr_frame_size(ctx->cid,
avctx->width, avctx->height);
+ av_assert0(ctx->frame_size >= 0);
ctx->coding_unit_size = ctx->frame_size;
} else {
ctx->frame_size = ctx->cid_table->frame_size;
More information about the ffmpeg-cvslog
mailing list