diff options
author | wm4 <wm4@nowhere> | 2012-08-07 00:17:24 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2012-08-07 01:09:30 +0200 |
commit | c113e6ed7de00dcee53f94871985a33dca9c7c29 (patch) | |
tree | ee601fc4e4f4d0b3ed712282450dcb658fcf0f29 /Makefile | |
parent | 229380d9bd1995583c38d2cc061d5264e3afb020 (diff) | |
download | mpv-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 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -346,7 +346,6 @@ SRCS_COMMON = asxparser.c \ libmpdemux/mf.c \ libmpdemux/mp3_hdr.c \ libmpdemux/mp_taglists.c \ - libmpdemux/mpeg_packetizer.c \ libmpdemux/video.c \ libvo/osd.c \ libvo/eosd_packer.c \ @@ -399,8 +398,6 @@ SRCS_MPLAYER-$(OSS) += libao2/ao_oss.c SRCS_MPLAYER-$(PULSE) += libao2/ao_pulse.c SRCS_MPLAYER-$(PORTAUDIO) += libao2/ao_portaudio.c SRCS_MPLAYER-$(RSOUND) += libao2/ao_rsound.c -SRCS_MPLAYER-$(V4L2) += libvo/vo_v4l2.c -SRCS_MPLAYER-$(V4L2) += libao2/ao_v4l2.c SRCS_MPLAYER-$(VDPAU) += libvo/vo_vdpau.c SRCS_MPLAYER-$(X11) += libvo/vo_x11.c libvo/x11_common.c |