Browse Source

lavd: add v4l and v4l2 aliases.

tags/n0.9
Clément Bœsch 14 years ago
parent
commit
6921272b23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      libavdevice/v4l.c
  2. +1
    -1
      libavdevice/v4l2.c

+ 1
- 1
libavdevice/v4l.c View File

@@ -354,7 +354,7 @@ static const AVClass v4l_class = {
};

AVInputFormat ff_v4l_demuxer = {
.name = "video4linux",
.name = "video4linux,v4l",
.long_name = NULL_IF_CONFIG_SMALL("Video4Linux device grab"),
.priv_data_size = sizeof(VideoData),
.read_header = grab_read_header,


+ 1
- 1
libavdevice/v4l2.c View File

@@ -705,7 +705,7 @@ static const AVClass v4l2_class = {
};

AVInputFormat ff_v4l2_demuxer = {
.name = "video4linux2",
.name = "video4linux2,v4l2",
.long_name = NULL_IF_CONFIG_SMALL("Video4Linux2 device grab"),
.priv_data_size = sizeof(struct video_data),
.read_header = v4l2_read_header,


Loading…
Cancel
Save