@@ -246,7 +246,7 @@ void opus_custom_decoder_destroy(CELTDecoder *st)
246
246
/* Special case for stereo with no downsampling and no accumulation. This is
247
247
quite common and we can make it faster by processing both channels in the
248
248
same loop, reducing overhead due to the dependency loop in the IIR filter. */
249
- static void deemphasis_stereo_simple (celt_sig * in [], opus_val16 * pcm , int N , const opus_val16 coef0 ,
249
+ static void deemphasis_stereo_simple (celt_sig * in [], opus_res * pcm , int N , const opus_val16 coef0 ,
250
250
celt_sig * mem )
251
251
{
252
252
celt_sig * OPUS_RESTRICT x0 ;
@@ -265,8 +265,8 @@ static void deemphasis_stereo_simple(celt_sig *in[], opus_val16 *pcm, int N, con
265
265
tmp1 = SATURATE (x1 [j ] + VERY_SMALL + m1 , SIG_SAT );
266
266
m0 = MULT16_32_Q15 (coef0 , tmp0 );
267
267
m1 = MULT16_32_Q15 (coef0 , tmp1 );
268
- pcm [2 * j ] = SCALEOUT ( SIG2WORD16 ( tmp0 ) );
269
- pcm [2 * j + 1 ] = SCALEOUT ( SIG2WORD16 ( tmp1 ) );
268
+ pcm [2 * j ] = SIG2RES ( tmp0 );
269
+ pcm [2 * j + 1 ] = SIG2RES ( tmp1 );
270
270
}
271
271
mem [0 ] = m0 ;
272
272
mem [1 ] = m1 ;
@@ -276,7 +276,7 @@ static void deemphasis_stereo_simple(celt_sig *in[], opus_val16 *pcm, int N, con
276
276
#ifndef RESYNTH
277
277
static
278
278
#endif
279
- void deemphasis (celt_sig * in [], opus_val16 * pcm , int N , int C , int downsample , const opus_val16 * coef ,
279
+ void deemphasis (celt_sig * in [], opus_res * pcm , int N , int C , int downsample , const opus_val16 * coef ,
280
280
celt_sig * mem , int accum )
281
281
{
282
282
int c ;
@@ -292,18 +292,14 @@ void deemphasis(celt_sig *in[], opus_val16 *pcm, int N, int C, int downsample, c
292
292
deemphasis_stereo_simple (in , pcm , N , coef [0 ], mem );
293
293
return ;
294
294
}
295
- #endif
296
- #ifndef FIXED_POINT
297
- (void )accum ;
298
- celt_assert (accum == 0 );
299
295
#endif
300
296
ALLOC (scratch , N , celt_sig );
301
297
coef0 = coef [0 ];
302
298
Nd = N /downsample ;
303
299
c = 0 ; do {
304
300
int j ;
305
301
celt_sig * OPUS_RESTRICT x ;
306
- opus_val16 * OPUS_RESTRICT y ;
302
+ opus_res * OPUS_RESTRICT y ;
307
303
celt_sig m = mem [c ];
308
304
x = in [c ];
309
305
y = pcm + c ;
@@ -335,23 +331,21 @@ void deemphasis(celt_sig *in[], opus_val16 *pcm, int N, int C, int downsample, c
335
331
apply_downsampling = 1 ;
336
332
} else {
337
333
/* Shortcut for the standard (non-custom modes) case */
338
- #ifdef FIXED_POINT
339
334
if (accum )
340
335
{
341
336
for (j = 0 ;j < N ;j ++ )
342
337
{
343
338
celt_sig tmp = SATURATE (x [j ] + m + VERY_SMALL , SIG_SAT );
344
339
m = MULT16_32_Q15 (coef0 , tmp );
345
- y [j * C ] = SAT16 ( ADD32 ( y [j * C ], SCALEOUT ( SIG2WORD16 ( tmp )) ));
340
+ y [j * C ] = ADD_RES ( y [j * C ], SIG2RES ( tmp ));
346
341
}
347
342
} else
348
- #endif
349
343
{
350
344
for (j = 0 ;j < N ;j ++ )
351
345
{
352
346
celt_sig tmp = SATURATE (x [j ] + VERY_SMALL + m , SIG_SAT );
353
347
m = MULT16_32_Q15 (coef0 , tmp );
354
- y [j * C ] = SCALEOUT ( SIG2WORD16 ( tmp ) );
348
+ y [j * C ] = SIG2RES ( tmp );
355
349
}
356
350
}
357
351
}
@@ -360,16 +354,14 @@ void deemphasis(celt_sig *in[], opus_val16 *pcm, int N, int C, int downsample, c
360
354
if (apply_downsampling )
361
355
{
362
356
/* Perform down-sampling */
363
- #ifdef FIXED_POINT
364
357
if (accum )
365
358
{
366
359
for (j = 0 ;j < Nd ;j ++ )
367
- y [j * C ] = SAT16 ( ADD32 ( y [j * C ], SCALEOUT ( SIG2WORD16 ( scratch [j * downsample ])) ));
360
+ y [j * C ] = ADD_RES ( y [j * C ], SIG2RES ( scratch [j * downsample ]));
368
361
} else
369
- #endif
370
362
{
371
363
for (j = 0 ;j < Nd ;j ++ )
372
- y [j * C ] = SCALEOUT ( SIG2WORD16 ( scratch [j * downsample ]) );
364
+ y [j * C ] = SIG2RES ( scratch [j * downsample ]);
373
365
}
374
366
}
375
367
} while (++ c < C );
@@ -968,7 +960,7 @@ static void celt_decode_lost(CELTDecoder * OPUS_RESTRICT st, int N, int LM
968
960
}
969
961
970
962
int celt_decode_with_ec_dred (CELTDecoder * OPUS_RESTRICT st , const unsigned char * data ,
971
- int len , opus_val16 * OPUS_RESTRICT pcm , int frame_size , ec_dec * dec , int accum
963
+ int len , opus_res * OPUS_RESTRICT pcm , int frame_size , ec_dec * dec , int accum
972
964
#ifdef ENABLE_DEEP_PLC
973
965
,LPCNetPLCState * lpcnet
974
966
#endif
@@ -1369,7 +1361,7 @@ int celt_decode_with_ec_dred(CELTDecoder * OPUS_RESTRICT st, const unsigned char
1369
1361
}
1370
1362
1371
1363
int celt_decode_with_ec (CELTDecoder * OPUS_RESTRICT st , const unsigned char * data ,
1372
- int len , opus_val16 * OPUS_RESTRICT pcm , int frame_size , ec_dec * dec , int accum )
1364
+ int len , opus_res * OPUS_RESTRICT pcm , int frame_size , ec_dec * dec , int accum )
1373
1365
{
1374
1366
return celt_decode_with_ec_dred (st , data , len , pcm , frame_size , dec , accum
1375
1367
#ifdef ENABLE_DEEP_PLC
@@ -1381,16 +1373,40 @@ int celt_decode_with_ec(CELTDecoder * OPUS_RESTRICT st, const unsigned char *dat
1381
1373
#ifdef CUSTOM_MODES
1382
1374
1383
1375
#ifdef FIXED_POINT
1376
+ #ifdef ENABLE_RES24
1377
+ int opus_custom_decode (CELTDecoder * OPUS_RESTRICT st , const unsigned char * data , int len , opus_int16 * OPUS_RESTRICT pcm , int frame_size )
1378
+ {
1379
+ int j , ret , C , N ;
1380
+ VARDECL (opus_res , out );
1381
+ ALLOC_STACK ;
1382
+
1383
+ if (pcm == NULL )
1384
+ return OPUS_BAD_ARG ;
1385
+
1386
+ C = st -> channels ;
1387
+ N = frame_size ;
1388
+
1389
+ ALLOC (out , C * N , opus_res );
1390
+ ret = celt_decode_with_ec (st , data , len , out , frame_size , NULL , 0 );
1391
+ if (ret > 0 )
1392
+ for (j = 0 ;j < C * ret ;j ++ )
1393
+ pcm [j ]= RES2INT16 (out [j ]);
1394
+
1395
+ RESTORE_STACK ;
1396
+ return ret ;
1397
+ }
1398
+ #else
1384
1399
int opus_custom_decode (CELTDecoder * OPUS_RESTRICT st , const unsigned char * data , int len , opus_int16 * OPUS_RESTRICT pcm , int frame_size )
1385
1400
{
1386
1401
return celt_decode_with_ec (st , data , len , pcm , frame_size , NULL , 0 );
1387
1402
}
1403
+ #endif
1388
1404
1389
1405
#ifndef DISABLE_FLOAT_API
1390
1406
int opus_custom_decode_float (CELTDecoder * OPUS_RESTRICT st , const unsigned char * data , int len , float * OPUS_RESTRICT pcm , int frame_size )
1391
1407
{
1392
1408
int j , ret , C , N ;
1393
- VARDECL (opus_int16 , out );
1409
+ VARDECL (opus_res , out );
1394
1410
ALLOC_STACK ;
1395
1411
1396
1412
if (pcm == NULL )
@@ -1399,11 +1415,11 @@ int opus_custom_decode_float(CELTDecoder * OPUS_RESTRICT st, const unsigned char
1399
1415
C = st -> channels ;
1400
1416
N = frame_size ;
1401
1417
1402
- ALLOC (out , C * N , opus_int16 );
1418
+ ALLOC (out , C * N , opus_res );
1403
1419
ret = celt_decode_with_ec (st , data , len , out , frame_size , NULL , 0 );
1404
1420
if (ret > 0 )
1405
1421
for (j = 0 ;j < C * ret ;j ++ )
1406
- pcm [j ]= out [j ]* ( 1.f / 32768.f );
1422
+ pcm [j ]= RES2FLOAT ( out [j ]);
1407
1423
1408
1424
RESTORE_STACK ;
1409
1425
return ret ;
@@ -1434,7 +1450,7 @@ int opus_custom_decode(CELTDecoder * OPUS_RESTRICT st, const unsigned char *data
1434
1450
1435
1451
if (ret > 0 )
1436
1452
for (j = 0 ;j < C * ret ;j ++ )
1437
- pcm [j ] = FLOAT2INT16 (out [j ]);
1453
+ pcm [j ] = RES2INT16 (out [j ]);
1438
1454
1439
1455
RESTORE_STACK ;
1440
1456
return ret ;
0 commit comments