aa_file.cpp
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/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_file.cpp - create media structure for aac files
  23.  */
  24. #include "aac.h"
  25. codec_data_t *aac_file_check (lib_message_func_t message,
  26.       const char *name, 
  27.       double *max, 
  28.       char *desc[4])
  29. {
  30.   aac_codec_t *aac;
  31.   int len = strlen(name);
  32.   if (strcasecmp(name + len - 4, ".aac") != 0) {
  33.     return (NULL);
  34.   }
  35.   aac = MALLOC_STRUCTURE(aac_codec_t);
  36.   memset(aac, 0, sizeof(*aac));
  37.   *max = 0;
  38.   aac->m_buffer = (uint8_t *)malloc(MAX_READ_BUFFER);
  39.   aac->m_buffer_size_max = MAX_READ_BUFFER;
  40.   aac->m_ifile = fopen(name, FOPEN_READ_BINARY);
  41.   if (aac->m_ifile == NULL) {
  42.     free(aac);
  43.     return NULL;
  44.   }
  45.   aac->m_output_frame_size = 1024;
  46.   aac->m_info = faacDecOpen(); // use defaults here...
  47.   aac->m_buffer_size = fread(aac->m_buffer, 
  48.      1, 
  49.      aac->m_buffer_size_max, 
  50.      aac->m_ifile);
  51.   unsigned long freq, chans;
  52.   faacDecInit(aac->m_info, (unsigned char *)aac->m_buffer, &freq, &chans);
  53.   // may want to actually decode the first frame...
  54.   if (freq == 0) {
  55.     message(LOG_ERR, aaclib, "Couldn't determine AAC frame rate");
  56.     aac_close((codec_data_t *)aac);
  57.     return (NULL);
  58.   } 
  59.   aac->m_freq = freq;
  60.   aac->m_chans = chans;
  61.   aac->m_faad_inited = 1;
  62.   aac->m_framecount = 0;
  63.   return ((codec_data_t *)aac);
  64. }
  65. int aac_file_next_frame (codec_data_t *your,
  66.  uint8_t **buffer, 
  67.  uint64_t *ts)
  68. {
  69.   aac_codec_t *aac = (aac_codec_t *)your;
  70.   if (aac->m_buffer_on > 0) {
  71.     memmove(aac->m_buffer, 
  72.     &aac->m_buffer[aac->m_buffer_on],
  73.     aac->m_buffer_size - aac->m_buffer_on);
  74.   }
  75.   aac->m_buffer_size -= aac->m_buffer_on;
  76.   aac->m_buffer_size += fread(aac->m_buffer + aac->m_buffer_size, 
  77.       1, 
  78.       aac->m_buffer_size_max - aac->m_buffer_size,
  79.       aac->m_ifile);
  80.   aac->m_buffer_on = 0;
  81.   if (aac->m_buffer_size == 0) return 0;
  82.   uint64_t calc;
  83.   calc = aac->m_framecount * 1024 * M_LLU;
  84.   calc /= aac->m_freq;
  85.   *ts = calc;
  86.   *buffer = aac->m_buffer;
  87.   aac->m_framecount++;
  88.   return (aac->m_buffer_size);
  89. }
  90. void aac_file_used_for_frame (codec_data_t *ifptr, 
  91.      uint32_t bytes)
  92. {
  93.   aac_codec_t *aac = (aac_codec_t *)ifptr;
  94.   aac->m_buffer_on += bytes;
  95.   if (aac->m_buffer_on > aac->m_buffer_size) aac->m_buffer_on = aac->m_buffer_size;
  96. }
  97. int aac_file_eof (codec_data_t *ifptr)
  98. {
  99.   aac_codec_t *aac = (aac_codec_t *)ifptr;
  100.   return aac->m_buffer_on == aac->m_buffer_size && feof(aac->m_ifile);
  101. }
  102. int aac_raw_file_seek_to (codec_data_t *ifptr, uint64_t ts)
  103. {
  104.   if (ts != 0) return -1;
  105.   aac_codec_t *aac = (aac_codec_t *)ifptr;
  106.   rewind(aac->m_ifile);
  107.   aac->m_buffer_size = aac->m_buffer_on = 0;
  108.   aac->m_framecount = 0;
  109.   return 0;
  110. }