summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorMichael Johnson <ahze@FreeBSD.org>2005-07-17 17:47:24 +0000
committerMichael Johnson <ahze@FreeBSD.org>2005-07-17 17:47:24 +0000
commitded2539d7d33f79d0b9ae74d78cbfbc31da2debb (patch)
tree2fbb1226998116ddbc0238b0c1dcea86ec6fabb6 /multimedia
parent- Chase mjpegtools lib version (diff)
- Don't build/install yuvdeinterlace since it is installed
by mjpegtools now Pointed out by: kris
Notes
Notes: svn path=/head/; revision=139411
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/mjpegtools-yuvfilters/Makefile2
-rw-r--r--multimedia/mjpegtools-yuvfilters/distinfo2
-rw-r--r--multimedia/mjpegtools-yuvfilters/files/patch-yuvdeinterlace.c18
3 files changed, 1 insertions, 21 deletions
diff --git a/multimedia/mjpegtools-yuvfilters/Makefile b/multimedia/mjpegtools-yuvfilters/Makefile
index 2bfda3980fda..1c808e2f9c9a 100644
--- a/multimedia/mjpegtools-yuvfilters/Makefile
+++ b/multimedia/mjpegtools-yuvfilters/Makefile
@@ -19,7 +19,7 @@ COMMENT= Mjpeg-tools YUV video stream processing tools
LIB_DEPENDS= lavjpeg-1.6.3:${PORTSDIR}/multimedia/mjpegtools
-CFILES= yuvdeinterlace yuvafps yuvfade yuvwater
+CFILES= yuvafps yuvfade yuvwater
PLIST_FILES= ${CFILES:S|^|bin/|}
CPPFLAGS= -I${LOCALBASE}/include/mjpegtools -DHAVE_INTTYPES_H
diff --git a/multimedia/mjpegtools-yuvfilters/distinfo b/multimedia/mjpegtools-yuvfilters/distinfo
index 3702ac5db6ff..c33e94421f61 100644
--- a/multimedia/mjpegtools-yuvfilters/distinfo
+++ b/multimedia/mjpegtools-yuvfilters/distinfo
@@ -1,5 +1,3 @@
-MD5 (yuvdeinterlace.c) = 33e410ce8f163d48a546c182e3007e74
-SIZE (yuvdeinterlace.c) = 14151
MD5 (yuvafps.c) = 32a5a2090da05f12f523db70acfced8e
SIZE (yuvafps.c) = 12536
MD5 (yuvfade.c) = 8389b22f3b35b6653ff23021153148cc
diff --git a/multimedia/mjpegtools-yuvfilters/files/patch-yuvdeinterlace.c b/multimedia/mjpegtools-yuvfilters/files/patch-yuvdeinterlace.c
deleted file mode 100644
index ad6d62bd442c..000000000000
--- a/multimedia/mjpegtools-yuvfilters/files/patch-yuvdeinterlace.c
+++ /dev/null
@@ -1,18 +0,0 @@
---- yuvdeinterlace.c.orig Thu May 5 02:20:45 2005
-+++ yuvdeinterlace.c Thu May 5 02:20:45 2005
-@@ -239,6 +239,7 @@
-
- for (y=0; y<h; y+=2)
- {
-+ register unsigned int x;
-
- if (interlaced == Y4M_ILACE_BOTTOM_FIRST ) {
- /* copy the luminance scan line from the odd frame */
-@@ -256,7 +257,6 @@
- }
-
- /* average the chroma data */
-- unsigned int x;
- for (x=0; x<(w>>1); x++) {
- yuv_data[1][(y>>1)*(w>>1)+x]= (yuv_o1data[1][(y>>1)*(w>>1)+x]+yuv_o2data[1][(y>>1)*(w>>1)+x])/2 ;
- yuv_data[2][(y>>1)*(w>>1)+x]= (yuv_o1data[2][(y>>1)*(w>>1)+x]+yuv_o2data[2][(y>>1)*(w>>1)+x])/2 ;