shithub: opus

Download patch

ref: ec1ebf8ad744f0e7060c839a019c0a9806bd3e85
parent: a7585a0dd1ad7cb668937e89d4334b36b8654684
author: Jean-Marc Valin <[email protected]>
date: Mon Oct 24 16:07:00 EDT 2011

Fixes a bug on FEC+stereo

When FEC is enabled in the decoder but not included in the bit-stream
we could end up applying the PLC on a non-existant side.

--- a/silk/dec_API.c
+++ b/silk/dec_API.c
@@ -89,6 +89,7 @@
     opus_int16 *resample_out_ptr;
     silk_decoder *psDec = ( silk_decoder * )decState;
     silk_decoder_state *channel_state = psDec->channel_state;
+    opus_int has_side;
 
     /**********************************/
     /* Test if first frame in payload */
@@ -236,9 +237,15 @@
         psDec->channel_state[ 1 ].first_frame_after_reset = 1;
     }
 
+    if (lostFlag == FLAG_DECODE_NORMAL) {
+        has_side = !decode_only_middle;
+    } else {
+        has_side = !psDec->prev_decode_only_middle
+              || (decControl->nChannelsInternal == 2 && lostFlag == FLAG_DECODE_LBRR && channel_state[1].LBRR_flags[ channel_state[1].nFramesDecoded ] == 1 );
+    }
     /* Call decoder for one frame */
     for( n = 0; n < decControl->nChannelsInternal; n++ ) {
-        if( n == 0 || ( ( lostFlag != FLAG_PACKET_LOST ? decode_only_middle : psDec->prev_decode_only_middle ) == 0 ) ) {
+        if( n == 0 || has_side ) {
             opus_int FrameIndex;
             opus_int condCoding;