diff options
author | Måns Rullgård <mans@mansr.com> | 2006-02-10 01:24:32 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-02-10 01:24:32 +0000 |
commit | a283db3962c07f9dfab87dc7553b61cbc4e6efb8 (patch) | |
tree | c8f8bb31ac944f65e3c141d77140c1e95387bf2f /libavformat/raw.c | |
parent | 100a74222b8f26a63f03ddb74f3ae31dcfb62b37 (diff) | |
download | ffmpeg-a283db3962c07f9dfab87dc7553b61cbc4e6efb8.tar.gz |
generate adts frame headers if required
Originally committed as revision 4970 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/raw.c')
-rw-r--r-- | libavformat/raw.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libavformat/raw.c b/libavformat/raw.c index fc01dbbb5a..89846d1541 100644 --- a/libavformat/raw.c +++ b/libavformat/raw.c @@ -417,21 +417,6 @@ AVInputFormat aac_iformat = { .extensions = "aac", }; -#ifdef CONFIG_MUXERS -AVOutputFormat aac_oformat = { - "aac", - "ADTS AAC", - "audio/aac", - "aac", - 0, - CODEC_ID_AAC, - 0, - raw_write_header, - raw_write_packet, - raw_write_trailer, -}; -#endif - AVInputFormat h261_iformat = { "h261", "raw h261", @@ -783,7 +768,6 @@ int raw_init(void) av_register_output_format(&ac3_oformat); av_register_input_format(&aac_iformat); - av_register_output_format(&aac_oformat); av_register_input_format(&dts_iformat); |