28bdba5f3c
* Add VAAPI HW decoding support * Add OpenGL 2.0 output plugin * Add crop support to XShm output plugins * Add color matrix and full range support to OpenGL/Xv/XShm output plugins * Add test image generator input plugin * Add fast libjpeg based JPEG decoder * Add max. Xv image size detection to Xv video output plugin * Fix crash when trying to display too large jpeg image with Xv output plugin * Fix possible crash when stopping playback with deinterlacing enabled * Support large PAT in MPEG TS * Handle EAC3 audio (via ffmpeg) OBS-URL: https://build.opensuse.org/package/show/multimedia:xine/xine-lib?expand=0&rev=71
23 lines
891 B
Diff
23 lines
891 B
Diff
--- m4/input.m4 2012-02-09 00:41:11.000000000 +0100
|
|
+++ m4/input.m4 2013-05-29 22:52:23.322037277 +0200
|
|
@@ -93,7 +93,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 2012-02-05 20:17:02.000000000 +0100
|
|
+++ src/input/input_v4l.c 2013-05-29 22:52:23.324037225 +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>
|