| OLD | NEW |
| (Empty) | |
| 1 /*********************************************************************** |
| 2 Copyright (c) 2006-2011, Skype Limited. All rights reserved. |
| 3 Redistribution and use in source and binary forms, with or without |
| 4 modification, are permitted provided that the following conditions |
| 5 are met: |
| 6 - Redistributions of source code must retain the above copyright notice, |
| 7 this list of conditions and the following disclaimer. |
| 8 - Redistributions in binary form must reproduce the above copyright |
| 9 notice, this list of conditions and the following disclaimer in the |
| 10 documentation and/or other materials provided with the distribution. |
| 11 - Neither the name of Internet Society, IETF or IETF Trust, nor the |
| 12 names of specific contributors, may be used to endorse or promote |
| 13 products derived from this software without specific prior written |
| 14 permission. |
| 15 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” |
| 16 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 17 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 18 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
| 19 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 20 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 21 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 22 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 23 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 25 POSSIBILITY OF SUCH DAMAGE. |
| 26 ***********************************************************************/ |
| 27 |
| 28 #ifdef HAVE_CONFIG_H |
| 29 #include "config.h" |
| 30 #endif |
| 31 |
| 32 #include "main.h" |
| 33 #include "PLC.h" |
| 34 |
| 35 /****************/ |
| 36 /* Decode frame */ |
| 37 /****************/ |
| 38 opus_int silk_decode_frame( |
| 39 silk_decoder_state *psDec, /* I/O Pointer
to Silk decoder state */ |
| 40 ec_dec *psRangeDec, /* I/O Compress
or data structure */ |
| 41 opus_int16 pOut[], /* O Pointer
to output speech frame */ |
| 42 opus_int32 *pN, /* O Pointer
to size of output frame */ |
| 43 opus_int lostFlag, /* I 0: no lo
ss, 1 loss, 2 decode fec */ |
| 44 opus_int condCoding /* I The type
of conditional coding to use */ |
| 45 ) |
| 46 { |
| 47 silk_decoder_control sDecCtrl; |
| 48 opus_int L, mv_len, ret = 0; |
| 49 opus_int pulses[ MAX_FRAME_LENGTH ]; |
| 50 |
| 51 L = psDec->frame_length; |
| 52 sDecCtrl.LTP_scale_Q14 = 0; |
| 53 |
| 54 /* Safety checks */ |
| 55 silk_assert( L > 0 && L <= MAX_FRAME_LENGTH ); |
| 56 |
| 57 if( lostFlag == FLAG_DECODE_NORMAL || |
| 58 ( lostFlag == FLAG_DECODE_LBRR && psDec->LBRR_flags[ psDec->nFramesDecod
ed ] == 1 ) ) |
| 59 { |
| 60 /*********************************************/ |
| 61 /* Decode quantization indices of side info */ |
| 62 /*********************************************/ |
| 63 silk_decode_indices( psDec, psRangeDec, psDec->nFramesDecoded, lostFlag,
condCoding ); |
| 64 |
| 65 /*********************************************/ |
| 66 /* Decode quantization indices of excitation */ |
| 67 /*********************************************/ |
| 68 silk_decode_pulses( psRangeDec, pulses, psDec->indices.signalType, |
| 69 psDec->indices.quantOffsetType, psDec->frame_length ); |
| 70 |
| 71 /********************************************/ |
| 72 /* Decode parameters and pulse signal */ |
| 73 /********************************************/ |
| 74 silk_decode_parameters( psDec, &sDecCtrl, condCoding ); |
| 75 |
| 76 /* Update length. Sampling frequency may have changed */ |
| 77 L = psDec->frame_length; |
| 78 |
| 79 /********************************************************/ |
| 80 /* Run inverse NSQ */ |
| 81 /********************************************************/ |
| 82 silk_decode_core( psDec, &sDecCtrl, pOut, pulses ); |
| 83 |
| 84 /********************************************************/ |
| 85 /* Update PLC state */ |
| 86 /********************************************************/ |
| 87 silk_PLC( psDec, &sDecCtrl, pOut, 0 ); |
| 88 |
| 89 psDec->lossCnt = 0; |
| 90 psDec->prevSignalType = psDec->indices.signalType; |
| 91 silk_assert( psDec->prevSignalType >= 0 && psDec->prevSignalType <= 2 ); |
| 92 |
| 93 /* A frame has been decoded without errors */ |
| 94 psDec->first_frame_after_reset = 0; |
| 95 } else { |
| 96 /* Handle packet loss by extrapolation */ |
| 97 silk_PLC( psDec, &sDecCtrl, pOut, 1 ); |
| 98 } |
| 99 |
| 100 /*************************/ |
| 101 /* Update output buffer. */ |
| 102 /*************************/ |
| 103 silk_assert( psDec->ltp_mem_length >= psDec->frame_length ); |
| 104 mv_len = psDec->ltp_mem_length - psDec->frame_length; |
| 105 silk_memmove( psDec->outBuf, &psDec->outBuf[ psDec->frame_length ], mv_len *
sizeof(opus_int16) ); |
| 106 silk_memcpy( &psDec->outBuf[ mv_len ], pOut, psDec->frame_length * sizeof( o
pus_int16 ) ); |
| 107 |
| 108 /****************************************************************/ |
| 109 /* Ensure smooth connection of extrapolated and good frames */ |
| 110 /****************************************************************/ |
| 111 silk_PLC_glue_frames( psDec, pOut, L ); |
| 112 |
| 113 /************************************************/ |
| 114 /* Comfort noise generation / estimation */ |
| 115 /************************************************/ |
| 116 silk_CNG( psDec, &sDecCtrl, pOut, L ); |
| 117 |
| 118 /* Update some decoder state variables */ |
| 119 psDec->lagPrev = sDecCtrl.pitchL[ psDec->nb_subfr - 1 ]; |
| 120 |
| 121 /* Set output frame length */ |
| 122 *pN = L; |
| 123 |
| 124 return ret; |
| 125 } |
| OLD | NEW |