audio_encoder.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-2002.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  * Dave Mackie dmackie@cisco.com
  20.  */
  21. #include "mp4live.h"
  22. #include "audio_encoder.h"
  23. #ifdef ADD_LAME_ENCODER
  24. #include "audio_lame.h"
  25. #endif
  26. #ifdef ADD_FAAC_ENCODER
  27. #include "audio_faac.h"
  28. #endif
  29. CAudioEncoder* AudioEncoderCreate(const char* encoderName)
  30. {
  31. if (!strcasecmp(encoderName, AUDIO_ENCODER_FAAC)) {
  32. #ifdef ADD_FAAC_ENCODER
  33. return new CFaacAudioEncoder();
  34. #else
  35. error_message("faac encoder not available in this build");
  36. return false;
  37. #endif
  38. } else if (!strcasecmp(encoderName, AUDIO_ENCODER_LAME)) {
  39. #ifdef ADD_LAME_ENCODER
  40. return new CLameAudioEncoder();
  41. #else
  42. error_message("lame encoder not available in this build");
  43. #endif
  44. } else {
  45. error_message("unknown encoder specified");
  46. }
  47. return NULL;
  48. }
  49. bool CAudioEncoder::InterleaveStereoSamples(
  50. u_int16_t* pLeftBuffer, 
  51. u_int16_t* pRightBuffer, 
  52. u_int32_t srcNumSamples,
  53. u_int16_t** ppDstBuffer)
  54. {
  55. if (*ppDstBuffer == NULL) {
  56. *ppDstBuffer = 
  57. (u_int16_t*)malloc(srcNumSamples * 2 * sizeof(u_int16_t));
  58. if (*ppDstBuffer == NULL) {
  59. return false;
  60. }
  61. }
  62. for (u_int32_t i = 0; i < srcNumSamples; i++) {
  63. (*ppDstBuffer)[(i << 1)] = pLeftBuffer[i]; 
  64. (*ppDstBuffer)[(i << 1) + 1] = pRightBuffer[i];
  65. }
  66. return true;
  67. }
  68. bool CAudioEncoder::DeinterleaveStereoSamples(
  69. u_int16_t* pSrcBuffer, 
  70. u_int32_t srcNumSamples,
  71. u_int16_t** ppLeftBuffer, 
  72. u_int16_t** ppRightBuffer)
  73. {
  74. bool mallocedLeft = false;
  75. if (*ppLeftBuffer == NULL) {
  76. *ppLeftBuffer = 
  77. (u_int16_t*)malloc((srcNumSamples >> 1) * sizeof(u_int16_t));
  78. if (*ppLeftBuffer == NULL) {
  79. return false;
  80. }
  81. mallocedLeft = true;
  82. }
  83. if (*ppRightBuffer == NULL) {
  84. *ppRightBuffer = 
  85. (u_int16_t*)malloc((srcNumSamples >> 1) * sizeof(u_int16_t));
  86. if (*ppRightBuffer == NULL) {
  87. if (mallocedLeft) {
  88. free(*ppLeftBuffer);
  89. *ppLeftBuffer = NULL;
  90. }
  91. return false;
  92. }
  93. }
  94. for (u_int32_t i = 0; i < (srcNumSamples >> 1); i++) {
  95. (*ppLeftBuffer)[i] = pSrcBuffer[(i << 1)];
  96. (*ppRightBuffer)[i] = pSrcBuffer[(i << 1) + 1];
  97. }
  98. return true;
  99. }