summaryrefslogtreecommitdiffstats
path: root/ducktm1.c
blob: 6fd32b1043bfa152a2f7f6985a83024d186115e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)
{
}