mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
flacparse: Fix uninitialized variable compiler warnings
These warnings are wrong, the variables are only used if they were initialized by the bit reader.
This commit is contained in:
parent
70d5346ee8
commit
872b49efa7
1 changed files with 5 additions and 5 deletions
|
@ -353,11 +353,11 @@ gst_flac_parse_get_frame_size (GstFlacParse * flacparse, GstBuffer * buffer,
|
|||
guint * framesize_ret)
|
||||
{
|
||||
GstBitReader reader = GST_BIT_READER_INIT_FROM_BUFFER (buffer);
|
||||
guint16 samplerate;
|
||||
guint8 tmp;
|
||||
guint16 samplerate = 0;
|
||||
guint8 tmp = 0;
|
||||
gint i;
|
||||
guint8 channel_assignment = 0;
|
||||
guint8 actual_crc, expected_crc;
|
||||
guint8 actual_crc, expected_crc = 0;
|
||||
|
||||
/* Skip 14 bit sync code */
|
||||
if (!gst_bit_reader_skip (&reader, 14))
|
||||
|
@ -660,7 +660,7 @@ gst_flac_parse_get_frame_size (GstFlacParse * flacparse, GstBuffer * buffer,
|
|||
} else {
|
||||
guint8 residual_type;
|
||||
guint order = 0;
|
||||
guint16 partition_order;
|
||||
guint16 partition_order = 0;
|
||||
guint j;
|
||||
|
||||
/* Skip warm-up samples for fixed subframe and calculate order */
|
||||
|
@ -761,7 +761,7 @@ gst_flac_parse_get_frame_size (GstFlacParse * flacparse, GstBuffer * buffer,
|
|||
gst_bit_reader_skip_to_byte (&reader);
|
||||
|
||||
if (flacparse->check_frame_checksums) {
|
||||
guint16 actual_crc16, expected_crc16;
|
||||
guint16 actual_crc16, expected_crc16 = 0;
|
||||
|
||||
if (!gst_bit_reader_get_bits_uint16 (&reader, &expected_crc16, 16))
|
||||
goto need_more_data;
|
||||
|
|
Loading…
Reference in a new issue