comparison qtsmc.c @ 4227:4b652eac6738

added skeleton for QT SMC decoder
author melanson
date Fri, 18 Jan 2002 05:43:48 +0000
parents
children 818be6ba8758
comparison
equal deleted inserted replaced
4226:63baf6de03e1 4227:4b652eac6738
1 /*
2 Apple Graphics (SMC) Decoder for MPlayer
3 by Mike Melanson
4 */
5
6 #include "config.h"
7 #include "bswap.h"
8
9 #define BE_16(x) (be2me_16(*(unsigned short *)(x)))
10 #define BE_32(x) (be2me_32(*(unsigned int *)(x)))
11
12 void qt_decode_smc(
13 unsigned char *encoded,
14 int encoded_size,
15 unsigned char *decoded,
16 int width,
17 int height,
18 int bytes_per_pixel)
19 {
20
21 }