Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Side by Side Diff: silk/decode_frame.c

Issue 12388030: Update Opus to 1.0.2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/opus
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « silk/decode_core.c ('k') | silk/enc_API.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /*********************************************************************** 1 /***********************************************************************
2 Copyright (c) 2006-2011, Skype Limited. All rights reserved. 2 Copyright (c) 2006-2011, Skype Limited. All rights reserved.
3 Redistribution and use in source and binary forms, with or without 3 Redistribution and use in source and binary forms, with or without
4 modification, are permitted provided that the following conditions 4 modification, are permitted provided that the following conditions
5 are met: 5 are met:
6 - Redistributions of source code must retain the above copyright notice, 6 - Redistributions of source code must retain the above copyright notice,
7 this list of conditions and the following disclaimer. 7 this list of conditions and the following disclaimer.
8 - Redistributions in binary form must reproduce the above copyright 8 - Redistributions in binary form must reproduce the above copyright
9 notice, this list of conditions and the following disclaimer in the 9 notice, this list of conditions and the following disclaimer in the
10 documentation and/or other materials provided with the distribution. 10 documentation and/or other materials provided with the distribution.
(...skipping 12 matching lines...) Expand all
23 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 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 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 POSSIBILITY OF SUCH DAMAGE. 25 POSSIBILITY OF SUCH DAMAGE.
26 ***********************************************************************/ 26 ***********************************************************************/
27 27
28 #ifdef HAVE_CONFIG_H 28 #ifdef HAVE_CONFIG_H
29 #include "config.h" 29 #include "config.h"
30 #endif 30 #endif
31 31
32 #include "main.h" 32 #include "main.h"
33 #include "stack_alloc.h"
33 #include "PLC.h" 34 #include "PLC.h"
34 35
35 /****************/ 36 /****************/
36 /* Decode frame */ 37 /* Decode frame */
37 /****************/ 38 /****************/
38 opus_int silk_decode_frame( 39 opus_int silk_decode_frame(
39 silk_decoder_state *psDec, /* I/O Pointer to Silk decoder state */ 40 silk_decoder_state *psDec, /* I/O Pointer to Silk decoder state */
40 ec_dec *psRangeDec, /* I/O Compress or data structure */ 41 ec_dec *psRangeDec, /* I/O Compress or data structure */
41 opus_int16 pOut[], /* O Pointer to output speech frame */ 42 opus_int16 pOut[], /* O Pointer to output speech frame */
42 opus_int32 *pN, /* O Pointer to size of output frame */ 43 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 lostFlag, /* I 0: no lo ss, 1 loss, 2 decode fec */
44 opus_int condCoding /* I The type of conditional coding to use */ 45 opus_int condCoding /* I The type of conditional coding to use */
45 ) 46 )
46 { 47 {
47 silk_decoder_control sDecCtrl; 48 VARDECL( silk_decoder_control, psDecCtrl );
48 opus_int L, mv_len, ret = 0; 49 opus_int L, mv_len, ret = 0;
49 opus_int pulses[ MAX_FRAME_LENGTH ]; 50 VARDECL( opus_int, pulses );
51 SAVE_STACK;
50 52
51 L = psDec->frame_length; 53 L = psDec->frame_length;
52 sDecCtrl.LTP_scale_Q14 = 0; 54 ALLOC( psDecCtrl, 1, silk_decoder_control );
55 ALLOC( pulses, (L + SHELL_CODEC_FRAME_LENGTH - 1) &
56 ~(SHELL_CODEC_FRAME_LENGTH - 1), opus_int );
57 psDecCtrl->LTP_scale_Q14 = 0;
53 58
54 /* Safety checks */ 59 /* Safety checks */
55 silk_assert( L > 0 && L <= MAX_FRAME_LENGTH ); 60 silk_assert( L > 0 && L <= MAX_FRAME_LENGTH );
56 61
57 if( lostFlag == FLAG_DECODE_NORMAL || 62 if( lostFlag == FLAG_DECODE_NORMAL ||
58 ( lostFlag == FLAG_DECODE_LBRR && psDec->LBRR_flags[ psDec->nFramesDecod ed ] == 1 ) ) 63 ( lostFlag == FLAG_DECODE_LBRR && psDec->LBRR_flags[ psDec->nFramesDecod ed ] == 1 ) )
59 { 64 {
60 /*********************************************/ 65 /*********************************************/
61 /* Decode quantization indices of side info */ 66 /* Decode quantization indices of side info */
62 /*********************************************/ 67 /*********************************************/
63 silk_decode_indices( psDec, psRangeDec, psDec->nFramesDecoded, lostFlag, condCoding ); 68 silk_decode_indices( psDec, psRangeDec, psDec->nFramesDecoded, lostFlag, condCoding );
64 69
65 /*********************************************/ 70 /*********************************************/
66 /* Decode quantization indices of excitation */ 71 /* Decode quantization indices of excitation */
67 /*********************************************/ 72 /*********************************************/
68 silk_decode_pulses( psRangeDec, pulses, psDec->indices.signalType, 73 silk_decode_pulses( psRangeDec, pulses, psDec->indices.signalType,
69 psDec->indices.quantOffsetType, psDec->frame_length ); 74 psDec->indices.quantOffsetType, psDec->frame_length );
70 75
71 /********************************************/ 76 /********************************************/
72 /* Decode parameters and pulse signal */ 77 /* Decode parameters and pulse signal */
73 /********************************************/ 78 /********************************************/
74 silk_decode_parameters( psDec, &sDecCtrl, condCoding ); 79 silk_decode_parameters( psDec, psDecCtrl, condCoding );
75
76 /* Update length. Sampling frequency may have changed */
77 L = psDec->frame_length;
78 80
79 /********************************************************/ 81 /********************************************************/
80 /* Run inverse NSQ */ 82 /* Run inverse NSQ */
81 /********************************************************/ 83 /********************************************************/
82 silk_decode_core( psDec, &sDecCtrl, pOut, pulses ); 84 silk_decode_core( psDec, psDecCtrl, pOut, pulses );
83 85
84 /********************************************************/ 86 /********************************************************/
85 /* Update PLC state */ 87 /* Update PLC state */
86 /********************************************************/ 88 /********************************************************/
87 silk_PLC( psDec, &sDecCtrl, pOut, 0 ); 89 silk_PLC( psDec, psDecCtrl, pOut, 0 );
88 90
89 psDec->lossCnt = 0; 91 psDec->lossCnt = 0;
90 psDec->prevSignalType = psDec->indices.signalType; 92 psDec->prevSignalType = psDec->indices.signalType;
91 silk_assert( psDec->prevSignalType >= 0 && psDec->prevSignalType <= 2 ); 93 silk_assert( psDec->prevSignalType >= 0 && psDec->prevSignalType <= 2 );
92 94
93 /* A frame has been decoded without errors */ 95 /* A frame has been decoded without errors */
94 psDec->first_frame_after_reset = 0; 96 psDec->first_frame_after_reset = 0;
95 } else { 97 } else {
96 /* Handle packet loss by extrapolation */ 98 /* Handle packet loss by extrapolation */
97 silk_PLC( psDec, &sDecCtrl, pOut, 1 ); 99 silk_PLC( psDec, psDecCtrl, pOut, 1 );
98 } 100 }
99 101
100 /*************************/ 102 /*************************/
101 /* Update output buffer. */ 103 /* Update output buffer. */
102 /*************************/ 104 /*************************/
103 silk_assert( psDec->ltp_mem_length >= psDec->frame_length ); 105 silk_assert( psDec->ltp_mem_length >= psDec->frame_length );
104 mv_len = psDec->ltp_mem_length - psDec->frame_length; 106 mv_len = psDec->ltp_mem_length - psDec->frame_length;
105 silk_memmove( psDec->outBuf, &psDec->outBuf[ psDec->frame_length ], mv_len * sizeof(opus_int16) ); 107 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 ) ); 108 silk_memcpy( &psDec->outBuf[ mv_len ], pOut, psDec->frame_length * sizeof( o pus_int16 ) );
107 109
108 /****************************************************************/ 110 /****************************************************************/
109 /* Ensure smooth connection of extrapolated and good frames */ 111 /* Ensure smooth connection of extrapolated and good frames */
110 /****************************************************************/ 112 /****************************************************************/
111 silk_PLC_glue_frames( psDec, pOut, L ); 113 silk_PLC_glue_frames( psDec, pOut, L );
112 114
113 /************************************************/ 115 /************************************************/
114 /* Comfort noise generation / estimation */ 116 /* Comfort noise generation / estimation */
115 /************************************************/ 117 /************************************************/
116 silk_CNG( psDec, &sDecCtrl, pOut, L ); 118 silk_CNG( psDec, psDecCtrl, pOut, L );
117 119
118 /* Update some decoder state variables */ 120 /* Update some decoder state variables */
119 psDec->lagPrev = sDecCtrl.pitchL[ psDec->nb_subfr - 1 ]; 121 psDec->lagPrev = psDecCtrl->pitchL[ psDec->nb_subfr - 1 ];
120 122
121 /* Set output frame length */ 123 /* Set output frame length */
122 *pN = L; 124 *pN = L;
123 125
126 RESTORE_STACK;
124 return ret; 127 return ret;
125 } 128 }
OLDNEW
« no previous file with comments | « silk/decode_core.c ('k') | silk/enc_API.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698