Mercurial > mplayer.hg
annotate libmpdemux/dvdauth.h @ 7624:b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
Sascha Sommer <saschasommer@freenet.de>
author | arpi |
---|---|
date | Sun, 06 Oct 2002 16:56:42 +0000 |
parents | 9975a432cf47 |
children |
rev | line source |
---|---|
492 | 1 #ifdef HAVE_LIBCSS |
2 #ifndef _MPLAYER_CSS_H | |
3 #define _MPLAYER_CSS_H | |
4 | |
1018
e5fc7ec51fa3
-dvd is renamed to -dvdauth, variable dvd_device is renamed to dvd_auth_device. These changes are needed for future DVD playback developmenting
lgb
parents:
546
diff
changeset
|
5 extern char *dvd_auth_device; |
492 | 6 extern unsigned char key_disc[]; |
7 extern unsigned char key_title[]; | |
546 | 8 extern unsigned char *dvdimportkey; |
9 extern int descrambling; | |
3975
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
2555
diff
changeset
|
10 extern char *css_so; |
492 | 11 |
1042
b333271f4e7c
Solaris 8 DVD support and other fixes by Juergen Keil <jk@tools.de>
arpi_esp
parents:
1018
diff
changeset
|
12 int dvd_auth ( char *, char * ); |
546 | 13 int dvd_import_key ( unsigned char * ); |
7459
9975a432cf47
fix segmentation fault with -dvdkey, fix return value of dvd_css_descramble(), try to load css.so syms with AND without _ in syms' names. PLEASE TEST IT CURRENTLY I HAVE NO DVD DRIVE NOR A SINGLE VOB FILE ...
lgb
parents:
3975
diff
changeset
|
14 void dvd_css_descramble ( u_char *, u_char * ); |
492 | 15 |
16 #endif | |
1042
b333271f4e7c
Solaris 8 DVD support and other fixes by Juergen Keil <jk@tools.de>
arpi_esp
parents:
1018
diff
changeset
|
17 #endif |