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/replicant/nsmp3dec/mp3ssc.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/replicant/nsmp3dec/mp3ssc.h')
| -rw-r--r-- | Src/replicant/nsmp3dec/mp3ssc.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/Src/replicant/nsmp3dec/mp3ssc.h b/Src/replicant/nsmp3dec/mp3ssc.h new file mode 100644 index 00000000..ac2876c3 --- /dev/null +++ b/Src/replicant/nsmp3dec/mp3ssc.h @@ -0,0 +1,57 @@ +/***************************************************************************\ + * +* MPEG Layer3-Audio Decoder +* © 1997-2006 by Fraunhofer IIS + * All Rights Reserved + * + * filename: mp3ssc.h + * project : --- + * author : Martin Sieler + * date : 1999-02-15 + * contents/description: ssc helper class (Structured Status Code) + * + * +\***************************************************************************/ + +/* + * $Date: 2010/11/17 20:46:04 $ + * $Id: mp3ssc.h,v 1.1 2010/11/17 20:46:04 audiodsp Exp $ + */ + +#ifndef __MP3SSC_H__ +#define __MP3SSC_H__ + +/* ------------------------ includes --------------------------------------*/ + +#include "mp3sscdef.h" + +/*-------------------------- defines --------------------------------------*/ + +/*-------------------------------------------------------------------------*/ + +/** Helper class for more information about SSC codes. +*/ +class CMp3Ssc +{ +public: + /** Object constructor + + @param An SSC staus code to initialize the object with. + + */ + CMp3Ssc(SSC ssc); + ~CMp3Ssc() {} + + /** Operator for conversion to a text string. + + @return Textual description. + + */ + operator const char*(); + +private: + SSC m_ssc; +}; + +/*-------------------------------------------------------------------------*/ +#endif |
