diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/Plugins/Input/in_mp3/AACFrame.h | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/Plugins/Input/in_mp3/AACFrame.h')
-rw-r--r-- | Src/Plugins/Input/in_mp3/AACFrame.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/Src/Plugins/Input/in_mp3/AACFrame.h b/Src/Plugins/Input/in_mp3/AACFrame.h new file mode 100644 index 00000000..c53bd18c --- /dev/null +++ b/Src/Plugins/Input/in_mp3/AACFrame.h @@ -0,0 +1,43 @@ +#ifndef NULLSOFT_AACFRAME_H +#define NULLSOFT_AACFRAME_H + +class AACFrame +{ +public: + void ReadBuffer(unsigned __int8 *buffer); + bool OK(); + + enum + { + NOT_PROTECTED=1, + PROTECTED=0, + SYNC = 0xFFF, + MAIN = 0x00, + LC = 0x01, + SSR = 0x10, + LTP = 0x11, + }; + int GetNumChannels(); + int GetSampleRate(); + const wchar_t *GetProfileName(); + const wchar_t *GetChannelConfigurationName(); + int GetMPEGVersion(); // returns 2 or 4 +public: + int syncword; + int layer; + int id; + int protection; + int profile; + int sampleRateIndex; + int privateBit; + int channelConfiguration; + int original; + int home; + int frameLength; + int bufferFullness; + int numDataBlocks; + + +}; + +#endif
\ No newline at end of file |