aboutsummaryrefslogtreecommitdiff
path: root/Src/Plugins/Input/in_mp3/mp4.cpp
blob: b1f1c63b1013249c6ef385b14ea5edeab62f5c6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "vlb_sub/aacdecoder.h"
#include "vlbout.h"

void CStreamInfo::setSampleRate()
{
  SetSamplingRate(CChannelInfo::SamplingRateFromIndex(GetSamplingRateIndex ()));
}

#ifndef ACTIVEX_CONTROL
//methods used by in_mp4
extern "C" 
{
	__declspec( dllexport ) int aacGetBitBuffer()
	{
    return (int) new CBitBuffer;
	}

	__declspec( dllexport ) int aacGetDecoderInterfaces(CAacDecoder **decoder, CBitBuffer *buf, CStreamInfo **info, VLBOut **dataout)
	{
    *decoder=new CAacDecoder(*buf);
    *info=new CStreamInfo;
    *dataout=new VLBOut();
    return 1;
	}
	
	__declspec( dllexport ) void aacDeleteBitBuffer(CBitBuffer *bitBuffer)
		{
		if (bitBuffer)
			delete bitBuffer;
		}

	__declspec( dllexport ) void aacDeleteDecoderInterfaces(CAacDecoder *decoder, CStreamInfo *info, VLBOut *dataout)
		{
		if (decoder)
			delete decoder;
		if (info) 
			delete info;
		if (dataout)
			delete dataout;
		}

	
}
#endif