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/asf.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/asf.c')
-rw-r--r-- | libavformat/asf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c index fd0da6ed3a..88a0680948 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -840,7 +840,7 @@ static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int return 0; } -static AVInputFormat asf_iformat = { +static AVInputFormat asf_demuxer = { "asf", "asf format", sizeof(ASFContext), @@ -853,16 +853,16 @@ static AVInputFormat asf_iformat = { }; #ifdef CONFIG_MUXERS - extern AVOutputFormat asf_oformat; - extern AVOutputFormat asf_stream_oformat; + extern AVOutputFormat asf_muxer; + extern AVOutputFormat asf_stream_muxer; #endif //CONFIG_MUXERS int asf_init(void) { - av_register_input_format(&asf_iformat); + av_register_input_format(&asf_demuxer); #ifdef CONFIG_MUXERS - av_register_output_format(&asf_oformat); - av_register_output_format(&asf_stream_oformat); + av_register_output_format(&asf_muxer); + av_register_output_format(&asf_stream_muxer); #endif //CONFIG_MUXERS return 0; } |