summaryrefslogtreecommitdiff
path: root/libavformat/oggdec.h
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2009-06-13 22:45:58 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2009-06-13 22:45:58 +0000
commitd7bb185f993fe10bf7feec80e262d2e39147c31b (patch)
tree9ecfd4a8502aec838be6c2b6ce3e5da9825b13d0 /libavformat/oggdec.h
parent7ca1295985b03034653c03f8f3bca9e00bcf8b83 (diff)
Add a VorbisComment metadata conversion table and use it in the FLAC and
Ogg demuxers. Originally committed as revision 19186 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggdec.h')
-rw-r--r--libavformat/oggdec.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/oggdec.h b/libavformat/oggdec.h
index cbba414626..91a59742ff 100644
--- a/libavformat/oggdec.h
+++ b/libavformat/oggdec.h
@@ -26,6 +26,7 @@
#define AVFORMAT_OGGDEC_H
#include "avformat.h"
+#include "metadata.h"
struct ogg_codec {
const int8_t *magic;
@@ -91,6 +92,8 @@ extern const struct ogg_codec ff_speex_codec;
extern const struct ogg_codec ff_theora_codec;
extern const struct ogg_codec ff_vorbis_codec;
+extern const AVMetadataConv ff_vorbiscomment_metadata_conv[];
+
int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size);
#endif /* AVFORMAT_OGGDEC_H */