annotate vobsub.h @ 6192:f03fe2e84efd

clone_demux_packet(), using refcounting to avoid memcpy() based on (sligtly simplified) patch by Alexander Neundorf <neundorf@dellingsoft.de>
author arpi
date Sat, 25 May 2002 22:13:23 +0000
parents 7bea806b9c5f
children f8551f89dd48
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
1 #ifndef MPLAYER_VOBSUB_H
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
2 #define MPLAYER_VOBSUB_H
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
3
6110
7bea806b9c5f Improvment for spu subtitles.
albeu
parents: 5388
diff changeset
4 extern void *vobsub_open(const char *subname, const char *const ifo, const int force, void** spu);
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
5 extern void vobsub_reset(void *vob);
6110
7bea806b9c5f Improvment for spu subtitles.
albeu
parents: 5388
diff changeset
6 extern int vobsub_parse_ifo(void* this, const char *const name, unsigned int *palette, unsigned int *width, unsigned int *height, int force);
7bea806b9c5f Improvment for spu subtitles.
albeu
parents: 5388
diff changeset
7 extern int vobsub_get_packet(void *vobhandle, float pts,void** data, int* timestamp);
7bea806b9c5f Improvment for spu subtitles.
albeu
parents: 5388
diff changeset
8 extern void vobsub_close(void *this);
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
9
4384
a1d27234018f avoids warnings
pl
parents: 4080
diff changeset
10 #endif /* MPLAYER_VOBSUB_H */