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

多媒体编程

开发平台:

Visual C++

  1. /*
  2.  * dts_internal.h
  3.  * Copyright (C) 2004 Gildas Bazin <gbazin@videolan.org>
  4.  * Copyright (C) 2000-2003 Michel Lespinasse <walken@zoy.org>
  5.  * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  6.  *
  7.  * This file is part of dtsdec, a free DTS Coherent Acoustics stream decoder.
  8.  * See http://www.videolan.org/dtsdec.html for updates.
  9.  *
  10.  * dtsdec is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * dtsdec is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  23.  */
  24. #define DTS_SUBFRAMES_MAX (16)
  25. #define DTS_PRIM_CHANNELS_MAX (5)
  26. #define DTS_SUBBANDS (32)
  27. #define DTS_ABITS_MAX (32) /* Should be 28 */
  28. #define DTS_SUBSUBFAMES_MAX (4)
  29. #define DTS_LFE_MAX (3)
  30. struct dts_state_s {
  31.     /* Frame header */
  32.     int frame_type;             /* type of the current frame */
  33.     int samples_deficit;        /* deficit sample count */
  34.     int crc_present;            /* crc is present in the bitstream */
  35.     int sample_blocks;          /* number of PCM sample blocks */
  36.     int frame_size;             /* primary frame byte size */
  37.     int amode;                  /* audio channels arrangement */
  38.     int sample_rate;            /* audio sampling rate */
  39.     int bit_rate;               /* transmission bit rate */
  40.     int downmix;                /* embedded downmix enabled */
  41.     int dynrange;               /* embedded dynamic range flag */
  42.     int timestamp;              /* embedded time stamp flag */
  43.     int aux_data;               /* auxiliary data flag */
  44.     int hdcd;                   /* source material is mastered in HDCD */
  45.     int ext_descr;              /* extension audio descriptor flag */
  46.     int ext_coding;             /* extended coding flag */
  47.     int aspf;                   /* audio sync word insertion flag */
  48.     int lfe;                    /* low frequency effects flag */
  49.     int predictor_history;      /* predictor history flag */
  50.     int header_crc;             /* header crc check bytes */
  51.     int multirate_inter;        /* multirate interpolator switch */
  52.     int version;                /* encoder software revision */
  53.     int copy_history;           /* copy history */
  54.     int source_pcm_res;         /* source pcm resolution */
  55.     int front_sum;              /* front sum/difference flag */
  56.     int surround_sum;           /* surround sum/difference flag */
  57.     int dialog_norm;            /* dialog normalisation parameter */
  58.     /* Primary audio coding header */
  59.     int subframes;              /* number of subframes */
  60.     int prim_channels;          /* number of primary audio channels */
  61.     /* subband activity count */
  62.     int subband_activity[DTS_PRIM_CHANNELS_MAX];
  63.     /* high frequency vq start subband */
  64.     int vq_start_subband[DTS_PRIM_CHANNELS_MAX];
  65.     /* joint intensity coding index */
  66.     int joint_intensity[DTS_PRIM_CHANNELS_MAX];
  67.     /* transient mode code book */
  68.     int transient_huffman[DTS_PRIM_CHANNELS_MAX];
  69.     /* scale factor code book */
  70.     int scalefactor_huffman[DTS_PRIM_CHANNELS_MAX];
  71.     /* bit allocation quantizer select */
  72.     int bitalloc_huffman[DTS_PRIM_CHANNELS_MAX];
  73.     /* quantization index codebook select */
  74.     int quant_index_huffman[DTS_PRIM_CHANNELS_MAX][DTS_ABITS_MAX];
  75.     /* scale factor adjustment */
  76.     float scalefactor_adj[DTS_PRIM_CHANNELS_MAX][DTS_ABITS_MAX];
  77.     /* Primary audio coding side information */
  78.     int subsubframes;           /* number of subsubframes */
  79.     int partial_samples;        /* partial subsubframe samples count */
  80.     /* prediction mode (ADPCM used or not) */
  81.     int prediction_mode[DTS_PRIM_CHANNELS_MAX][DTS_SUBBANDS];
  82.     /* prediction VQ coefs */
  83.     int prediction_vq[DTS_PRIM_CHANNELS_MAX][DTS_SUBBANDS];
  84.     /* bit allocation index */
  85.     int bitalloc[DTS_PRIM_CHANNELS_MAX][DTS_SUBBANDS];
  86.     /* transition mode (transients) */
  87.     int transition_mode[DTS_PRIM_CHANNELS_MAX][DTS_SUBBANDS];
  88.     /* scale factors (2 if transient)*/
  89.     int scale_factor[DTS_PRIM_CHANNELS_MAX][DTS_SUBBANDS][2];
  90.     /* joint subband scale factors codebook */
  91.     int joint_huff[DTS_PRIM_CHANNELS_MAX];
  92.     /* joint subband scale factors */
  93.     int joint_scale_factor[DTS_PRIM_CHANNELS_MAX][DTS_SUBBANDS];
  94.     /* stereo downmix coefficients */
  95.     int downmix_coef[DTS_PRIM_CHANNELS_MAX][2];
  96.     /* dynamic range coefficient */
  97.     int dynrange_coef;
  98.     /* VQ encoded high frequency subbands */
  99.     int high_freq_vq[DTS_PRIM_CHANNELS_MAX][DTS_SUBBANDS];
  100.     /* Low frequency effect data */
  101.     double lfe_data[2*DTS_SUBSUBFAMES_MAX*DTS_LFE_MAX * 2 /*history*/];
  102.     int lfe_scale_factor;
  103.     /* Subband samples history (for ADPCM) */
  104.     double subband_samples_hist[DTS_PRIM_CHANNELS_MAX][DTS_SUBBANDS][4];
  105.     double subband_fir_hist[DTS_PRIM_CHANNELS_MAX][512];
  106.     double subband_fir_noidea[DTS_PRIM_CHANNELS_MAX][64];
  107.     /* Audio output */
  108.     level_t clev;            /* centre channel mix level */
  109.     level_t slev;            /* surround channels mix level */
  110.     int output;              /* type of output */
  111.     level_t level;           /* output level */
  112.     sample_t bias;           /* output bias */
  113.     sample_t * samples;      /* pointer to the internal audio samples buffer */
  114.     int downmixed;
  115.     int dynrnge;             /* apply dynamic range */
  116.     level_t dynrng;          /* dynamic range */
  117.     void * dynrngdata;       /* dynamic range callback funtion and data */
  118.     level_t (* dynrngcall) (level_t range, void * dynrngdata);
  119.     /* Bitstream handling */
  120.     uint32_t * buffer_start;
  121.     uint32_t bits_left;
  122.     uint32_t current_word;
  123.     int      word_mode;         /* 16/14 bits word format (1 -> 16, 0 -> 14) */
  124.     int      bigendian_mode;    /* endianness (1 -> be, 0 -> le) */
  125.     /* Current position in DTS frame */
  126.     int current_subframe;
  127.     int current_subsubframe;
  128.     /* Pre-calculated cosine modulation coefs for the QMF */
  129.     double cos_mod[544];
  130.     /* Debug flag */
  131.     int debug_flag;
  132. };
  133. #define LEVEL_PLUS6DB 2.0
  134. #define LEVEL_PLUS3DB 1.4142135623730951
  135. #define LEVEL_3DB 0.7071067811865476
  136. #define LEVEL_45DB 0.5946035575013605
  137. #define LEVEL_6DB 0.5
  138. int dts_downmix_init (int input, int flags, level_t * level,
  139.                       level_t clev, level_t slev);
  140. int dts_downmix_coeff (level_t * coeff, int acmod, int output, level_t level,
  141.                        level_t clev, level_t slev);
  142. void dts_downmix (sample_t * samples, int acmod, int output, sample_t bias,
  143.                   level_t clev, level_t slev);
  144. void dts_upmix (sample_t * samples, int acmod, int output);
  145. #define ROUND(x) ((int)((x) + ((x) > 0 ? 0.5 : -0.5)))
  146. #ifndef LIBDTS_FIXED
  147. typedef sample_t quantizer_t;
  148. #define SAMPLE(x) (x)
  149. #define LEVEL(x) (x)
  150. #define MUL(a,b) ((a) * (b))
  151. #define MUL_L(a,b) ((a) * (b))
  152. #define MUL_C(a,b) ((a) * (b))
  153. #define DIV(a,b) ((a) / (b))
  154. #define BIAS(x) ((x) + bias)
  155. #else /* LIBDTS_FIXED */
  156. typedef int16_t quantizer_t;
  157. #define SAMPLE(x) (sample_t)((x) * (1 << 30))
  158. #define LEVEL(x) (level_t)((x) * (1 << 26))
  159. #if 0
  160. #define MUL(a,b) ((int)(((int64_t)(a) * (b) + (1 << 29)) >> 30))
  161. #define MUL_L(a,b) ((int)(((int64_t)(a) * (b) + (1 << 25)) >> 26))
  162. #elif 1
  163. #define MUL(a,b) 
  164. ({ int32_t _ta=(a), _tb=(b), _tc; 
  165.    _tc=(_ta & 0xffff)*(_tb >> 16)+(_ta >> 16)*(_tb & 0xffff); (int32_t)(((_tc >> 14))+ (((_ta >> 16)*(_tb >> 16)) << 2 )); })
  166. #define MUL_L(a,b) 
  167. ({ int32_t _ta=(a), _tb=(b), _tc; 
  168.    _tc=(_ta & 0xffff)*(_tb >> 16)+(_ta >> 16)*(_tb & 0xffff); (int32_t)((_tc >> 10) + (((_ta >> 16)*(_tb >> 16)) << 6)); })
  169. #else
  170. #define MUL(a,b) (((a) >> 15) * ((b) >> 15))
  171. #define MUL_L(a,b) (((a) >> 13) * ((b) >> 13))
  172. #endif
  173. #define MUL_C(a,b) MUL_L (a, LEVEL (b))
  174. #define DIV(a,b) ((((int64_t)LEVEL (a)) << 26) / (b))
  175. #define BIAS(x) (x)
  176. #endif