summaryrefslogtreecommitdiffstats
path: root/libao2/audio_out.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-07 00:17:24 +0200
committerwm4 <wm4@nowhere>2012-08-07 01:09:30 +0200
commitc113e6ed7de00dcee53f94871985a33dca9c7c29 (patch)
treeee601fc4e4f4d0b3ed712282450dcb658fcf0f29 /libao2/audio_out.c
parent229380d9bd1995583c38d2cc061d5264e3afb020 (diff)
downloadmpv-c113e6ed7de00dcee53f94871985a33dca9c7c29.tar.bz2
mpv-c113e6ed7de00dcee53f94871985a33dca9c7c29.tar.xz
Remove V4L2 decoder support (vo_v4l2 and ao_v4l2)
The removed VO and AO took MPEG data and decoded it with V4L2. I'm not exactly sure what's the use of this today, but get rid of it. As far as feeding video data to V4L2 is concerned, there are other ways. For example, there is this script, that feeds yuv4mpeg formatted raw video data to V4L2: https://raw.github.com/umlaeute/v4l2loopback/master/examples/yuv4mpeg_to_v4l2.c
Diffstat (limited to 'libao2/audio_out.c')
-rw-r--r--libao2/audio_out.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libao2/audio_out.c b/libao2/audio_out.c
index 744bcaf9bd..740ee94a63 100644
--- a/libao2/audio_out.c
+++ b/libao2/audio_out.c
@@ -41,7 +41,6 @@ extern const struct ao_driver audio_out_openal;
extern const struct ao_driver audio_out_null;
extern const struct ao_driver audio_out_alsa;
extern const struct ao_driver audio_out_dsound;
-extern const struct ao_driver audio_out_v4l2;
extern const struct ao_driver audio_out_pcm;
extern const struct ao_driver audio_out_pss;
extern const struct ao_driver audio_out_portaudio;
@@ -73,9 +72,6 @@ static const struct ao_driver * const audio_out_drivers[] = {
#ifdef CONFIG_OPENAL
&audio_out_openal,
#endif
-#ifdef CONFIG_V4L2_DECODER
- &audio_out_v4l2,
-#endif
&audio_out_null,
// should not be auto-selected:
&audio_out_pcm,