diff options
author | Måns Rullgård | 2006-07-09 23:40:53 +0000 |
---|---|---|
committer | Måns Rullgård | 2006-07-09 23:40:53 +0000 |
commit | d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch) | |
tree | 859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/nsvdec.c | |
parent | 21227514de650da3de297acce893175230f04beb (diff) |
give AVInput/OutputFormat structs consistent names
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nsvdec.c')
-rw-r--r-- | libavformat/nsvdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index 32afbc4114..b59fa60e09 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -742,7 +742,7 @@ static int nsv_probe(AVProbeData *p) return 0; } -static AVInputFormat nsv_iformat = { +static AVInputFormat nsv_demuxer = { "nsv", "NullSoft Video format", sizeof(NSVContext), @@ -755,6 +755,6 @@ static AVInputFormat nsv_iformat = { int nsvdec_init(void) { - av_register_input_format(&nsv_iformat); + av_register_input_format(&nsv_demuxer); return 0; } |