Mercurial > mplayer.hg
view spudec.h @ 4723:93e959f0a6e4
Fixed bug which would cause gibberish to be printed when using :noprebuf
Removed equalization code, it caused problems with older machines, until
someone with a fast machine can betatest it it's only worthless
author | mswitch |
---|---|
date | Sat, 16 Feb 2002 12:51:33 +0000 |
parents | 62f672249df1 |
children | a303ae797429 |
line wrap: on
line source
#ifndef _MPLAYER_SPUDEC_H #define _MPLAYER_SPUDEC_H void spudec_heartbeat(void *this, unsigned int pts100); void spudec_assemble(void *this, unsigned char *packet, unsigned int len, unsigned int pts100); void spudec_draw(void *this, void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride)); void spudec_draw_scaled(void *this, unsigned int dxs, unsigned int dys, void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride)); void *spudec_new_scaled(unsigned int *palette, unsigned int frame_width, unsigned int frame_height); void *spudec_new(unsigned int *palette); void spudec_free(void *this); void spudec_reset(void *this); // called after seek #endif