mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 21:51:09 +00:00
flacparse: Fix unitialized variable on macosx
This commit is contained in:
parent
84406fde30
commit
063be2f972
1 changed files with 1 additions and 1 deletions
|
@ -898,7 +898,7 @@ static void
|
||||||
gst_flac_parse_process_seektable (GstFlacParse * flacparse, gint64 boffset)
|
gst_flac_parse_process_seektable (GstFlacParse * flacparse, gint64 boffset)
|
||||||
{
|
{
|
||||||
GstByteReader br;
|
GstByteReader br;
|
||||||
gint64 offset, samples;
|
gint64 offset = 0, samples = 0;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (flacparse,
|
GST_DEBUG_OBJECT (flacparse,
|
||||||
"parsing seektable; base offset %" G_GINT64_FORMAT, boffset);
|
"parsing seektable; base offset %" G_GINT64_FORMAT, boffset);
|
||||||
|
|
Loading…
Reference in a new issue