From 92146eb8ac57da4b4e8b3a0f53e4ce15bc64440b Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 10 Jun 2015 15:50:54 -0700 Subject: [PATCH] vp9_decode_frame: remove explicit read_bit_buffer init this is done by init_read_bit_buffer() Change-Id: I222eaa4e9758ff9f7e1e4122106c5c4652ffa99c --- vp9/decoder/vp9_decodeframe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/decoder/vp9_decodeframe.c b/vp9/decoder/vp9_decodeframe.c index e4c2b5663..cd498ff91 100644 --- a/vp9/decoder/vp9_decodeframe.c +++ b/vp9/decoder/vp9_decodeframe.c @@ -1974,7 +1974,7 @@ void vp9_decode_frame(VP9Decoder *pbi, const uint8_t **p_data_end) { VP9_COMMON *const cm = &pbi->common; MACROBLOCKD *const xd = &pbi->mb; - struct vp9_read_bit_buffer rb = { NULL, NULL, 0, NULL, 0}; + struct vp9_read_bit_buffer rb; int context_updated = 0; uint8_t clear_data[MAX_VP9_HEADER_SIZE]; const size_t first_partition_size = read_uncompressed_header(pbi, -- 2.40.0