From 5cddfc53570fe10fa7fe6d0f166f6f0e090466f6 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 26 May 2015 04:52:39 +0200 Subject: avcodec/dxva2_h264: Fix "may be used uninitialized" warnings Signed-off-by: Michael Niedermayer --- libavcodec/dxva2_h264.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec') diff --git a/libavcodec/dxva2_h264.c b/libavcodec/dxva2_h264.c index fe252bbae8..99b80ba373 100644 --- a/libavcodec/dxva2_h264.c +++ b/libavcodec/dxva2_h264.c @@ -298,9 +298,9 @@ static int commit_bitstream_and_slice_buffer(AVCodecContext *avctx, const H264Picture *current_picture = h->cur_pic_ptr; struct dxva2_picture_context *ctx_pic = current_picture->hwaccel_picture_private; DXVA_Slice_H264_Short *slice = NULL; - void *dxva_data_ptr; + void *dxva_data_ptr = NULL; uint8_t *dxva_data, *current, *end; - unsigned dxva_size; + unsigned dxva_size = 0; void *slice_data; unsigned slice_size; unsigned padding; -- cgit v1.2.3