updated, colorkey support, pontscho reported it's working fine, only faulting with very-very-very big resolution
author |
alex |
date |
Fri, 18 Jan 2002 18:14:10 +0000 |
parents |
4b652eac6738 |
children |
818be6ba8758 |
rev |
line source |
4227
|
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 }
|