wmadec.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:5k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*
  2.  * WMA compatible decoder
  3.  * Copyright (c) 2002 The FFmpeg Project.
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2 of the License, or (at your option) any later version.
  9.  *
  10.  * This library 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 GNU
  13.  * Lesser General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  */
  19. #ifndef _WMADEC_H
  20. #define _WMADEC_H
  21. #include <inttypes.h>
  22. #include "asf.h"
  23. #include "bitstream.h" /* For GetBitContext */
  24. #include "mdct.h"
  25. #undef TRACE
  26. /* size of blocks */
  27. #define BLOCK_MIN_BITS 7
  28. #define BLOCK_MAX_BITS 11
  29. #define BLOCK_MAX_SIZE (1 << BLOCK_MAX_BITS)
  30. #define BLOCK_NB_SIZES (BLOCK_MAX_BITS - BLOCK_MIN_BITS + 1)
  31. /* XXX: find exact max size */
  32. #define HIGH_BAND_MAX_SIZE 16
  33. #define NB_LSP_COEFS 10
  34. /* XXX: is it a suitable value ? */
  35. #define MAX_CODED_SUPERFRAME_SIZE 16384
  36. #define M_PI    3.14159265358979323846
  37. #define M_PI_F  0x3243f // in fixed 32 format
  38. #define TWO_M_PI_F  0x6487f   //in fixed 32
  39. #define MAX_CHANNELS 2
  40. #define NOISE_TAB_SIZE 8192
  41. #define LSP_POW_BITS 7
  42. typedef struct WMADecodeContext
  43. {
  44.     GetBitContext gb;
  45.     int nb_block_sizes;  /* number of block sizes */
  46.     int sample_rate;
  47.     int nb_channels;
  48.     int bit_rate;
  49.     int version; /* 1 = 0x160 (WMAV1), 2 = 0x161 (WMAV2) */
  50.     int block_align;
  51.     int use_bit_reservoir;
  52.     int use_variable_block_len;
  53.     int use_exp_vlc;  /* exponent coding: 0 = lsp, 1 = vlc + delta */
  54.     int use_noise_coding; /* true if perceptual noise is added */
  55.     int byte_offset_bits;
  56.     VLC exp_vlc;
  57.     int exponent_sizes[BLOCK_NB_SIZES];
  58.     uint16_t exponent_bands[BLOCK_NB_SIZES][25];
  59.     int high_band_start[BLOCK_NB_SIZES]; /* index of first coef in high band */
  60.     int coefs_start;               /* first coded coef */
  61.     int coefs_end[BLOCK_NB_SIZES]; /* max number of coded coefficients */
  62.     int exponent_high_sizes[BLOCK_NB_SIZES];
  63.     int exponent_high_bands[BLOCK_NB_SIZES][HIGH_BAND_MAX_SIZE];
  64.     VLC hgain_vlc;
  65.     /* coded values in high bands */
  66.     int high_band_coded[MAX_CHANNELS][HIGH_BAND_MAX_SIZE];
  67.     int high_band_values[MAX_CHANNELS][HIGH_BAND_MAX_SIZE];
  68.     /* there are two possible tables for spectral coefficients */
  69.     VLC coef_vlc[2];
  70.     uint16_t *run_table[2];
  71.     uint16_t *level_table[2];
  72.     /* frame info */
  73.     int frame_len;       /* frame length in samples */
  74.     int frame_len_bits;  /* frame_len = 1 << frame_len_bits */
  75.     /* block info */
  76.     int reset_block_lengths;
  77.     int block_len_bits; /* log2 of current block length */
  78.     int next_block_len_bits; /* log2 of next block length */
  79.     int prev_block_len_bits; /* log2 of prev block length */
  80.     int block_len; /* block length in samples */
  81.     int block_num; /* block number in current frame */
  82.     int block_pos; /* current position in frame */
  83.     uint8_t ms_stereo; /* true if mid/side stereo mode */
  84.     uint8_t channel_coded[MAX_CHANNELS]; /* true if channel is coded */
  85.     int exponents_bsize[MAX_CHANNELS];      // log2 ratio frame/exp. length
  86.     int32_t exponents[MAX_CHANNELS][BLOCK_MAX_SIZE];
  87.     int32_t max_exponent[MAX_CHANNELS];
  88.     int16_t coefs1[MAX_CHANNELS][BLOCK_MAX_SIZE];
  89.     int32_t (*coefs)[MAX_CHANNELS][BLOCK_MAX_SIZE];
  90.     MDCTContext mdct_ctx[BLOCK_NB_SIZES];
  91.     int32_t *windows[BLOCK_NB_SIZES];
  92.     /* output buffer for one frame and the last for IMDCT windowing */
  93.     int32_t frame_out[MAX_CHANNELS][BLOCK_MAX_SIZE * 2];
  94.     /* last frame info */
  95.     uint8_t last_superframe[MAX_CODED_SUPERFRAME_SIZE + 4]; /* padding added */
  96.     int last_bitoffset;
  97.     int last_superframe_len;
  98.     int32_t *noise_table;
  99.     int noise_index;
  100.     int32_t noise_mult; /* XXX: suppress that and integrate it in the noise array */
  101.     /* lsp_to_curve tables */
  102.     int32_t lsp_cos_table[BLOCK_MAX_SIZE];
  103.     int64_t lsp_pow_e_table[256];
  104.     int32_t lsp_pow_m_table1[(1 << LSP_POW_BITS)];
  105.     int32_t lsp_pow_m_table2[(1 << LSP_POW_BITS)];
  106.     /* State of current superframe decoding */
  107.     int bit_offset;
  108.     int nb_frames;
  109.     int current_frame;
  110. #ifdef TRACE
  111.     int frame_count;
  112. #endif
  113. }
  114. WMADecodeContext;
  115. int wma_decode_init(WMADecodeContext* s, asf_waveformatex_t *wfx);
  116. int wma_decode_superframe_init(WMADecodeContext* s,
  117.                                uint8_t *buf, int buf_size);
  118. int wma_decode_superframe_frame(WMADecodeContext* s,
  119.                                 int32_t *samples,
  120.                                 uint8_t *buf, int buf_size);
  121. #endif