faad.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:9k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * Faad decoder
  3.  * Copyright (c) 2003 Zdenek Kabelac.
  4.  * Copyright (c) 2004 Thomas Raivio.
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20. /**
  21.  * @file faad.c
  22.  * AAC decoder.
  23.  *
  24.  * still a bit unfinished - but it plays something
  25.  */
  26. #include "avcodec.h"
  27. #include "faad.h"
  28. #ifndef FAADAPI
  29. #define FAADAPI
  30. #endif
  31. /*
  32.  * when CONFIG_FAADBIN is defined the libfaad will be opened at runtime
  33.  */
  34. //#undef CONFIG_FAADBIN
  35. //#define CONFIG_FAADBIN
  36. #ifdef CONFIG_FAADBIN
  37. #include <dlfcn.h>
  38. static const char* libfaadname = "libfaad.so.0";
  39. #else
  40. #define dlopen(a)
  41. #define dlclose(a)
  42. #endif
  43. typedef struct {
  44.     void* handle; /* dlopen handle */
  45.     void* faac_handle; /* FAAD library handle */
  46.     int frame_size;
  47.     int sample_size;
  48.     int flags;
  49.     /* faad calls */
  50.     faacDecHandle FAADAPI (*faacDecOpen)(void);
  51.     faacDecConfigurationPtr FAADAPI (*faacDecGetCurrentConfiguration)(faacDecHandle hDecoder);
  52. #ifndef FAAD2_VERSION
  53. int FAADAPI (*faacDecSetConfiguration)(faacDecHandle hDecoder,
  54.                                            faacDecConfigurationPtr config);
  55. int FAADAPI (*faacDecInit)(faacDecHandle hDecoder,
  56. unsigned char *buffer,
  57. unsigned long *samplerate,
  58. unsigned long *channels);
  59. int FAADAPI (*faacDecInit2)(faacDecHandle hDecoder, unsigned char *pBuffer,
  60.                                 unsigned long SizeOfDecoderSpecificInfo,
  61.                                 unsigned long *samplerate, unsigned long *channels);
  62. int FAADAPI (*faacDecDecode)(faacDecHandle hDecoder,
  63.                 unsigned char *buffer,
  64. unsigned long *bytesconsumed,
  65. short *sample_buffer,
  66.                                 unsigned long *samples);
  67. #else
  68. unsigned char FAADAPI (*faacDecSetConfiguration)(faacDecHandle hDecoder,
  69.                                                      faacDecConfigurationPtr config);
  70. long FAADAPI (*faacDecInit)(faacDecHandle hDecoder,
  71.     unsigned char *buffer,
  72.  unsigned long buffer_size,
  73.  unsigned long *samplerate,
  74.  unsigned char *channels);
  75. char FAADAPI (*faacDecInit2)(faacDecHandle hDecoder, unsigned char *pBuffer,
  76.                                  unsigned long SizeOfDecoderSpecificInfo,
  77.                                  unsigned long *samplerate, unsigned char *channels);
  78. void *FAADAPI (*faacDecDecode)(faacDecHandle hDecoder,
  79.                          faacDecFrameInfo *hInfo,
  80.                          unsigned char *buffer,
  81.  unsigned long buffer_size);
  82. char* FAADAPI (*faacDecGetErrorMessage)(unsigned char errcode);
  83. #endif
  84.     
  85.     void FAADAPI (*faacDecClose)(faacDecHandle hDecoder);
  86.     
  87.     
  88. } FAACContext;
  89. static const unsigned long faac_srates[] =
  90. {
  91.     96000, 88200, 64000, 48000, 44100, 32000,
  92.     24000, 22050, 16000, 12000, 11025, 8000
  93. };
  94. static int faac_init_mp4(AVCodecContext *avctx)
  95. {
  96.     FAACContext *s = (FAACContext *) avctx->priv_data;
  97.     unsigned long samplerate;
  98. #ifndef FAAD2_VERSION
  99.     unsigned long channels;
  100. #else
  101.     unsigned char channels;
  102. #endif
  103.     int r = 0;
  104.     if (avctx->extradata)
  105. r = s->faacDecInit2(s->faac_handle, (uint8_t*) avctx->extradata,
  106.     avctx->extradata_size,
  107.     &samplerate, &channels);
  108.     // else r = s->faacDecInit(s->faac_handle ... );
  109.     if (r < 0)
  110. av_log(avctx, AV_LOG_ERROR, "faacDecInit2 failed r:%d   sr:%ld  ch:%ld  s:%dn",
  111. r, samplerate, (long)channels, avctx->extradata_size);
  112.     avctx->sample_rate = samplerate;
  113.     avctx->channels = channels;
  114.     return r;
  115. }
  116. static int faac_decode_frame(AVCodecContext *avctx,
  117.                              void *data, int *data_size,
  118.                              uint8_t *buf, int buf_size)
  119. {
  120.     FAACContext *s = (FAACContext *) avctx->priv_data;
  121. #ifndef FAAD2_VERSION
  122.     unsigned long bytesconsumed;
  123.     short *sample_buffer = NULL;
  124.     unsigned long samples;
  125.     int out;
  126. #else
  127.     faacDecFrameInfo frame_info;
  128.     void *out;
  129. #endif
  130.     if(buf_size == 0)
  131. return 0;
  132. #ifndef FAAD2_VERSION
  133.     out = s->faacDecDecode(s->faac_handle, 
  134.                            (unsigned char*)buf, 
  135.                            &bytesconsumed, 
  136.                            data, 
  137.                            &samples);
  138.     samples *= s->sample_size;
  139.     if (data_size)
  140. *data_size = samples;
  141.     return (buf_size < (int)bytesconsumed)
  142. ? buf_size : (int)bytesconsumed;
  143. #else
  144.     out = s->faacDecDecode(s->faac_handle, &frame_info, (unsigned char*)buf, (unsigned long)buf_size);
  145.     if (frame_info.error > 0) {
  146. av_log(avctx, AV_LOG_ERROR, "faac: frame decoding failed: %sn",
  147. s->faacDecGetErrorMessage(frame_info.error));
  148.         return 0;
  149.     }
  150.     frame_info.samples *= s->sample_size;
  151.     memcpy(data, out, frame_info.samples); // CHECKME - can we cheat this one
  152.     if (data_size)
  153. *data_size = frame_info.samples;
  154.     return (buf_size < (int)frame_info.bytesconsumed)
  155. ? buf_size : (int)frame_info.bytesconsumed;
  156. #endif
  157. }
  158. static int faac_decode_end(AVCodecContext *avctx)
  159. {
  160.     FAACContext *s = (FAACContext *) avctx->priv_data;
  161.     if (s->faacDecClose)
  162.         s->faacDecClose(s->faac_handle);
  163.     dlclose(s->handle);
  164.     return 0;
  165. }
  166. static int faac_decode_init(AVCodecContext *avctx)
  167. {
  168.     FAACContext *s = (FAACContext *) avctx->priv_data;
  169.     faacDecConfigurationPtr faac_cfg;
  170. #ifdef CONFIG_FAADBIN
  171.     const char* err = 0;
  172.     s->handle = dlopen(libfaadname, RTLD_LAZY);
  173.     if (!s->handle)
  174.     {
  175. av_log(avctx, AV_LOG_ERROR, "FAAD library: %s could not be opened! n%sn",
  176. libfaadname, dlerror());
  177.         return -1;
  178.     }
  179. #define dfaac(a, b) 
  180.     do { static const char* n = "faacDec" #a; 
  181.     if ((s->faacDec ## a = b dlsym( s->handle, n )) == NULL) { err = n; break; } } while(0)
  182.     for(;;) {
  183. #else  /* !CONFIG_FAADBIN */
  184. #define dfaac(a, b)     s->faacDec ## a = faacDec ## a
  185. #endif /* CONFIG_FAADBIN */
  186.         // resolve all needed function calls
  187. dfaac(Open, (faacDecHandle FAADAPI (*)(void)));
  188. dfaac(GetCurrentConfiguration, (faacDecConfigurationPtr
  189. FAADAPI (*)(faacDecHandle)));
  190. #ifndef FAAD2_VERSION
  191. dfaac(SetConfiguration, (int FAADAPI (*)(faacDecHandle,
  192.    faacDecConfigurationPtr)));
  193. dfaac(Init, (int FAADAPI (*)(faacDecHandle, unsigned char*,
  194.      unsigned long*, unsigned long*)));
  195.     dfaac(Init2, (int FAADAPI (*)(faacDecHandle, unsigned char*,
  196.        unsigned long, unsigned long*,
  197.        unsigned long*)));
  198.     dfaac(Close, (void FAADAPI (*)(faacDecHandle hDecoder)));
  199. dfaac(Decode, (int FAADAPI (*)(faacDecHandle, unsigned char*,
  200.              unsigned long*, short*, unsigned long*)));
  201. #else
  202. dfaac(SetConfiguration, (unsigned char FAADAPI (*)(faacDecHandle,
  203.    faacDecConfigurationPtr)));
  204. dfaac(Init, (long FAADAPI (*)(faacDecHandle, unsigned char*,
  205.      unsigned long, unsigned long*, unsigned char*)));
  206. dfaac(Init2, (char FAADAPI (*)(faacDecHandle, unsigned char*,
  207.        unsigned long, unsigned long*,
  208.        unsigned char*)));
  209. dfaac(Decode, (void *FAADAPI (*)(faacDecHandle, faacDecFrameInfo*,
  210.              unsigned char*, unsigned long)));
  211. dfaac(GetErrorMessage, (char* FAADAPI (*)(unsigned char)));
  212. #endif
  213. #undef dfacc
  214. #ifdef CONFIG_FAADBIN
  215.         break;
  216.     }
  217.     if (err) {
  218.         dlclose(s->handle);
  219. av_log(avctx, AV_LOG_ERROR, "FAAD library: cannot resolve %s in %s!n",
  220. err, libfaadname);
  221.         return -1;
  222.     }
  223. #endif
  224.     s->faac_handle = s->faacDecOpen();
  225.     if (!s->faac_handle) {
  226.         av_log(avctx, AV_LOG_ERROR, "FAAD library: cannot create handler!n");
  227.         faac_decode_end(avctx);
  228.         return -1;
  229.     }
  230.     faac_cfg = s->faacDecGetCurrentConfiguration(s->faac_handle);
  231.     if (faac_cfg) {
  232. switch (avctx->bits_per_sample) {
  233. case 8: av_log(avctx, AV_LOG_ERROR, "FAADlib unsupported bps %dn", avctx->bits_per_sample); break;
  234. default:
  235. case 16:
  236. #ifdef FAAD2_VERSION
  237.     faac_cfg->outputFormat = FAAD_FMT_16BIT;
  238. #endif
  239.     s->sample_size = 2;
  240.     break;
  241. case 24:
  242. #ifdef FAAD2_VERSION
  243.     faac_cfg->outputFormat = FAAD_FMT_24BIT;
  244. #endif
  245.     s->sample_size = 3;
  246.     break;
  247. case 32:
  248. #ifdef FAAD2_VERSION
  249.     faac_cfg->outputFormat = FAAD_FMT_32BIT;
  250. #endif
  251.     s->sample_size = 4;
  252.     break;
  253. }
  254. faac_cfg->defSampleRate = (!avctx->sample_rate) ? 44100 : avctx->sample_rate;
  255. faac_cfg->defObjectType = LC;
  256.     }
  257.     s->faacDecSetConfiguration(s->faac_handle, faac_cfg);
  258.     faac_init_mp4(avctx);
  259.     return 0;
  260. }
  261. #define AAC_CODEC(id, name)     
  262. AVCodec name ## _decoder = {    
  263.     #name,                      
  264.     CODEC_TYPE_AUDIO,           
  265.     id,                         
  266.     sizeof(FAACContext),        
  267.     faac_decode_init,           
  268.     NULL,                       
  269.     faac_decode_end,            
  270.     faac_decode_frame,          
  271. }
  272. // FIXME - raw AAC files - maybe just one entry will be enough
  273. AAC_CODEC(CODEC_ID_AAC, aac);
  274. // If it's mp4 file - usually embeded into Qt Mov
  275. AAC_CODEC(CODEC_ID_MPEG4AAC, mpeg4aac);
  276. #undef AAC_CODEC