mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 16:10:33 -04:00
server and a generic audio and video file converter. It can convert a standard video source into several file formats based on DCT/motion compensation encoding. Sound is compressed in MPEG audio layer 2 or using an AC3 compatible stream. What makes ffmpeg interesting ? - Simple and efficient video encoder: outputs MPEG1, H263, Real Video(tm), MPEG4, DIVX and MJPEG compatible bitstreams using the same encoder core. - Hyper fast MPEG audio layer 2 compression (50 times faster than realtime on a K6 500). [snip -> rest on website below] ffmpeg is made of two programs: * ffmpeg: soft VCR which encodes in real time to several formats. It can also encode from any supported input file format to any input supported format. * ffserver: high performance live broadcast streaming server based on the ffmpeg core encoders. WWW: http://ffmpeg.mplayerhq.hu/
31 lines
751 B
Text
31 lines
751 B
Text
--- configure.orig 2011-06-21 21:29:25.000000000 +0200
|
|
+++ configure 2011-06-23 13:36:46.099381871 +0200
|
|
@@ -1657,7 +1657,7 @@
|
|
nm_opts='-g'
|
|
|
|
# machine
|
|
-arch_default=$(uname -m)
|
|
+arch_default=$(uname -p)
|
|
cpu="generic"
|
|
|
|
# OS
|
|
@@ -2966,8 +2966,8 @@
|
|
texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
|
|
|
|
check_header linux/fb.h
|
|
-check_header linux/videodev.h
|
|
-check_header linux/videodev2.h
|
|
+#check_header linux/videodev.h
|
|
+#check_header linux/videodev2.h
|
|
check_header sys/videoio.h
|
|
|
|
check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
|
|
@@ -3322,7 +3322,7 @@
|
|
SRC_PATH="$source_path"
|
|
SRC_PATH_BARE=$source_path
|
|
CC_IDENT=$cc_ident
|
|
-ARCH=$arch
|
|
+FFMPEG_ARCH=$arch
|
|
CC=$cc
|
|
AS=$as
|
|
LD=$ld
|