1. 程式人生 > >G711轉AAC程式碼總結【轉】

G711轉AAC程式碼總結【轉】

思路: 將G711轉為PCM , 然後將PCM資料轉為AAC,

G711轉為PCM,可以使用上一篇中講到的方式, 而PCM轉AAC(ADTS),採用的是faac這個開源庫

這裡只講怎麼實現, 瞭解更詳細的內容,則需要自己查詢學習了.

直接上程式碼.

  1. JNIEXPORT jint JNICALL Java_com_ff_aacdemo_jni_G711Coder_g711ToAAC  
  2.   (JNIEnv *env, jobject obj){  
  3.     unsigned long sampleRate = 8000;//取樣率  
  4.     unsigned int channels = 
    1;//通道數  
  5.     unsigned int pcmBitSize = 16;// 量化位數  
  6.     long inputSamples;  
  7.     long maxOutputBytes;  
  8.     faacEncHandle codeHandle = faacEncOpen(sampleRate, channels, &inputSamples, &maxOutputBytes);  
  9.     int maxInputBytes = inputSamples * pcmBitSize / 8;  
  10.     LOGD("inputSamples = %ld, maxOutputBytes
     = %ld, maxInputBytes = %d", inputSamples, maxOutputBytes, maxInputBytes);  
  11.     faacEncConfigurationPtr pConfigPtr = faacEncGetCurrentConfiguration(codeHandle);  
  12.     pConfigPtr->inputFormat = FAAC_INPUT_16BIT;//輸入資料型別  
  13.     pConfigPtr->outputFormat = 1; //0-Raw ; 1-ADTS  
  14.     pConfigPtr->useTns
    0;//瞬時噪聲定形(temporal noise shaping,TNS)濾波器  
  15.     pConfigPtr->useLfe0;//低頻效果  
  16.     pConfigPtr->aacObjectTypeLOW; //編碼型別  
  17.     pConfigPtr->shortctl=SHORTCTL_NORMAL;  
  18.     pConfigPtr->quantqual=50; // 編碼質量  
  19.     pConfigPtr->mpegVersion = MPEG2;  
  20.     faacEncSetConfiguration(codeHandle, pConfigPtr);  
  21.     int m_nMaxInputBytes = inputSamples * pcmBitSize / 8;  
  22.     char pbPCMBuffer[m_nMaxInputBytes]; // 讀取PCM資料  
  23.     char pbAACBuffer[maxOutputBytes];  
  24.     LOGD("g711topcm m_nMaxInputBytes = %d", m_nMaxInputBytes);  
  25.     LOGD("g711topcm maxOutputBytes = %d", maxOutputBytes);  
  26.     FILE* fpIn = fopen("/storage/emulated/0/t/pcm_to_g711.g711","rb");  
  27.     FILE* fpOut = fopen("/storage/emulated/0/t/pcm_to_g711.aac", "wb");  
  28.     size_t g711_BufferSize = m_nMaxInputBytes / 2;  
  29.     LOGD("g711topcm g711_BufferSize = %d", g711_BufferSize);  
  30.     char g711_Buffer[g711_BufferSize];//G711->PCM後,體積會變為原來的兩倍,而PCM一次編碼需要的最小位元組數為m_nMaxInputBytes(如果小於它,編碼後的資料不正常)  
  31.     size_t len;  
  32.     LOGD("********************************");  
  33.     while((len = fread(g711_Buffer, 1, g711_BufferSize, fpIn)) > 0){  
  34.         LOGD("g711topcm length = %d", len);  
  35.         char pcmBuffer[len];  
  36.         int pcmbufsize = g711_decode(pcmBuffer, g711_Buffer, len); // g711 -> pcm  (g711 轉為 pcm 後其體積會增加一倍)  
  37.         LOGD("g711topcm pcmbufsize = %d", pcmbufsize);  
  38.         // pcm -> aac  
  39.         int inputSamples = pcmbufsize / (pcmBitSize / 8);  
  40.         LOGD("g711topcm inputSamples = %d", inputSamples);  
  41.         int nRetVal = faacEncEncode(codeHandle, (int*) pcmBuffer, inputSamples, pbAACBuffer, maxOutputBytes);  
  42.         LOGD("g711topcm nRetVal = %d", nRetVal);  
  43.         fwrite(pbAACBuffer, 1, nRetVal, fpOut);  
  44.         LOGD("----------------------------------");  
  45.     }  
  46.     fclose(fpIn);  
  47.     fclose(fpOut);  
  48.     faacEncClose(codeHandle);  
  49.     return 0;  
  50. }  

如果對AAC 的編解碼不知道怎麼弄的話, 可以看下一篇, 使用 faac, faad  實現 AAC 與 PCM 的互轉
參考文章

http://blog.csdn.net/jwzhangjie/article/details/8782656
http://www.myexception.cn/program/1833150.html
http://iask.sina.com.cn/b/10699938.html
http://www.zhihu.com/question/20035259?utm_campaign=rss&utm_medium=rss&utm_source=rss&utm_content=title