Mercurial > libavformat.hg
changeset 1678:71078c1009c4 libavformat
export a few more codec_tag-codec_id tables
author | michael |
---|---|
date | Sun, 21 Jan 2007 02:12:34 +0000 |
parents | 2a85c82b8538 |
children | ba58d49d4685 |
files | aiff.c au.c flvenc.c vocdec.c vocenc.c |
diffstat | 5 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/aiff.c Sun Jan 21 01:39:17 2007 +0000 +++ b/aiff.c Sun Jan 21 02:12:34 2007 +0000 @@ -417,6 +417,7 @@ aiff_read_packet, aiff_read_close, aiff_read_seek, + .codec_tag= {codec_aiff_tags}, }; #endif @@ -432,5 +433,6 @@ aiff_write_header, aiff_write_packet, aiff_write_trailer, + .codec_tag= {codec_aiff_tags}, }; #endif
--- a/au.c Sun Jan 21 01:39:17 2007 +0000 +++ b/au.c Sun Jan 21 02:12:34 2007 +0000 @@ -190,6 +190,7 @@ au_read_packet, au_read_close, pcm_read_seek, + .codec_tag= {codec_au_tags}, }; #endif @@ -205,5 +206,6 @@ au_write_header, au_write_packet, au_write_trailer, + .codec_tag= {codec_au_tags}, }; #endif //CONFIG_AU_MUXER
--- a/flvenc.c Sun Jan 21 01:39:17 2007 +0000 +++ b/flvenc.c Sun Jan 21 02:12:34 2007 +0000 @@ -332,4 +332,5 @@ flv_write_header, flv_write_packet, flv_write_trailer, + .codec_tag= {flv_video_codec_ids, flv_audio_codec_ids}, };