comparison libmpdvdkit2/css.h @ 9333:f0f0f176d298

sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...) patch by Andreas Hess <jaska@gmx.net>
author arpi
date Sat, 08 Feb 2003 00:22:39 +0000
parents c9a4dfaa9868
children
comparison
equal deleted inserted replaced
9332:a604236b0dd6 9333:f0f0f176d298
26 * along with this program; if not, write to the Free Software 26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 27 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
28 *****************************************************************************/ 28 *****************************************************************************/
29 #define KEY_SIZE 5 29 #define KEY_SIZE 5
30 30
31 typedef u8 dvd_key_t[KEY_SIZE]; 31 typedef uint8_t dvd_key_t[KEY_SIZE];
32 32
33 typedef struct dvd_title_s 33 typedef struct dvd_title_s
34 { 34 {
35 int i_startlb; 35 int i_startlb;
36 dvd_key_t p_key; 36 dvd_key_t p_key;
50 *****************************************************************************/ 50 *****************************************************************************/
51 int _dvdcss_test ( dvdcss_t ); 51 int _dvdcss_test ( dvdcss_t );
52 int _dvdcss_title ( dvdcss_t, int ); 52 int _dvdcss_title ( dvdcss_t, int );
53 int _dvdcss_disckey ( dvdcss_t ); 53 int _dvdcss_disckey ( dvdcss_t );
54 int _dvdcss_titlekey ( dvdcss_t, int , dvd_key_t ); 54 int _dvdcss_titlekey ( dvdcss_t, int , dvd_key_t );
55 int _dvdcss_unscramble ( u8 *, u8 * ); 55 int _dvdcss_unscramble ( uint8_t *, uint8_t * );
56 56