diff options
author | James Darnley <james.darnley@gmail.com> | 2010-03-20 13:36:43 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2010-03-20 13:36:43 +0000 |
commit | 66061a1220bc91b216e2a59f6f779c7140a1d198 (patch) | |
tree | ab922f26c63401fbeeaec0adc8c17c513ee701be /libavformat/oggparsevorbis.c | |
parent | 64f6e357fdf955e67017dfd34ed06b1478b403e2 (diff) | |
download | ffmpeg-66061a1220bc91b216e2a59f6f779c7140a1d198.tar.gz |
Add VorbisComment writing to FLAC files.
Patch by James Darnley <james darnley at gmail>.
Originally committed as revision 22605 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggparsevorbis.c')
-rw-r--r-- | libavformat/oggparsevorbis.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c index b032893e10..3bd692427c 100644 --- a/libavformat/oggparsevorbis.c +++ b/libavformat/oggparsevorbis.c @@ -30,17 +30,6 @@ #include "avformat.h" #include "oggdec.h" -/** - * VorbisComment metadata conversion mapping. - * from Ogg Vorbis I format specification: comment field and header specification - * http://xiph.org/vorbis/doc/v-comment.html - */ -const AVMetadataConv ff_vorbiscomment_metadata_conv[] = { - { "ALBUMARTIST", "album_artist"}, - { "TRACKNUMBER", "track" }, - { 0 } -}; - static int ogm_chapter(AVFormatContext *as, uint8_t *key, uint8_t *val) { int i, cnum, h, m, s, ms, keylen = strlen(key); |