summaryrefslogtreecommitdiff
path: root/libavcodec/flac.h
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2009-01-25 00:33:25 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2009-01-25 00:33:25 +0000
commitd38b88213ed25ed4c552a00b2b6ed07e93b4590b (patch)
tree388f21ea4ec9e1d198eeac14b1cb4b9e0d488097 /libavcodec/flac.h
parent6cde949a2084293c7f3661460b5758f11908cac9 (diff)
define FLAC metadata types in flac.h
Originally committed as revision 16765 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flac.h')
-rw-r--r--libavcodec/flac.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libavcodec/flac.h b/libavcodec/flac.h
index e110f48cec..bab6b1d16d 100644
--- a/libavcodec/flac.h
+++ b/libavcodec/flac.h
@@ -29,6 +29,17 @@
#include "avcodec.h"
+enum {
+ FLAC_METADATA_TYPE_STREAMINFO = 0,
+ FLAC_METADATA_TYPE_PADDING,
+ FLAC_METADATA_TYPE_APPLICATION,
+ FLAC_METADATA_TYPE_SEEKTABLE,
+ FLAC_METADATA_TYPE_VORBIS_COMMENT,
+ FLAC_METADATA_TYPE_CUESHEET,
+ FLAC_METADATA_TYPE_PICTURE,
+ FLAC_METADATA_TYPE_INVALID = 127
+};
+
/**
* Data needed from the Streaminfo header for use by the raw FLAC demuxer
* and/or the FLAC decoder.