summaryrefslogtreecommitdiff
path: root/command/decoder.cpp
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2010-06-08 19:26:53 +0200
committerJochen Dolze <vdr@dolze.de>2010-06-08 19:26:53 +0200
commit5623eda874dd036387c7a9a99da805825a669567 (patch)
treee413d4ae0099bdb974e0c778034375efb35bf62a /command/decoder.cpp
parentb41ac6500b7e6c7c7da546be116ff2923fe7ee86 (diff)
downloadvdr-plugin-markad-5623eda874dd036387c7a9a99da805825a669567.tar.gz
vdr-plugin-markad-5623eda874dd036387c7a9a99da805825a669567.tar.bz2
Re-ordered includes
Diffstat (limited to 'command/decoder.cpp')
-rw-r--r--command/decoder.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/command/decoder.cpp b/command/decoder.cpp
index 6b01404..4d94950 100644
--- a/command/decoder.cpp
+++ b/command/decoder.cpp
@@ -5,6 +5,22 @@
*
*/
+#define __STDC_CONSTANT_MACROS
+
+#include <stdint.h>
+#include <sched.h>
+#include <sys/types.h>
+#include <string.h>
+#include <cstdlib>
+
+#ifndef DECLARE_ALIGNED
+#define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
+#endif
+
+#ifndef CPU_COUNT
+#define CPU_COUNT(i) 1 // very crude ;)
+#endif
+
#include "decoder.h"
cMarkAdDecoder::cMarkAdDecoder(bool useH264, bool useMP2, bool hasAC3)