mirror of
https://git.freebsd.org/ports.git
synced 2025-05-12 23:31:50 -04:00
While here add the ISO/IEC and ITU licenses and fix a compiler warning regarding a mis-compiled comparison (!a == b) --> (!(a == b)) to not compare !a with b (while !(a == b) was clearly intended).
12 lines
423 B
C
12 lines
423 B
C
--- lencod/src/configfile.c.orig 2020-09-29 10:22:20 UTC
|
|
+++ lencod/src/configfile.c
|
|
@@ -70,6 +70,9 @@
|
|
#include "img_io.h"
|
|
#include "ratectl.h"
|
|
|
|
+InputParameters cfgparams;
|
|
+char errortext[ET_SIZE];
|
|
+
|
|
static void PatchInp (VideoParameters *p_Vid, InputParameters *p_Inp);
|
|
static int TestEncoderParams (Mapping *Map, int bitdepth_qp_scale[3]);
|
|
static int DisplayEncoderParams (Mapping *Map);
|