diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-09-23 20:50:11 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-09-24 12:11:17 +0200 |
commit | 30b4ee7901ec5dbe24f1c75c0c0b43ba551c858b (patch) | |
tree | 1280949167f244216ee5ef382be0928a1abbe4e2 /libavdevice/v4l.c | |
parent | 9ff6d0791b220d80844b45c9217113306a50a6cc (diff) | |
download | ffmpeg-30b4ee7901ec5dbe24f1c75c0c0b43ba551c858b.tar.gz |
Use explicit struct initializers for AVOutputFormat/AVInputFormat declarations.
Diffstat (limited to 'libavdevice/v4l.c')
-rw-r--r-- | libavdevice/v4l.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/libavdevice/v4l.c b/libavdevice/v4l.c index b0f0452d8e..5c1caf858a 100644 --- a/libavdevice/v4l.c +++ b/libavdevice/v4l.c @@ -354,14 +354,13 @@ static const AVClass v4l_class = { }; AVInputFormat ff_v4l_demuxer = { - "video4linux", - NULL_IF_CONFIG_SMALL("Video4Linux device grab"), - sizeof(VideoData), - NULL, - grab_read_header, - grab_read_packet, - grab_read_close, - .flags = AVFMT_NOFILE, - .priv_class = &v4l_class, + .name = "video4linux", + .long_name = NULL_IF_CONFIG_SMALL("Video4Linux device grab"), + .priv_data_size = sizeof(VideoData), + .read_header = grab_read_header, + .read_packet = grab_read_packet, + .read_close = grab_read_close, + .flags = AVFMT_NOFILE, + .priv_class = &v4l_class, }; #endif /* FF_API_V4L */ |