mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
opusparse: fix uninitialized-warning
This commit is contained in:
parent
04393f4377
commit
0a9d924131
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue