mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 05:45:58 +00:00
gst/mpegaudioparse/gstmpegaudioparse.c: Initialise variable to make fc4 build bot happy.
Original commit message from CVS: * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain): Initialise variable to make fc4 build bot happy.
This commit is contained in:
parent
527665dd95
commit
a570f40d46
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-05-23 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
|
||||
Initialise variable to make fc4 build bot happy.
|
||||
|
||||
2007-05-21 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
|
||||
|
|
|
@ -670,7 +670,7 @@ gst_mp3parse_chain (GstPad * pad, GstBuffer * buf)
|
|||
header = GST_READ_UINT32_BE (data);
|
||||
/* if it's a valid header, go ahead and send off the frame */
|
||||
if (head_check (mp3parse, header)) {
|
||||
guint bitrate = 0, layer = 0, rate = 0, channels = 0, version;
|
||||
guint bitrate = 0, layer = 0, rate = 0, channels = 0, version = 0;
|
||||
|
||||
if (!(bpf = mp3_type_frame_length_from_header (mp3parse, header,
|
||||
&version, &layer, &channels, &bitrate, &rate)))
|
||||
|
|
Loading…
Reference in a new issue