opnsense-ports/multimedia/mpeg2codec/files/patch-src_mpeg2enc_mpeg2enc.c
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

23 lines
567 B
C

--- ./src/mpeg2enc/mpeg2enc.c 1996/11/25 21:18:23 1.1
+++ ./src/mpeg2enc/mpeg2enc.c 1996/11/25 21:22:40
@@ -29,6 +29,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <floatingpoint.h>
#define GLOBAL /* used by global.h */
#include "config.h"
@@ -50,6 +51,12 @@
printf("Usage: mpeg2encode in.par out.m2v\n");
exit(0);
}
+
+ /*
+ * this prevents a floating point exception in calcSNR (stats.c) when
+ * working on black and white images (charnier@lirmm.fr)
+ */
+ fpsetmask(0);
/* read parameter file */
readparmfile(argv[1]);