summaryrefslogtreecommitdiff
path: root/libavformat/au.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-09 23:40:53 +0000
committerMåns Rullgård <mans@mansr.com>2006-07-09 23:40:53 +0000
commitd2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch)
tree859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/au.c
parent21227514de650da3de297acce893175230f04beb (diff)
give AVInput/OutputFormat structs consistent names
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/au.c')
-rw-r--r--libavformat/au.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/au.c b/libavformat/au.c
index d81215795b..f4762607e7 100644
--- a/libavformat/au.c
+++ b/libavformat/au.c
@@ -178,7 +178,7 @@ static int au_read_close(AVFormatContext *s)
return 0;
}
-static AVInputFormat au_iformat = {
+static AVInputFormat au_demuxer = {
"au",
"SUN AU Format",
0,
@@ -190,7 +190,7 @@ static AVInputFormat au_iformat = {
};
#ifdef CONFIG_MUXERS
-static AVOutputFormat au_oformat = {
+static AVOutputFormat au_muxer = {
"au",
"SUN AU Format",
"audio/basic",
@@ -206,9 +206,9 @@ static AVOutputFormat au_oformat = {
int au_init(void)
{
- av_register_input_format(&au_iformat);
+ av_register_input_format(&au_demuxer);
#ifdef CONFIG_MUXERS
- av_register_output_format(&au_oformat);
+ av_register_output_format(&au_muxer);
#endif //CONFIG_MUXERS
return 0;
}