lt_predict.c
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:6k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2. ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
  3. ** Copyright (C) 2003-2005 M. Bakker, Ahead Software AG, http://www.nero.com
  4. **  
  5. ** This program is free software; you can redistribute it and/or modify
  6. ** it under the terms of the GNU General Public License as published by
  7. ** the Free Software Foundation; either version 2 of the License, or
  8. ** (at your option) any later version.
  9. ** 
  10. ** This program is distributed in the hope that it will be useful,
  11. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ** GNU General Public License for more details.
  14. ** 
  15. ** You should have received a copy of the GNU General Public License
  16. ** along with this program; if not, write to the Free Software 
  17. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. **
  19. ** Any non-GPL usage of this software or parts of this software is strictly
  20. ** forbidden.
  21. **
  22. ** Software using this code must display the following message visibly in the
  23. ** software:
  24. ** "FAAD2 AAC/HE-AAC/HE-AACv2/DRM decoder (c) Ahead Software, www.nero.com"
  25. ** in, for example, the about-box or help/startup screen.
  26. **
  27. ** Commercial non-GPL licensing of this software is possible.
  28. ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
  29. **
  30. ** $Id: lt_predict.c,v 1.2 2005/11/01 21:41:43 gabest Exp $
  31. **/
  32. #include "common.h"
  33. #include "structs.h"
  34. #ifdef LTP_DEC
  35. #include <stdlib.h>
  36. #include "syntax.h"
  37. #include "lt_predict.h"
  38. #include "filtbank.h"
  39. #include "tns.h"
  40. /* static function declarations */
  41. static int16_t real_to_int16(real_t sig_in);
  42. /* check if the object type is an object type that can have LTP */
  43. uint8_t is_ltp_ot(uint8_t object_type)
  44. {
  45. #ifdef LTP_DEC
  46.     if ((object_type == LTP)
  47. #ifdef ERROR_RESILIENCE
  48.         || (object_type == ER_LTP)
  49. #endif
  50. #ifdef LD_DEC
  51.         || (object_type == LD)
  52. #endif
  53.         )
  54.     {
  55.         return 1;
  56.     }
  57. #endif
  58.     return 0;
  59. }
  60. ALIGN static const real_t codebook[8] =
  61. {
  62.     REAL_CONST(0.570829),
  63.     REAL_CONST(0.696616),
  64.     REAL_CONST(0.813004),
  65.     REAL_CONST(0.911304),
  66.     REAL_CONST(0.984900),
  67.     REAL_CONST(1.067894),
  68.     REAL_CONST(1.194601),
  69.     REAL_CONST(1.369533)
  70. };
  71. void lt_prediction(ic_stream *ics, ltp_info *ltp, real_t *spec,
  72.                    int16_t *lt_pred_stat, fb_info *fb, uint8_t win_shape,
  73.                    uint8_t win_shape_prev, uint8_t sr_index,
  74.                    uint8_t object_type, uint16_t frame_len)
  75. {
  76.     uint8_t sfb;
  77.     uint16_t bin, i, num_samples;
  78.     ALIGN real_t x_est[2048];
  79.     ALIGN real_t X_est[2048];
  80.     if (ics->window_sequence != EIGHT_SHORT_SEQUENCE)
  81.     {
  82.         if (ltp->data_present)
  83.         {
  84.             num_samples = frame_len << 1;
  85.             for(i = 0; i < num_samples; i++)
  86.             {
  87.                 /* The extra lookback M (N/2 for LD, 0 for LTP) is handled
  88.                    in the buffer updating */
  89. #if 0
  90.                 x_est[i] = MUL_R_C(lt_pred_stat[num_samples + i - ltp->lag],
  91.                     codebook[ltp->coef]);
  92. #else
  93.                 /* lt_pred_stat is a 16 bit int, multiplied with the fixed point real
  94.                    this gives a real for x_est
  95.                 */
  96.                 x_est[i] = (real_t)lt_pred_stat[num_samples + i - ltp->lag] * codebook[ltp->coef];
  97. #endif
  98.             }
  99.             filter_bank_ltp(fb, ics->window_sequence, win_shape, win_shape_prev,
  100.                 x_est, X_est, object_type, frame_len);
  101.             tns_encode_frame(ics, &(ics->tns), sr_index, object_type, X_est,
  102.                 frame_len);
  103.             for (sfb = 0; sfb < ltp->last_band; sfb++)
  104.             {
  105.                 if (ltp->long_used[sfb])
  106.                 {
  107.                     uint16_t low  = ics->swb_offset[sfb];
  108.                     uint16_t high = ics->swb_offset[sfb+1];
  109.                     for (bin = low; bin < high; bin++)
  110.                     {
  111.                         spec[bin] += X_est[bin];
  112.                     }
  113.                 }
  114.             }
  115.         }
  116.     }
  117. }
  118. #ifdef FIXED_POINT
  119. static INLINE int16_t real_to_int16(real_t sig_in)
  120. {
  121.     if (sig_in >= 0)
  122.     {
  123.         sig_in += (1 << (REAL_BITS-1));
  124.         if (sig_in >= REAL_CONST(32768))
  125.             return 32767;
  126.     } else {
  127.         sig_in += -(1 << (REAL_BITS-1));
  128.         if (sig_in <= REAL_CONST(-32768))
  129.             return -32768;
  130.     }
  131.     return (sig_in >> REAL_BITS);
  132. }
  133. #else
  134. static INLINE int16_t real_to_int16(real_t sig_in)
  135. {
  136.     if (sig_in >= 0)
  137.     {
  138. #ifndef HAS_LRINTF
  139.         sig_in += 0.5f;
  140. #endif
  141.         if (sig_in >= 32768.0f)
  142.             return 32767;
  143.     } else {
  144. #ifndef HAS_LRINTF
  145.         sig_in += -0.5f;
  146. #endif
  147.         if (sig_in <= -32768.0f)
  148.             return -32768;
  149.     }
  150.     return lrintf(sig_in);
  151. }
  152. #endif
  153. void lt_update_state(int16_t *lt_pred_stat, real_t *time, real_t *overlap,
  154.                      uint16_t frame_len, uint8_t object_type)
  155. {
  156.     uint16_t i;
  157.     /*
  158.      * The reference point for index i and the content of the buffer
  159.      * lt_pred_stat are arranged so that lt_pred_stat(0 ... N/2 - 1) contains the
  160.      * last aliased half window from the IMDCT, and lt_pred_stat(N/2 ... N-1)
  161.      * is always all zeros. The rest of lt_pred_stat (i<0) contains the previous
  162.      * fully reconstructed time domain samples, i.e., output of the decoder.
  163.      *
  164.      * These values are shifted up by N*2 to avoid (i<0)
  165.      *
  166.      * For the LD object type an extra 512 samples lookback is accomodated here.
  167.      */
  168. #ifdef LD_DEC
  169.     if (object_type == LD)
  170.     {
  171.         for (i = 0; i < frame_len; i++)
  172.         {
  173.             lt_pred_stat[i]  /* extra 512 */  = lt_pred_stat[i + frame_len];
  174.             lt_pred_stat[frame_len + i]       = lt_pred_stat[i + (frame_len * 2)];
  175.             lt_pred_stat[(frame_len * 2) + i] = real_to_int16(time[i]);
  176.             lt_pred_stat[(frame_len * 3) + i] = real_to_int16(overlap[i]);
  177.         }
  178.     } else {
  179. #endif
  180.         for (i = 0; i < frame_len; i++)
  181.         {
  182.             lt_pred_stat[i]                   = lt_pred_stat[i + frame_len];
  183.             lt_pred_stat[frame_len + i]       = real_to_int16(time[i]);
  184.             lt_pred_stat[(frame_len * 2) + i] = real_to_int16(overlap[i]);
  185. #if 0 /* set to zero once upon initialisation */
  186.             lt_pred_stat[(frame_len * 3) + i] = 0;
  187. #endif
  188.         }
  189. #ifdef LD_DEC
  190.     }
  191. #endif
  192. }
  193. #endif