Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-01-21 05:12:34 +0300
committerMichael Niedermayer <michaelni@gmx.at>2007-01-21 05:12:34 +0300
commitedb6e506828cc0ebbbf3c45701479ddab17045be (patch)
tree9086f7e91a17076cb14ff7fad5e07a274a35c748 /libavformat/aiff.c
parent7caf0cc62cad8a5548c3e7e0b35ead00584100c8 (diff)
export a few more codec_tag-codec_id tables
Originally committed as revision 7594 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/aiff.c')
-rw-r--r--libavformat/aiff.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/aiff.c b/libavformat/aiff.c
index d05a366e61..6de82872c7 100644
--- a/libavformat/aiff.c
+++ b/libavformat/aiff.c
@@ -417,6 +417,7 @@ AVInputFormat aiff_demuxer = {
aiff_read_packet,
aiff_read_close,
aiff_read_seek,
+ .codec_tag= {codec_aiff_tags},
};
#endif
@@ -432,5 +433,6 @@ AVOutputFormat aiff_muxer = {
aiff_write_header,
aiff_write_packet,
aiff_write_trailer,
+ .codec_tag= {codec_aiff_tags},
};
#endif