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

多媒体编程

开发平台:

Visual C++

  1. /*
  2.  * tables.h
  3.  * Copyright (C) 2004 Gildas Bazin <gbazin@videolan.org>
  4.  *
  5.  * This file is part of dtsdec, a free DTS Coherent Acoustics stream decoder.
  6.  * See http://www.videolan.org/dtsdec.html for updates.
  7.  *
  8.  * dtsdec is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * dtsdec is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  */
  22. static const int dts_sample_rates[] =
  23. {
  24.     0, 8000, 16000, 32000, 0, 0, 11025, 22050, 44100, 0, 0,
  25.     12000, 24000, 48000, 96000, 192000
  26. };
  27. static const int dts_bit_rates[] =
  28. {
  29.     32000, 56000, 64000, 96000, 112000, 128000,
  30.     192000, 224000, 256000, 320000, 384000,
  31.     448000, 512000, 576000, 640000, 768000,
  32.     896000, 1024000, 1152000, 1280000, 1344000,
  33.     1408000, 1411200, 1472000, 1536000, 1920000,
  34.     2048000, 3072000, 3840000, 1/*open*/, 2/*variable*/, 3/*lossless*/
  35. };
  36. static const uint8_t dts_channels[] =
  37. {
  38.     1, 2, 2, 2, 2, 3, 3, 4, 4, 5, 6, 6, 6, 7, 8, 8
  39. };
  40. static uint8_t dts_bits_per_sample[] =
  41. {
  42.     16, 16, 20, 20, 0, 24, 24
  43. };