diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
commit | d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch) | |
tree | 859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/ffm.c | |
parent | 21227514de650da3de297acce893175230f04beb (diff) | |
download | ffmpeg-d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a.tar.gz |
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.c | 8 |
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; } |