Skip to content
Snippets Groups Projects
Commit 47f38850 authored by Luca Abeni's avatar Luca Abeni Committed by Diego Biurrun
Browse files

Add video4linux2 detection to configure.

patch by Luca Abeni, lucabe72*at*email*dot*it

Originally committed as revision 4963 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 72fbc509
No related branches found
No related tags found
No related merge requests found
...@@ -1244,6 +1244,15 @@ ipv6=yes ...@@ -1244,6 +1244,15 @@ ipv6=yes
fi fi
fi fi
if test "$v4l2" = "yes"; then
# check for video4linux2 --- V4L2_PIX_FMT_YUV420
cat > $TMPC << EOF
#include <linux/videodev.h>
int dummy = V4L2_PIX_FMT_YUV420;
EOF
$cc -c -o $TMPE $TMPC 2> /dev/null || v4l2="no"
fi
case "`$cc -v 2>&1 | grep version`" in case "`$cc -v 2>&1 | grep version`" in
*gcc*) *gcc*)
CFLAGS="-Wall -Wno-switch $CFLAGS" CFLAGS="-Wall -Wno-switch $CFLAGS"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment