f2fb51cd14
The Quasar DV codec (libdv) is a software codec for DV video, the encoding format used by most digital camcorders, typically those that support the IEEE 1394 (a.k.a. FireWire or i.Link) interface. Libdv was developed according to the official standards for DV video: IEC 61834 and SMPTE 314M. WWW: http://libdv.sourceforge.net/ from Jacob Meuser <jakemsr at jakemsr.com>
15 lines
378 B
Plaintext
15 lines
378 B
Plaintext
$OpenBSD: patch-libdv_encode_c,v 1.1.1.1 2004/06/26 18:00:27 sturm Exp $
|
|
--- libdv/encode.c.orig 2002-12-31 15:03:40.000000000 -0800
|
|
+++ libdv/encode.c 2004-01-09 00:20:08.000000000 -0800
|
|
@@ -46,7 +46,9 @@
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
-#include <stdint.h>
|
|
+#if HAVE_STDINT_H
|
|
+# include <stdint.h>
|
|
+#endif
|
|
|
|
#include "dv.h"
|
|
#include "encode.h"
|