]> git.sesse.net Git - vlc/commitdiff
speex: deduce mode from rate when decoding rtp
authorTristan Matthews <le.businessman@gmail.com>
Mon, 21 Apr 2014 04:29:54 +0000 (00:29 -0400)
committerTristan Matthews <le.businessman@gmail.com>
Mon, 21 Apr 2014 15:02:17 +0000 (11:02 -0400)
Fixes #5178

modules/codec/speex.c

index f3660556bface042ed223f2bffd67a9b20818549..90d773a88d268fd034b36d70dddb78aa82e1068c 100644 (file)
@@ -650,9 +650,12 @@ static block_t *DecodeRtpSpeexPacket( decoder_t *p_dec, block_t **pp_block )
             msg_Err( p_dec, "Could not allocate a Speex header.");
             return NULL;
         }
-        speex_init_header( p_sys->p_header,p_sys->rtp_rate,1,&speex_nb_mode );
+
+        const SpeexMode *mode = speex_lib_get_mode((p_sys->rtp_rate / 8000) >> 1);
+
+        speex_init_header( p_sys->p_header,p_sys->rtp_rate, 1, mode );
             speex_bits_init( &p_sys->bits );
-        p_sys->p_state = speex_decoder_init( &speex_nb_mode );
+        p_sys->p_state = speex_decoder_init( mode );
         if ( !p_sys->p_state )
         {
             msg_Err( p_dec, "Could not allocate a Speex decoder." );