Commit 4c5277f9 authored by Francois Cartegnie's avatar Francois Cartegnie

mux: mp4: uninitialized variables

parent f3b95223
......@@ -850,11 +850,11 @@ static bo_t *GetHvcCTag(mp4_stream_t *p_stream)
size_t i_buffer = p_stream->fmt.i_extra;
uint8_t general_configuration[12] = {0};
uint8_t i_numTemporalLayer;
uint8_t i_numTemporalLayer = 0;
uint8_t i_chroma_idc = 1;
uint8_t i_bit_depth_luma_minus8 = 0;
uint8_t i_bit_depth_chroma_minus8 = 0;
bool b_temporalIdNested;
bool b_temporalIdNested = false;
uint32_t cmp = 0xFFFFFFFF;
while (i_buffer) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment