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/nsvdec.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/nsvdec.c')
-rw-r--r--libavformat/nsvdec.c4
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;
}