Mercurial > mplayer.hg
view spudec.h @ 6850:5abb9367b128
ogm audio format id is in hex, not dec
patch by Moritz Bunkus <moritz@bunkus.org>
author | arpi |
---|---|
date | Tue, 30 Jul 2002 18:14:02 +0000 |
parents | f33d4ab7a6b2 |
children | 60a473935d7d |
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_update_palette(void *this, unsigned int *palette); void *spudec_new_scaled(unsigned int *palette, unsigned int frame_width, unsigned int frame_height); void *spudec_new_scaled_vobsub(unsigned int *palette, unsigned int *cuspal, unsigned int custom, 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 int spudec_visible(void *this); // check if spu is visible void spudec_set_font_factor(void * this, double factor); // sets the equivalent to ffactor void spudec_set_hw_spu(void *this, vo_functions_t *hw_spu); int spudec_changed(void *this); #endif