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

流媒体/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.  * wav_file.cpp - create media structure for aac files
  23.  */
  24. #include "ourwav.h"
  25. codec_data_t *wav_file_check (lib_message_func_t message,
  26.       const char *name, 
  27.       double *max, 
  28.       char *desc[4])
  29. {
  30.   int len = strlen(name);
  31.   if (strcasecmp(name + len - 4, ".wav") != 0) {
  32.     return (NULL);
  33.   }
  34.   SDL_AudioSpec *temp, *read;
  35.   Uint8 *wav_buffer;
  36.   Uint32 wav_len;
  37.   temp = (SDL_AudioSpec *)malloc(sizeof(SDL_AudioSpec));
  38.   read = SDL_LoadWAV(name, temp, &wav_buffer, &wav_len);
  39.   if (read == NULL) {
  40.     message(LOG_DEBUG, "libwav", "Can't decode wav file");
  41.     return (NULL);
  42.   }
  43.   message(LOG_DEBUG, "libwav", 
  44.   "Wav got f %d chan %d format %x samples %d size %u",
  45.   temp->freq,
  46.   temp->channels,
  47.   temp->format,
  48.   temp->samples,
  49.   wav_len);
  50.   wav_codec_t *wav;
  51.   wav = MALLOC_STRUCTURE(wav_codec_t);
  52.   memset(wav, 0, sizeof(*wav));
  53.   
  54.   wav->m_sdl_config = temp;
  55.   wav->m_wav_buffer = wav_buffer;
  56.   wav->m_wav_len = wav_len;
  57.   if (wav->m_sdl_config->format == AUDIO_U8 || 
  58.       wav->m_sdl_config->format == AUDIO_S8)
  59.     wav->m_bytes_per_channel = 1;
  60.   else
  61.     wav->m_bytes_per_channel = 2;
  62.   int divs;
  63.   divs = wav->m_bytes_per_channel * 
  64.     wav->m_sdl_config->channels *
  65.     wav->m_sdl_config->freq;
  66.   *max = (double)wav->m_wav_len / (double) divs;
  67.   message(LOG_DEBUG, "libwav", "wav length is %g", *max);
  68.   return ((codec_data_t *)wav);
  69. }
  70. int wav_file_next_frame (codec_data_t *your,
  71.  uint8_t **buffer,
  72.  uint64_t *ts)
  73. {
  74.   wav_codec_t *wav = (wav_codec_t *)your;
  75.   uint64_t calc;
  76.   *buffer = &wav->m_wav_buffer[wav->m_wav_buffer_on];
  77.   calc = wav->m_wav_buffer_on * M_LLU;
  78.   calc /= wav->m_bytes_per_channel;
  79.   calc /= wav->m_sdl_config->channels;
  80.   calc /= wav->m_sdl_config->freq;
  81.   *ts = calc;
  82.   return (wav->m_wav_len - wav->m_wav_buffer_on);
  83. }
  84. void wav_file_used_for_frame (codec_data_t *ifptr,
  85.       uint32_t bytes)
  86. {
  87.   wav_codec_t *wav = (wav_codec_t *)ifptr;
  88.   wav->m_wav_buffer_on += bytes;
  89.   if (wav->m_wav_buffer_on > wav->m_wav_len) wav->m_wav_buffer_on = wav->m_wav_len;
  90. }
  91. int wav_file_eof (codec_data_t *ifptr)
  92. {
  93.   wav_codec_t *wav = (wav_codec_t *)ifptr;
  94.   return (wav->m_wav_buffer_on == wav->m_wav_len);
  95. }
  96. int wav_raw_file_seek_to (codec_data_t *ifptr, uint64_t ts)
  97. {
  98.   wav_codec_t *wav = (wav_codec_t *)ifptr;
  99.   uint64_t calc;
  100.   
  101.   calc = ts * wav->m_bytes_per_channel * 
  102.     wav->m_sdl_config->channels *
  103.     wav->m_sdl_config->freq;
  104.   calc /= M_LLU;
  105.   wav->m_wav_buffer_on = calc;
  106.   if (wav->m_bytes_per_channel != 1)
  107.     wav->m_wav_buffer_on &= ~1;
  108.   wav->m_vft->log_msg(LOG_DEBUG, "libwav", "skip " LLU " bytes %d max %d", 
  109.       ts, wav->m_wav_buffer_on, wav->m_wav_len);
  110.   return 0;
  111. }