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

github.com/FFmpeg/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/ffm.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/ffm.c')
-rw-r--r--libavformat/ffm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/ffm.c b/libavformat/ffm.c
index 987bc828cc..3a0022450e 100644
--- a/libavformat/ffm.c
+++ b/libavformat/ffm.c
@@ -761,7 +761,7 @@ static int ffm_probe(AVProbeData *p)
return 0;
}
-static AVInputFormat ffm_iformat = {
+static AVInputFormat ffm_demuxer = {
"ffm",
"ffm format",
sizeof(FFMContext),
@@ -773,7 +773,7 @@ static AVInputFormat ffm_iformat = {
};
#ifdef CONFIG_MUXERS
-static AVOutputFormat ffm_oformat = {
+static AVOutputFormat ffm_muxer = {
"ffm",
"ffm format",
"",
@@ -790,9 +790,9 @@ static AVOutputFormat ffm_oformat = {
int ffm_init(void)
{
- av_register_input_format(&ffm_iformat);
+ av_register_input_format(&ffm_demuxer);
#ifdef CONFIG_MUXERS
- av_register_output_format(&ffm_oformat);
+ av_register_output_format(&ffm_muxer);
#endif //CONFIG_MUXERS
return 0;
}