Click here to Skip to main content
15,880,503 members
Articles / Desktop Programming / MFC

MPEG Audio Frame Header

Rate me:
Please Sign up or sign in to vote.
4.89/5 (95 votes)
12 Apr 2007LGPL317 min read 895.3K   20.8K   245  
An article about the MPEG audio frame header.
#pragma once
#include "tag.h"

class CID3V1Tag :
	public CTag
{
public:
	static CID3V1Tag* FindTag(CMPAStream* pStream, bool bAppended, DWORD dwBegin, DWORD dwEnd);
	~CID3V1Tag(void);

private:
	CID3V1Tag(CMPAStream* pStream, DWORD dwOffset);
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Web Developer
Germany Germany
Author of the shareware WinCD.

Comments and Discussions