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/nut.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/nut.c')
-rw-r--r-- | libavformat/nut.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index 1605afa9ae..d3e37ea076 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -1419,7 +1419,7 @@ static int nut_read_close(AVFormatContext *s) return 0; } -static AVInputFormat nut_iformat = { +static AVInputFormat nut_demuxer = { "nut", "nut format", sizeof(NUTContext), @@ -1433,7 +1433,7 @@ static AVInputFormat nut_iformat = { }; #ifdef CONFIG_MUXERS -static AVOutputFormat nut_oformat = { +static AVOutputFormat nut_muxer = { "nut", "nut format", "video/x-nut", @@ -1456,9 +1456,9 @@ static AVOutputFormat nut_oformat = { int nut_init(void) { - av_register_input_format(&nut_iformat); + av_register_input_format(&nut_demuxer); #ifdef CONFIG_MUXERS - av_register_output_format(&nut_oformat); + av_register_output_format(&nut_muxer); #endif //CONFIG_MUXERS return 0; } |