1a5776972a
* Update german translation. * Add bass downmix support to AC3 decoder. * Add experimental YCgCo colorspace support. * Add avformat demux plugin. - Support for new formats and protocols. - Proper rtsp support (with avformat+rtsp://, rtsp+tcp:// and rtsp+http:// mrls). - by default native xine demux plugins are probed first. This can be overridden in config, by selecting demuxer in mrl (#demux:avformat), or by using "avformat+" mrl prefix. * Add avio (libavformat) input plugin: - Support for new protocols (https://, ftp://, sftp://, ...). - Support for seekable http streams (with "avio+http://" mrl). - By default native xine input plugins are used. This can be overridden in config or by using "avio+" mrl prefix. * Recognise & use HEVC/H.265. (ffmpeg) * Add support for HEVC/H.265 to the mpeg-ts demuxer. * Add support for HEVC/H.265 and VP9 to the matroska demuxer. * Add VP8/VP9 decoder using libvpx. * Modernise Quicktime demuxer: - Multiple user selectable audio traks. - Support AC3, EAC3, vorbis, Purevoice audio. - Support ISO fragment media files. - More safety on broken files. - Slightly faster. * Recognise & use ADPCM G.726 and ATRAC3. (ffmpeg/libva) * Build fixes. * Fix HDMV subtitle channel. * FFmpeg compatibility fixes. * Some colour format conversion fixes. * Fix RealVideo re-ordered PTS: pass through, let the decoder re-order it. OBS-URL: https://build.opensuse.org/package/show/multimedia:xine/xine-lib?expand=0&rev=75
23 lines
891 B
Diff
23 lines
891 B
Diff
--- m4/input.m4 2014-02-26 16:49:10.000000000 +0100
|
|
+++ m4/input.m4 2014-04-11 23:22:34.923765318 +0200
|
|
@@ -96,7 +96,7 @@
|
|
XINE_ARG_ENABLE([v4l], [Enable Video4Linux support])
|
|
if test x"$enable_v4l" != x"no"; then
|
|
have_v4l=yes
|
|
- AC_CHECK_HEADERS([linux/videodev.h], , [have_v4l=no])
|
|
+ AC_CHECK_HEADERS([libv4l1-videodev.h], , [have_v4l=no])
|
|
AC_CHECK_HEADERS([asm/types.h])
|
|
if test x"$hard_enable_v4l" = x"yes" && test x"$have_v4l" != x"yes"; then
|
|
AC_MSG_ERROR([Video4Linux support requested, but prerequisite headers not found.])
|
|
--- src/input/input_v4l.c 2014-03-11 14:28:30.000000000 +0100
|
|
+++ src/input/input_v4l.c 2014-04-11 23:22:34.926765238 +0200
|
|
@@ -47,7 +47,7 @@
|
|
*/
|
|
#define _LINUX_TIME_H
|
|
|
|
-#include <linux/videodev.h>
|
|
+#include <libv4l1-videodev.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/mman.h>
|
|
#include <errno.h>
|