summaryrefslogtreecommitdiffstats
path: root/debian/transcode/transcode-1.1.7/libtc/tc_lzo.h
diff options
context:
space:
mode:
Diffstat (limited to 'debian/transcode/transcode-1.1.7/libtc/tc_lzo.h')
-rw-r--r--debian/transcode/transcode-1.1.7/libtc/tc_lzo.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/debian/transcode/transcode-1.1.7/libtc/tc_lzo.h b/debian/transcode/transcode-1.1.7/libtc/tc_lzo.h
new file mode 100644
index 00000000..b6eaf5ce
--- /dev/null
+++ b/debian/transcode/transcode-1.1.7/libtc/tc_lzo.h
@@ -0,0 +1,49 @@
+/*
+ * tc_lzo.h - LZO extra (meta) data used by transcode
+ *
+ * This file is part of transcode, a video stream processing tool.
+ * transcode is free software, distributable under the terms of the GNU
+ * General Public License (version 2 or later). See the file COPYING
+ * for details.
+ */
+
+#ifndef TC_LZO_H
+#define TC_LZO_H
+
+#include <lzo/lzo1x.h>
+#include <lzo/lzoutil.h>
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <stdint.h>
+#include <sys/types.h>
+
+/* flags */
+#define TC_LZO_FORMAT_YV12 1 /* obsolete */
+#define TC_LZO_FORMAT_RGB24 2
+#define TC_LZO_FORMAT_YUY2 4
+#define TC_LZO_NOT_COMPRESSIBLE 8
+#define TC_LZO_FORMAT_YUV420P 16
+
+#define TC_LZO_HDR_SIZE 16
+/*
+ * bytes; sum of sizes of tc_lzo_header_t members;
+ * _can_ be different from sizeof(tc_lzo_header_t)
+ * because structure can be padded (even if it's unlikely
+ * since it's already 32-bit and 64-bit aligned).
+ * I don't like __attribute__(packed).
+ */
+
+typedef struct tc_lzo_header_t {
+ uint32_t magic;
+ uint32_t size;
+ uint32_t flags;
+ uint8_t method; /* compression method */
+ uint8_t level; /* compression level */
+ uint16_t pad;
+} tc_lzo_header_t;
+
+
+#endif /* TC_LZO_H */