From d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sun, 9 Jul 2006 23:40:53 +0000 Subject: give AVInput/OutputFormat structs consistent names Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/adtsenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/adtsenc.c') diff --git a/libavformat/adtsenc.c b/libavformat/adtsenc.c index e67455ec80..bf8e11b8c1 100644 --- a/libavformat/adtsenc.c +++ b/libavformat/adtsenc.c @@ -107,7 +107,7 @@ static int adts_write_packet(AVFormatContext *s, AVPacket *pkt) return 0; } -static AVOutputFormat adts_oformat = { +static AVOutputFormat adts_muxer = { "adts", "ADTS AAC", "audio/aac", @@ -122,6 +122,6 @@ static AVOutputFormat adts_oformat = { int ff_adts_init(void) { - av_register_output_format(&adts_oformat); + av_register_output_format(&adts_muxer); return 0; } -- cgit v1.2.3