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:
Tim-Philipp Müller 2007-05-23 11:16:09 +00:00
parent 527665dd95
commit a570f40d46
2 changed files with 6 additions and 1 deletions

View file

@ -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):

View file

@ -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)))