summaryrefslogtreecommitdiffstats
path: root/ducktm1.c
diff options
context:
space:
mode:
Diffstat (limited to 'ducktm1.c')
-rw-r--r--ducktm1.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/ducktm1.c b/ducktm1.c
new file mode 100644
index 0000000000..6fd32b1043
--- /dev/null
+++ b/ducktm1.c
@@ -0,0 +1,17 @@
+/*
+ Duck Truemotion v1 Decoder for MPlayer
+ by Mike Melanson
+*/
+
+#include "config.h"
+#include "bswap.h"
+
+void decode_duck_tm1(
+ unsigned char *encoded,
+ int encoded_size,
+ unsigned char *decoded,
+ int width,
+ int height,
+ int bytes_per_pixel)
+{
+}