ports/multimedia/dvbcut/files/patch-index.h
Stefan Eßer 225726f71f Add dvbcut, a Qt based program for cutting of MPEG TS stream files
(e.g. DVB) and the conversion from MPEG transport stream to program
stream.
2005-12-29 00:18:05 +00:00

15 lines
322 B
C

--- src/index.h~ Mon Dec 19 22:52:11 2005
+++ src/index.h Mon Dec 19 23:05:24 2005
@@ -20,7 +20,11 @@
#define _DVBCUT_INDEX_H
#include <stdint.h>
-#include <byteswap.h>
+#if defined(__FreeBSD__)
+#include <sys/endian.h>
+#else
+#include <byteswap.h>
+#endif
#include "types.h"
#include "pts.h"
#include "defines.h"