Mercurial > mplayer.hg
annotate stream/stream_dvdnav.h @ 23922:ee2cf48d6659
Comment out purely debugging printf that in addition uses __FUNCTION__ which
is not supported by all compilers.
author | reimar |
---|---|
date | Mon, 30 Jul 2007 16:18:12 +0000 |
parents | 3f0d00abc073 |
children | 7dad6159053b |
rev | line source |
---|---|
23689
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
21603
diff
changeset
|
1 #ifndef MPLAYER_STREAM_DVDNAV_H |
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
21603
diff
changeset
|
2 #define MPLAYER_STREAM_DVDNAV_H |
19302 | 3 |
4 #include <dvdnav.h> | |
5 | |
6 typedef struct { | |
7 int event; /* event number fromd dvdnav_events.h */ | |
8 void * details; /* event details */ | |
9 int len; /* bytes in details */ | |
10 } dvdnav_event_t; | |
11 | |
12 typedef struct { | |
21200 | 13 uint16_t sx, sy; |
14 uint16_t ex, ey; | |
15 } nav_highlight_t; | |
16 | |
17 typedef struct { | |
19302 | 18 dvdnav_t * dvdnav; /* handle to libdvdnav stuff */ |
19 char * filename; /* path */ | |
20 int ignore_timers; /* should timers be skipped? */ | |
21 int sleeping; /* are we sleeping? */ | |
22 unsigned int sleep_until; /* timer */ | |
23 int started; /* Has mplayer initialization finished? */ | |
19453
087d4a916ea3
implemented STREAM_CTRL_GET_TIME_LENGTH (duration of the pgc playing)
nicodvb
parents:
19302
diff
changeset
|
24 unsigned int duration; /* in milliseconds */ |
19912
3fdb44285fe7
introduced new MP_CMD_DVDNAV_MOUSECLICK command (bound to mouse0);
nicodvb
parents:
19851
diff
changeset
|
25 int mousex, mousey; |
20405
a11a208925b9
don't play any other title other than N when N is specified (with dvdnav://N)
nicodvb
parents:
19913
diff
changeset
|
26 int title; |
21538
c9b6588932b5
export spu palette; part of a patch by Otvos Attila
nicodvb
parents:
21219
diff
changeset
|
27 unsigned int spu_clut[16], spu_set; |
21219 | 28 dvdnav_highlight_event_t hlev; |
19302 | 29 } dvdnav_priv_t; |
30 | |
31 | |
21197
7ecd9de03435
added code to identify subs language and count; needed for forthcoming support for -slang
nicodvb
parents:
20405
diff
changeset
|
32 int dvdnav_number_of_subs(stream_t *stream); |
21600 | 33 int dvdnav_aid_from_lang(stream_t *stream, unsigned char *language); |
21603
4bfdaf8bcae5
implemented dvdnav_lang_from_aid() to retrieve audio language
nicodvb
parents:
21600
diff
changeset
|
34 int dvdnav_lang_from_aid(stream_t *stream, int id, unsigned char *buf); |
21197
7ecd9de03435
added code to identify subs language and count; needed for forthcoming support for -slang
nicodvb
parents:
20405
diff
changeset
|
35 int dvdnav_sid_from_lang(stream_t *stream, unsigned char *language); |
21560
a16219e6d656
added function to return the language of the specified subtitle id. Patch by
nicodvb
parents:
21538
diff
changeset
|
36 int dvdnav_lang_from_sid(stream_t *stream, int sid, unsigned char *buf); |
19774
109e241c0cca
in mp_dvdnav_handle_input() assign the currently selected button, shown in the OSD by main()
nicodvb
parents:
19768
diff
changeset
|
37 int mp_dvdnav_handle_input(stream_t *stream, int cmd, int *button); |
19851
adfd08588514
report mouse coordinates after movement to dvdnav; this permits to enable button selection using the mouse; patch by Jonas Jermann and me
nicodvb
parents:
19774
diff
changeset
|
38 void mp_dvdnav_update_mouse_pos(stream_t *stream, int32_t x, int32_t y, int* button); |
21219 | 39 void mp_dvdnav_get_highlight (stream_t *stream, nav_highlight_t *hl); |
21538
c9b6588932b5
export spu palette; part of a patch by Otvos Attila
nicodvb
parents:
21219
diff
changeset
|
40 unsigned int *mp_dvdnav_get_spu_clut(stream_t *stream); |
19302 | 41 |
42 #endif |