mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
- Fix modfps filter [1]
- Fix plist PR: ports/70774 [1] Submitted by: Stefan Walter <sw@gegenunendlich.de> Approved by: maintainer timeout (1 month)
This commit is contained in:
parent
a35b568f78
commit
43fc430a3a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=118663
3 changed files with 18 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= transcode
|
||||
PORTVERSION= 0.6.12
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= multimedia
|
||||
MASTER_SITES= http://www.zebra.fh-weingarten.de/~transcode/pre/
|
||||
|
||||
|
|
16
multimedia/transcode/files/patch-filter:filter_modfps.c
Normal file
16
multimedia/transcode/files/patch-filter:filter_modfps.c
Normal file
|
@ -0,0 +1,16 @@
|
|||
--- filter/filter_modfps.c.old Sat Aug 21 13:11:20 2004
|
||||
+++ filter/filter_modfps.c Sat Aug 21 13:13:33 2004
|
||||
@@ -77,6 +77,13 @@
|
||||
#include "framebuffer.h"
|
||||
#include "optstr.h"
|
||||
|
||||
+#if !defined(HAVE_LRINTF)
|
||||
+static inline long int lrint(double x)
|
||||
+{
|
||||
+ return (long)(rint(x));
|
||||
+}
|
||||
+#endif
|
||||
+
|
||||
static int show_results=0;
|
||||
|
||||
/*-------------------------------------------------
|
|
@ -71,6 +71,7 @@ lib/transcode/filter_decimate.so
|
|||
lib/transcode/filter_denoise3d.so
|
||||
lib/transcode/filter_detectclipping.so
|
||||
lib/transcode/filter_detectsilence.so
|
||||
lib/transcode/filter_dilyuvmmx.so
|
||||
lib/transcode/filter_divxkey.so
|
||||
lib/transcode/filter_doublefps.so
|
||||
lib/transcode/filter_dnr.so
|
||||
|
|
Loading…
Add table
Reference in a new issue