From d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= 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/daud.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/daud.c') diff --git a/libavformat/daud.c b/libavformat/daud.c index f017806..7799a1f 100644 --- a/libavformat/daud.c +++ b/libavformat/daud.c @@ -43,7 +43,7 @@ static int daud_packet(AVFormatContext *s, AVPacket *pkt) { return ret; } -static AVInputFormat daud_iformat = { +static AVInputFormat daud_demuxer = { "daud", "D-Cinema audio format", 0, @@ -57,7 +57,7 @@ static AVInputFormat daud_iformat = { int daud_init(void) { - av_register_input_format(&daud_iformat); + av_register_input_format(&daud_demuxer); return 0; } -- cgit v1.1