spudec.h
来自「自己移植的linux下的流媒体播放器原代码,支持mms协议,支持ftp和http」· C头文件 代码 · 共 25 行
H
25 行
#ifndef _MPLAYER_SPUDEC_H#define _MPLAYER_SPUDEC_H#include "libvo/video_out.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 seekint spudec_visible(void *this); // check if spu is visiblevoid spudec_set_font_factor(void * this, double factor); // sets the equivalent to ffactorvoid spudec_set_hw_spu(void *this, vo_functions_t *hw_spu);int spudec_changed(void *this);void spudec_calc_bbox(void *me, unsigned int dxs, unsigned int dys, unsigned int* bbox);void spudec_draw_scaled(void *me, 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_set_forced_subs_only(void * const this, const unsigned int flag);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?