diff mbox series

[FFmpeg-devel] lavc/dxvenc: fix failing FATE tests

Message ID 20240209090915.65048-1-connorbworley@gmail.com
State New
Headers show
Series [FFmpeg-devel] lavc/dxvenc: fix failing FATE tests | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Connor Worley Feb. 9, 2024, 9:09 a.m. UTC
Signed-off-by: Connor Worley <connorbworley@gmail.com>
---
 libavcodec/dxvenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavcodec/dxvenc.c b/libavcodec/dxvenc.c
index ebc48aace3..b92d99981c 100644
--- a/libavcodec/dxvenc.c
+++ b/libavcodec/dxvenc.c
@@ -234,7 +234,7 @@  static av_cold int dxv_init(AVCodecContext *avctx)
                     ctx->enc.tex_ratio;
     ctx->enc.slice_count = av_clip(avctx->thread_count, 1, FFALIGN(avctx->height, 16) / TEXTURE_BLOCK_H);
 
-    ctx->tex_data = av_malloc(ctx->tex_size);
+    ctx->tex_data = av_mallocz(ctx->tex_size);
     if (!ctx->tex_data) {
         return AVERROR(ENOMEM);
     }