view qtsmc.c @ 4269:68c78efeea2b

Reverted to using software sync again, some day I'll die of a heartattack if I can't get this m*f*er to work on both fast and slow machines... May all hell be let loose on sigma for not cooperating with us
author mswitch
date Sat, 19 Jan 2002 22:24:30 +0000
parents 4b652eac6738
children 818be6ba8758
line wrap: on
line source

/*
    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)
{

}