MCPcopy Create free account
hub / github.com/EasyDarwin/EasyPusher / FAACEncoder

Method FAACEncoder

EasyPusher_Win/EasyPusher/EasyEncoder/FAACEncoder.cpp:9–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7
8
9FAACEncoder::FAACEncoder()
10{
11 m_nSampleRate=16000;//44100; // ������
12 m_nChannels=2; // ������
13 m_nBits=16; // �������
14 m_nInputSamples=2048; //�������������
15 m_nMaxOutputBytes=0; //�������ֽ�
16
17 m_hfaac=NULL;
18 m_pfaacconf=NULL;
19
20 m_pfaacbuffer=NULL;
21 m_pfaacbuffer=(unsigned char*)malloc(4096);
22
23 m_pfaacinfobuffer=NULL;//(unsigned char*)malloc(100);
24}
25
26FAACEncoder::~FAACEncoder()
27{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected