mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 01:31:03 +00:00
fdkaacenc: silence a maybe-unitialized warning
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7875>
This commit is contained in:
parent
bf22f282eb
commit
6eee4a513b
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ gst_fdkaacenc_set_format (GstAudioEncoder * enc, GstAudioInfo * info)
|
||||||
gint mpegversion = 4;
|
gint mpegversion = 4;
|
||||||
gint aot = AOT_AAC_LC;
|
gint aot = AOT_AAC_LC;
|
||||||
const gchar *profile_str = "lc";
|
const gchar *profile_str = "lc";
|
||||||
CHANNEL_MODE channel_mode;
|
CHANNEL_MODE channel_mode = MODE_INVALID;
|
||||||
AACENC_InfoStruct enc_info = { 0 };
|
AACENC_InfoStruct enc_info = { 0 };
|
||||||
gint bitrate, signaling_mode;
|
gint bitrate, signaling_mode;
|
||||||
guint bitrate_mode;
|
guint bitrate_mode;
|
||||||
|
|
Loading…
Reference in a new issue