mirror of
https://github.com/mpv-player/mpv
synced 2024-11-14 22:48:35 +01:00
361bd9c4f6
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4302 b3059339-0415-0410-9bf9-f77b7e298cf2
18 lines
259 B
C
18 lines
259 B
C
/*
|
|
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)
|
|
{
|
|
}
|