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