| 7 | |
| 8 | |
| 9 | FAACEncoder::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 | |
| 26 | FAACEncoder::~FAACEncoder() |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected