opusparse: fix uninitialized-warning

This commit is contained in:
Havard Graff 2016-10-24 23:02:38 +02:00 committed by Tim-Philipp Müller
parent 04393f4377
commit 0a9d924131

View file

@ -280,7 +280,7 @@ packet_duration_opus (const guint8 * data, size_t len)
gint64 duration;
gint64 frame_duration;
gint nframes;
gint nframes = 0;
guint8 toc;
if (len < 1)