mpeg4_audio_config.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is MPEG4IP.
  13.  * 
  14.  * The Initial Developer of the Original Code is Cisco Systems Inc.
  15.  * Portions created by Cisco Systems Inc. are
  16.  * Copyright (C) Cisco Systems Inc. 2001.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  *              Bill May        wmay@cisco.com
  20.  */
  21. #ifndef __MPEG4_AUDIO_CONFIG_H__
  22. #define __MPEG4_AUDIO_CONFIG_H__
  23. typedef struct aac_audio_config_t {
  24.   int frame_len_1024;
  25. } aac_audio_config_t;
  26. #define CELP_EXCITATION_MODE_RPE 1
  27. #define CELP_EXCITATION_MODE_MPE 0
  28. typedef struct celp_audio_config_t {
  29.   int isBaseLayer;
  30.   int isBWSLayer;
  31.   int CELP_BRS_id;
  32.   int NumOfBitsInBuffer;
  33.   int excitation_mode;
  34.   int sample_rate_mode;
  35.   int fine_rate_control;
  36.   int rpe_config;
  37.   int mpe_config;
  38.   int num_enh_layers;
  39.   int bwsm;
  40.   int samples_per_frame;
  41. } celp_audio_config_t;
  42. typedef struct mpeg4_audio_config_t {
  43.   unsigned int audio_object_type;
  44.   unsigned int frequency;
  45.   unsigned int channels;
  46.   union {
  47.     aac_audio_config_t aac;
  48.     celp_audio_config_t celp;
  49.   } codec;
  50. } mpeg4_audio_config_t;
  51. extern "C" {
  52. void decode_mpeg4_audio_config(const uint8_t *buffer,
  53.        uint32_t buf_len,
  54.        mpeg4_audio_config_t *mptr);
  55. int audio_object_type_is_aac(mpeg4_audio_config_t *mptr);
  56. int audio_object_type_is_celp(mpeg4_audio_config_t *mptr);
  57. }
  58. #endif