Mercurial > mplayer.hg
annotate spudec.h @ 22625:34c5e9089683
Remove duplicate largefile CFLAGS that are set from configure.
author | diego |
---|---|
date | Fri, 16 Mar 2007 22:24:15 +0000 |
parents | d45870f67728 |
children | a6c619ee9d30 |
rev | line source |
---|---|
560 | 1 #ifndef _MPLAYER_SPUDEC_H |
2 #define _MPLAYER_SPUDEC_H | |
3 | |
9511
b523f634738d
supdec.h needs libvo/video_out.h. vobsub.c does not.
kmkaplan
parents:
7003
diff
changeset
|
4 #include "libvo/video_out.h" |
b523f634738d
supdec.h needs libvo/video_out.h. vobsub.c does not.
kmkaplan
parents:
7003
diff
changeset
|
5 |
4077
62f672249df1
Add spudec_new_scaled and spudec_draw_scaled for vobsub support.
kmkaplan
parents:
3744
diff
changeset
|
6 void spudec_heartbeat(void *this, unsigned int pts100); |
62f672249df1
Add spudec_new_scaled and spudec_draw_scaled for vobsub support.
kmkaplan
parents:
3744
diff
changeset
|
7 void spudec_assemble(void *this, unsigned char *packet, unsigned int len, unsigned int pts100); |
3034
24d3dca4e813
DVD sub patch by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
561
diff
changeset
|
8 void spudec_draw(void *this, void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride)); |
4077
62f672249df1
Add spudec_new_scaled and spudec_draw_scaled for vobsub support.
kmkaplan
parents:
3744
diff
changeset
|
9 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)); |
5474
a303ae797429
spudec_update_palette() added - dvdnav patch by Kees Cook <mplayer@outflux.net>
arpi
parents:
4077
diff
changeset
|
10 void spudec_update_palette(void *this, unsigned int *palette); |
4077
62f672249df1
Add spudec_new_scaled and spudec_draw_scaled for vobsub support.
kmkaplan
parents:
3744
diff
changeset
|
11 void *spudec_new_scaled(unsigned int *palette, unsigned int frame_width, unsigned int frame_height); |
6110 | 12 void *spudec_new_scaled_vobsub(unsigned int *palette, unsigned int *cuspal, unsigned int custom, unsigned int frame_width, unsigned int frame_height); |
4077
62f672249df1
Add spudec_new_scaled and spudec_draw_scaled for vobsub support.
kmkaplan
parents:
3744
diff
changeset
|
13 void *spudec_new(unsigned int *palette); |
3034
24d3dca4e813
DVD sub patch by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
561
diff
changeset
|
14 void spudec_free(void *this); |
3744 | 15 void spudec_reset(void *this); // called after seek |
5638
86663f1b9b00
new osd code, use osd objs to follow changes and do minimal updates
arpi
parents:
5474
diff
changeset
|
16 int spudec_visible(void *this); // check if spu is visible |
6110 | 17 void spudec_set_font_factor(void * this, double factor); // sets the equivalent to ffactor |
18 void spudec_set_hw_spu(void *this, vo_functions_t *hw_spu); | |
6778
f33d4ab7a6b2
Make spudec_assemble more resistent in the face of incomplete packets.
kmkaplan
parents:
6110
diff
changeset
|
19 int spudec_changed(void *this); |
7003
60a473935d7d
warning fixes by Sylvain Petreolle <spetreolle@yahoo.fr>
arpi
parents:
6778
diff
changeset
|
20 void spudec_calc_bbox(void *me, unsigned int dxs, unsigned int dys, unsigned int* bbox); |
60a473935d7d
warning fixes by Sylvain Petreolle <spetreolle@yahoo.fr>
arpi
parents:
6778
diff
changeset
|
21 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)); |
10917
d45870f67728
Forced subtitles patch by Arne Driescher <driescher@mpi-magdeburg.mpg.de>
attila
parents:
9511
diff
changeset
|
22 void spudec_set_forced_subs_only(void * const this, const unsigned int flag); |
560 | 23 #endif |
3183 | 24 |