aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/wav.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-01-21 01:39:17 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-01-21 01:39:17 +0000
commit7caf0cc62cad8a5548c3e7e0b35ead00584100c8 (patch)
treee1562ae2a42534630673125d7f7712da466f43be /libavformat/wav.c
parent5c4e1928c0e79438be23cbec9ce579d790bb985a (diff)
downloadandroid_external_ffmpeg-7caf0cc62cad8a5548c3e7e0b35ead00584100c8.tar.gz
android_external_ffmpeg-7caf0cc62cad8a5548c3e7e0b35ead00584100c8.tar.bz2
android_external_ffmpeg-7caf0cc62cad8a5548c3e7e0b35ead00584100c8.zip
add codec_id <-> codec_tag tables to AVIn/OutputFormat
Originally committed as revision 7593 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r--libavformat/wav.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c
index 7fb9823498..72e4507df6 100644
--- a/libavformat/wav.c
+++ b/libavformat/wav.c
@@ -235,6 +235,7 @@ AVInputFormat wav_demuxer = {
wav_read_packet,
wav_read_close,
wav_read_seek,
+ .codec_tag= {codec_wav_tags},
};
#endif
#ifdef CONFIG_WAV_MUXER
@@ -249,5 +250,6 @@ AVOutputFormat wav_muxer = {
wav_write_header,
wav_write_packet,
wav_write_trailer,
+ .codec_tag= {codec_wav_tags},
};
#endif