summaryrefslogtreecommitdiffstats
path: root/Src/aacdec-mft/NSVAACDecoder.h
blob: 3c13e14be7dcbab14e7c03ef1c03c82ff9de4ee7 (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
45
#pragma once
#include "../nsv/dec_if.h"
#include "MFTDecoder.h"
#include <bfc/platform/types.h>
//#include "ADTSHeader.h"
#include "../nsv/svc_nsvFactory.h"

// {E890E15C-A6D8-4ed9-9204-85C77AB80C53}
static const GUID NSV_AAC_GUID = 
{ 0xe890e15c, 0xa6d8, 0x4ed9, { 0x92, 0x4, 0x85, 0xc7, 0x7a, 0xb8, 0xc, 0x53 } };

class NSVDecoder : public svc_nsvFactory
{
public:
	static const char *getServiceName() { return "MFT AAC NSV Decoder"; }
	static GUID getServiceGuid() { return NSV_AAC_GUID; }
	IAudioDecoder *CreateAudioDecoder(FOURCC format, IAudioOutput **output) override;

protected:
	RECVS_DISPATCH;
};

class NSVAACDecoder : public IAudioDecoder
{
public:
	static NSVAACDecoder *CreateDecoder();
	NSVAACDecoder();
	~NSVAACDecoder();
	void Initialize();
	int decode(void *in, int in_len, void *out, int *out_len, unsigned int out_fmt[8]);
	void flush();
	bool OK();

private:
	void FillOutputFormat(unsigned int out_fmt[8]);
	void CopyToOutput(void *out, int *out_len);

private:
	/* data */
	MFTDecoder decoder;	
	int in_position;
	int out_left;
	size_t source_position;
};