summaryrefslogtreecommitdiff
path: root/libavformat/dv1394.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-09 23:40:53 +0000
committerMåns Rullgård <mans@mansr.com>2006-07-09 23:40:53 +0000
commitd2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch)
tree859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/dv1394.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/dv1394.c')
-rw-r--r--libavformat/dv1394.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/dv1394.c b/libavformat/dv1394.c
index 1e0a5ab585..9d229fc957 100644
--- a/libavformat/dv1394.c
+++ b/libavformat/dv1394.c
@@ -227,7 +227,7 @@ static int dv1394_close(AVFormatContext * context)
return 0;
}
-static AVInputFormat dv1394_format = {
+static AVInputFormat dv1394_demuxer = {
.name = "dv1394",
.long_name = "dv1394 A/V grab",
.priv_data_size = sizeof(struct dv1394_data),
@@ -239,6 +239,6 @@ static AVInputFormat dv1394_format = {
int dv1394_init(void)
{
- av_register_input_format(&dv1394_format);
+ av_register_input_format(&dv1394_demuxer);
return 0;
}