summaryrefslogtreecommitdiffstats
path: root/spudec.h
blob: 416ecc9479d5c82d8ed0a9d7949d78c1892dde50 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _MPLAYER_SPUDEC_H
#define _MPLAYER_SPUDEC_H

void spudec_heartbeat(void *this, int pts100);
void spudec_assemble(void *this, unsigned char *packet, int len, 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_new();
void spudec_free(void *this);

#endif