Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-10 03:40:53 +0400
committerMåns Rullgård <mans@mansr.com>2006-07-10 03:40:53 +0400
commitd2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch)
tree859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/wav.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/wav.c')
-rw-r--r--libavformat/wav.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c
index 79a966c9cd..77642ba62b 100644
--- a/libavformat/wav.c
+++ b/libavformat/wav.c
@@ -405,7 +405,7 @@ static int wav_read_seek(AVFormatContext *s,
}
-static AVInputFormat wav_iformat = {
+static AVInputFormat wav_demuxer = {
"wav",
"wav format",
sizeof(WAVContext),
@@ -417,7 +417,7 @@ static AVInputFormat wav_iformat = {
};
#ifdef CONFIG_MUXERS
-static AVOutputFormat wav_oformat = {
+static AVOutputFormat wav_muxer = {
"wav",
"wav format",
"audio/x-wav",
@@ -433,9 +433,9 @@ static AVOutputFormat wav_oformat = {
int ff_wav_init(void)
{
- av_register_input_format(&wav_iformat);
+ av_register_input_format(&wav_demuxer);
#ifdef CONFIG_MUXERS
- av_register_output_format(&wav_oformat);
+ av_register_output_format(&wav_muxer);
#endif //CONFIG_MUXERS
return 0;
}