Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
941e9f22
Commit
941e9f22
authored
Jan 12, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavd: remove deprecated v4l grab device.
parent
d1ad6bdb
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
376 deletions
+0
-376
configure
configure
+0
-2
Makefile
libavdevice/Makefile
+0
-1
alldevices.c
libavdevice/alldevices.c
+0
-3
avdevice.h
libavdevice/avdevice.h
+0
-4
v4l.c
libavdevice/v4l.c
+0
-366
No files found.
configure
View file @
941e9f22
...
@@ -1486,7 +1486,6 @@ oss_outdev_deps_any="soundcard_h sys_soundcard_h"
...
@@ -1486,7 +1486,6 @@ oss_outdev_deps_any="soundcard_h sys_soundcard_h"
pulse_indev_deps
=
"libpulse"
pulse_indev_deps
=
"libpulse"
sndio_indev_deps
=
"sndio_h"
sndio_indev_deps
=
"sndio_h"
sndio_outdev_deps
=
"sndio_h"
sndio_outdev_deps
=
"sndio_h"
v4l_indev_deps
=
"linux_videodev_h"
v4l2_indev_deps_any
=
"linux_videodev2_h sys_videoio_h"
v4l2_indev_deps_any
=
"linux_videodev2_h sys_videoio_h"
vfwcap_indev_deps
=
"capCreateCaptureWindow vfwcap_defines"
vfwcap_indev_deps
=
"capCreateCaptureWindow vfwcap_defines"
vfwcap_indev_extralibs
=
"-lavicap32"
vfwcap_indev_extralibs
=
"-lavicap32"
...
@@ -2988,7 +2987,6 @@ fi
...
@@ -2988,7 +2987,6 @@ fi
texi2html
-version
>
/dev/null 2>&1
&&
enable
texi2html
||
disable texi2html
texi2html
-version
>
/dev/null 2>&1
&&
enable
texi2html
||
disable texi2html
check_header linux/fb.h
check_header linux/fb.h
check_header linux/videodev.h
check_header linux/videodev2.h
check_header linux/videodev2.h
check_struct linux/videodev2.h
"struct v4l2_frmivalenum"
discrete
check_struct linux/videodev2.h
"struct v4l2_frmivalenum"
discrete
...
...
libavdevice/Makefile
View file @
941e9f22
...
@@ -20,7 +20,6 @@ OBJS-$(CONFIG_PULSE_INDEV) += pulse.o
...
@@ -20,7 +20,6 @@ OBJS-$(CONFIG_PULSE_INDEV) += pulse.o
OBJS-$(CONFIG_SNDIO_INDEV)
+=
sndio_common.o
sndio_dec.o
OBJS-$(CONFIG_SNDIO_INDEV)
+=
sndio_common.o
sndio_dec.o
OBJS-$(CONFIG_SNDIO_OUTDEV)
+=
sndio_common.o
sndio_enc.o
OBJS-$(CONFIG_SNDIO_OUTDEV)
+=
sndio_common.o
sndio_enc.o
OBJS-$(CONFIG_V4L2_INDEV)
+=
v4l2.o
OBJS-$(CONFIG_V4L2_INDEV)
+=
v4l2.o
OBJS-$(CONFIG_V4L_INDEV)
+=
v4l.o
OBJS-$(CONFIG_VFWCAP_INDEV)
+=
vfwcap.o
OBJS-$(CONFIG_VFWCAP_INDEV)
+=
vfwcap.o
OBJS-$(CONFIG_X11_GRAB_DEVICE_INDEV)
+=
x11grab.o
OBJS-$(CONFIG_X11_GRAB_DEVICE_INDEV)
+=
x11grab.o
...
...
libavdevice/alldevices.c
View file @
941e9f22
...
@@ -48,9 +48,6 @@ void avdevice_register_all(void)
...
@@ -48,9 +48,6 @@ void avdevice_register_all(void)
REGISTER_INDEV
(
PULSE
,
pulse
);
REGISTER_INDEV
(
PULSE
,
pulse
);
REGISTER_INOUTDEV
(
SNDIO
,
sndio
);
REGISTER_INOUTDEV
(
SNDIO
,
sndio
);
REGISTER_INDEV
(
V4L2
,
v4l2
);
REGISTER_INDEV
(
V4L2
,
v4l2
);
#if FF_API_V4L
REGISTER_INDEV
(
V4L
,
v4l
);
#endif
REGISTER_INDEV
(
VFWCAP
,
vfwcap
);
REGISTER_INDEV
(
VFWCAP
,
vfwcap
);
REGISTER_INDEV
(
X11_GRAB_DEVICE
,
x11_grab_device
);
REGISTER_INDEV
(
X11_GRAB_DEVICE
,
x11_grab_device
);
...
...
libavdevice/avdevice.h
View file @
941e9f22
...
@@ -55,10 +55,6 @@
...
@@ -55,10 +55,6 @@
LIBAVDEVICE_VERSION_MICRO)
LIBAVDEVICE_VERSION_MICRO)
#define LIBAVDEVICE_BUILD LIBAVDEVICE_VERSION_INT
#define LIBAVDEVICE_BUILD LIBAVDEVICE_VERSION_INT
#ifndef FF_API_V4L
#define FF_API_V4L (LIBAVDEVICE_VERSION_MAJOR < 54)
#endif
/**
/**
* Return the LIBAVDEVICE_VERSION_INT constant.
* Return the LIBAVDEVICE_VERSION_INT constant.
*/
*/
...
...
libavdevice/v4l.c
deleted
100644 → 0
View file @
d1ad6bdb
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment