aac.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. 2000, 2001.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  *              Bill May        wmay@cisco.com
  20.  */
  21. /*
  22.  * aa.h - class definition for AAC codec.
  23.  */
  24. #ifndef __AA_H__
  25. #define __AA_H__ 1
  26. #include "faad/all.h"
  27. #include <faad/bits.h>
  28. #include <SDL.h>
  29. #include "codec_plugin.h"
  30. typedef struct aac_codec_t {
  31.   codec_data_t c;
  32.   audio_vft_t *m_vft;
  33.   void *m_ifptr;
  34.   faacDecHandle m_info;
  35.   int m_object_type;
  36.   int m_resync_with_header;
  37.   int m_record_sync_time;
  38.   uint64_t m_current_time;
  39.   uint64_t m_last_rtp_ts;
  40.   uint64_t m_msec_per_frame;
  41.   uint32_t m_current_frame;
  42.   SDL_AudioSpec m_obtained;
  43.   int m_audio_inited;
  44.   int m_faad_inited;
  45.   int m_freq;  // frequency
  46.   int m_chans; // channels
  47.   int m_output_frame_size;
  48.   uint8_t *m_temp_buff;
  49. #if DUMP_OUTPUT_TO_FILE
  50.   FILE *m_outfile;
  51. #endif
  52.   FILE *m_ifile;
  53.   uint8_t *m_buffer;
  54.   uint32_t m_buffer_size_max;
  55.   uint32_t m_buffer_size;
  56.   uint32_t m_buffer_on;
  57.   uint64_t m_framecount;
  58. } aac_codec_t;
  59. #define m_vft c.v.audio_vft
  60. #define m_ifptr c.ifptr
  61. #define MAX_READ_BUFFER (768 * 8)
  62. #define aa_message aac->m_vft->log_msg
  63. void aac_close(codec_data_t *ptr);
  64. extern const char *aaclib;
  65. codec_data_t *aac_file_check(lib_message_func_t message,
  66.      const char *name,
  67.      double *max,
  68.      char *desc[4]);
  69. int aac_file_next_frame(codec_data_t *ifptr,
  70. uint8_t **buffer,
  71. uint64_t *ts);
  72. int aac_file_eof(codec_data_t *ifptr);
  73. void aac_file_used_for_frame(codec_data_t *ifptr,
  74.      uint32_t bytes);
  75. int aac_raw_file_seek_to(codec_data_t *ifptr,
  76.  uint64_t ts);
  77. #endif