pcm2aac
1、下载faac源代码:http://downloads.sourceforge.net/faac/faac-1.28.zip
2、在VAWARE上进行交叉编译,安装。
./configure --target=arm-linux --host=arm-hisiv300-linux
make
make install
之后默认安装在/usr/locol下,头文件faac.h在/usr/locol/include下,静态库libfaac.a在/usr/locol/lib下,/usr/locol/bin下有faac的可执行文件。
3、创建头文件pcm2aac.h
#ifndef PCM_TO_AAC_H
#define PCM_TO_AAC_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include <faac.h>
#include <stdio.h>
typedef unsigned long ULONG;
typedef unsigned int UINT;
typedef unsigned char BYTE;
typedef char _TCHAR;
//-----------------------------------------------------------------------------
ULONG nSampleRate;
UINT nChannels;
UINT nPCMBitSize;
ULONG nInputSamples;
ULONG nMaxOutputBytes;
int nRet;
faacEncHandle hEncoder;
faacEncConfigurationPtr pConfiguration;
int nBytesRead;
int nPCMBufferSize;
int iPcmBytes;
BYTE* pbPCMBuffer;
BYTE* pbAACBuffer;
FILE *fhaac;//写aac文件流句柄
//----------------------------------------------------------------------------
//extern "C" int pcm2aac_init(void);
//-----------------------------------------------------------------------------
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif // PCM_TO_AAC_H
4、在sample_audio.c中添加如下代码
#include "pcm2aac.h"
HI_BOOL pcm2aac_init(void)
{
nSampleRate = AUDIO_SAMPLE_RATE_8000; //
nChannels = 1; //pcm编码时选择MONO,这里就要nChannels = 1
nPCMBitSize = 16; // λ
nInputSamples = 0;
iPcmBytes = 0;//pcm帧计数器,每16帧处理一次,转换成5帧aac
nMaxOutputBytes = 0;
nRet = 0;
hEncoder = NULL;
pConfiguration = NULL;
nBytesRead = -1;
nPCMBufferSize = -1;
pbPCMBuffer = NULL;
pbAACBuffer = NULL;
hEncoder = faacEncOpen(nSampleRate, nChannels, &nInputSamples, &nMaxOutputBytes);
if(hEncoder == NULL)
{
printf("[ERROR] Failed to call faacEncOpen()\n");
return HI_FALSE;
}
printf("----------nSampleRate=%d, nChannels=%d, nInputSamples=%d, nMaxOutputBytes=%d",nSampleRate, nChannels, nInputSamples, nMaxOutputBytes);
nPCMBufferSize = nInputSamples * nPCMBitSize / 8;
pbPCMBuffer = (BYTE *)malloc(nPCMBufferSize*2);
pbAACBuffer = (BYTE *)malloc(nMaxOutputBytes);
if(pbPCMBuffer == NULL || pbAACBuffer == NULL)
{
printf("----------[ERROR] Failed to call malloc(pbPCMBuffer pbAACBuffer) \n");
}
memset(pbPCMBuffer,0,nPCMBufferSize*2);
memset(pbAACBuffer,0,nMaxOutputBytes);
// (2.1) Get current encoding configuration
pConfiguration = faacEncGetCurrentConfiguration(hEncoder);
pConfiguration->inputFormat = FAAC_INPUT_16BIT;
pConfiguration->outputFormat = 1;//0 Raw;1 ATDS
pConfiguration->aacObjectType = 2;//LC编码
// (2.2) Set encoding configuration
nRet = faacEncSetConfiguration(hEncoder, pConfiguration);
if(nRet < 0)
{
printf("----------[ERROR] Failed to call faacEncSetConfiguration()\n");
return HI_FALSE;
}
fhaac = fopen("audio_chn0.aac","w+");
if (NULL == fhaac)
{
printf("----------[ERROR] Failed to open file audio_chn0.aac \n");
return HI_FALSE;
}
return HI_TRUE;
}
HI_BOOL pcm2aac_exit(void)
{
nRet = faacEncClose(hEncoder);
free(pbPCMBuffer);
free(pbAACBuffer);
fclose(fhaac);
//fclose(fhmsg);
return HI_TRUE;
}
。。。。
。。。。
。。。。
在SAMPLE_COMM_AUDIO_AencProc函数里添加下面的代码(这里需要说明一下,我把mpp/sample/common下的所有c代码都加到了sample_audio.c中,合成了一个文件)
/* save audio stream to file */
fwrite(stStream.pStream,1,stStream.u32Len, pstAencCtl->pfd);//在这一句之后添加:
//转码成aac
memcpy(&pbPCMBuffer[iPcmBytes],stStream.pStream,stStream.u32Len);//pcm流数据保存到转换缓冲区
iPcmBytes +=stStream.u32Len;
if(iPcmBytes >= nPCMBufferSize)
{
nRet = faacEncEncode(hEncoder, (int *) pbPCMBuffer, nInputSamples, pbAACBuffer, nMaxOutputBytes);//nInputSamples音频片数量
memcpy(pbPCMBuffer,&pbPCMBuffer[nPCMBufferSize],nPCMBufferSize);//后半部分拷贝到前半部分
iPcmBytes -= nPCMBufferSize;//未处理数据指针复位
fwrite(pbAACBuffer, 1, nRet, fhaac);
//fprintf(fhmsg,"nInputSamples=%d nRet=%d nMaxOutputBytes=%d \r\n",nInputSamples,nRet,nMaxOutputBytes);
//转码并写aac文件................................结束
}
在main函数里添加:
//在SAMPLE_AUDIO_Usage(); 这一句代码之前添加:
//初始化aac环境
if(pcm2aac_init() == HI_FALSE)
{
printf("--------[ERORR]: pcm2aac_init() failed \n");
return HI_FAILURE;
}
在main函数最后,“SAMPLE_COMM_SYS_Exit();”这一行之后添加:
//aac环境退出
printf("----------Begin exit pcm2aac........");
pcm2aac_exit();
至此,编译运行程序sample_audio,选1,软件录音到文件audio_ch0.pcm的同时,生成audio_ch0.aac文件,可在vlc中播放。
不足之处:faac转码时CPU占用高达99%,效率低。
pcm2aac的更多相关文章
随机推荐
- B1007 素数对猜想
B1007 素数对猜想 让我们定义\(d_n\)为:\(d_n =p_{n+1}−p_n\),其中\(p_i\)是第i个素数.显然有\(d_1=1\),且对于n>1有\(d_n\)是偶数.&qu ...
- POJ:2492-Bug's Life(二分图的判定)
Bug's Life Time Limit: 10000MS Memory Limit: 65536K Description Background Professor Hopper is resea ...
- 用 Tensorflow 建立 CNN
稍稍乱入的CNN,本文依然是学习周莫烦视频的笔记. 还有 google 在 udacity 上的 CNN 教程. CNN(Convolutional Neural Networks) 卷积神经网络简单 ...
- java十分钟速懂知识点——引用
一.由健忘症引起的问题 今天闲来没事在日志中瞟见了个OutOfMemoryError错误,不由得想到前一段时间看到一篇面经里问到Java中是否有内存泄露,这个很久以前是留意过的,大体记得内存溢出和内存 ...
- Go语言之并发编程(四)
同步 Go 程序可以使用通道进行多个 goroutine 间的数据交换,但这仅仅是数据同步中的一种方法.通道内部的实现依然使用了各种锁,因此优雅代码的代价是性能.在某些轻量级的场合,原子访问(atom ...
- Git的安装及常用操作
一.Git的安装 1.下载Git,官网地址为:https://git-scm.com/downloads. 2.下载完成之后,双击目录进行安装 3.选择安装目录 4.选择组件,默认即可 5.设 ...
- mysql查询当天的数据
mysql查询当天的数据 贴代码: #两个时间都使用to_days()函数 select * from reple where to_days(create_time) = to_days(NOW() ...
- wim
wim 编辑 WIM是英文Microsoft Windows Imaging Format(WIM)的简称,它是Windows基于文件的映像格式.WIM 映像格式并非现在相当常见的基于扇区的映像格式, ...
- 聊聊、Integer 封装特性
前几天在公司内部群,有人分享出了一道题,问谁能口算出来,他就膜拜那个人.题目如下: Class cache = Integer.class.getDeclaredClasses()[0]: Field ...
- MySql数据库 - 5.用C#连接数据库
添加 dll 引用,dll 位置:C:\Program Files (x86)\MySQL\Connector NET 8.0\Assemblies\v4.5.2 引入命名空间:MySql.Data. ...