mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-10-31 22:49:02 +00:00
mpegaudioparse: initialze bpf variable
bpf variable might be used in cleanup without being intialized. https://bugzilla.gnome.org/show_bug.cgi?id=751306
This commit is contained in:
parent
40957a9212
commit
331fca4dfb
1 changed files with 1 additions and 1 deletions
|
@ -606,7 +606,7 @@ gst_mpeg_audio_parse_handle_frame (GstBaseParse * parse,
|
|||
GstMpegAudioParse *mp3parse = GST_MPEG_AUDIO_PARSE (parse);
|
||||
GstBuffer *buf = frame->buffer;
|
||||
GstByteReader reader;
|
||||
gint off, bpf;
|
||||
gint off, bpf = 0;
|
||||
gboolean lost_sync, draining, valid, caps_change;
|
||||
guint32 header;
|
||||
guint bitrate, layer, rate, channels, version, mode, crc;
|
||||
|
|
Loading…
Reference in a new issue