Skip to content
Snippets Groups Projects
Commit 518db873 authored by Lyndon Brown's avatar Lyndon Brown
Browse files

speex: fix array length mismatch

the null entry should not be there. caught this with some work to be
submitted later.
parent 5987503e
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ static void CloseEncoder ( vlc_object_t * );
static const int pi_enc_mode_values[] = { 0, 1, 2 };
static const char * const ppsz_enc_mode_descriptions[] = {
N_("Narrow-band (8kHz)"), N_("Wide-band (16kHz)"), N_("Ultra-wideband (32kHz)"), NULL
N_("Narrow-band (8kHz)"), N_("Wide-band (16kHz)"), N_("Ultra-wideband (32kHz)")
};
vlc_module_begin ()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment