diff options
author | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
---|---|---|
committer | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
commit | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/aacdec/MP4AACDecoder.h | |
parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz |
Initial community commit
Diffstat (limited to 'Src/aacdec/MP4AACDecoder.h')
-rw-r--r-- | Src/aacdec/MP4AACDecoder.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Src/aacdec/MP4AACDecoder.h b/Src/aacdec/MP4AACDecoder.h new file mode 100644 index 00000000..ebde1d48 --- /dev/null +++ b/Src/aacdec/MP4AACDecoder.h @@ -0,0 +1,40 @@ +#pragma once +#include "../in_mp4/mpeg4audio.h" +#include "incs/mp4AudioDecIfc.h" + +// {654B5212-018E-45f6-88CF-75862C85D99A} +static const GUID mp4_aac_guid = { 0x654b5212, 0x18e, 0x45f6, { 0x88, 0xcf, 0x75, 0x86, 0x2c, 0x85, 0xd9, 0x9a } }; + +class MP4AACDecoder : public MP4AudioDecoder +{ +public: + static const char *getServiceName() { return "AAC MP4 Decoder"; } + static GUID getServiceGuid() { return mp4_aac_guid; } + MP4AACDecoder(); + int Open(); + int OpenEx(size_t bits, size_t maxChannels, bool useFloat); + void Close(); + int GetCurrentBitrate(unsigned int *bitrate); + int AudioSpecificConfiguration(void *buffer, size_t buffer_size); // reads ASC block from mp4 file + void Flush(); + int GetOutputProperties(unsigned int *sampleRate, unsigned int *channels, unsigned int *bitsPerSample); + int GetOutputPropertiesEx(unsigned int *sampleRate, unsigned int *channels, unsigned int *bitsPerSample, bool *useFloat); + int DecodeSample(void *inputBuffer, size_t inputBufferBytes, void *outputBuffer, size_t *outputBufferBytes); + int OutputFrameSize(size_t *frameSize); + int CanHandleCodec(const char *codecName); + int CanHandleType(uint8_t type); + int CanHandleMPEG4Type(uint8_t type); + int SetGain(float _gain) { gain=_gain; return MP4_SUCCESS; } +private: + mp4AudioDecoderHandle decoder; + CCompositionUnitPtr composition_unit; /* output */ + CAccessUnitPtr access_unit; /* input */ + + size_t preDelay; + unsigned int bitsPerSample; + size_t maxChannels; + bool isFloat; + float gain; +protected: + RECVS_DISPATCH; +}; |