From d66eff36852975129ae499c56de4340e48b9b7b4 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 19 Jan 2011 10:13:25 +0100 Subject: id3v2: use an enum for encodings instead of magic numbers. Signed-off-by: Mans Rullgard --- libavformat/id3v2.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'libavformat/id3v2.h') diff --git a/libavformat/id3v2.h b/libavformat/id3v2.h index 25ee53e9b8..c2e1add849 100644 --- a/libavformat/id3v2.h +++ b/libavformat/id3v2.h @@ -38,6 +38,13 @@ #define ID3v2_FLAG_ENCRYPTION 0x0004 #define ID3v2_FLAG_COMPRESSION 0x0008 +enum ID3v2Encoding { + ID3v2_ENCODING_ISO8859 = 0, + ID3v2_ENCODING_UTF16BOM = 1, + ID3v2_ENCODING_UTF16BE = 2, + ID3v2_ENCODING_UTF8 = 3, +}; + /** * Detect ID3v2 Header. * @param buf must be ID3v2_HEADER_SIZE byte long -- cgit v1.2.3