mirror of
https://github.com/mpv-player/mpv
synced 2024-12-13 02:15:59 +00:00
16c6cf34ce
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4228 b3059339-0415-0410-9bf9-f77b7e298cf2
22 lines
363 B
C
22 lines
363 B
C
/*
|
|
Apple Graphics (SMC) Decoder for MPlayer
|
|
by Mike Melanson
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "bswap.h"
|
|
|
|
#define BE_16(x) (be2me_16(*(unsigned short *)(x)))
|
|
#define BE_32(x) (be2me_32(*(unsigned int *)(x)))
|
|
|
|
void qt_decode_smc(
|
|
unsigned char *encoded,
|
|
int encoded_size,
|
|
unsigned char *decoded,
|
|
int width,
|
|
int height,
|
|
int bytes_per_pixel)
|
|
{
|
|
|
|
}
|