Commit ec728f13 authored by Sam Hocevar's avatar Sam Hocevar

  * Fixed an alignment issue in the ifo parser. The Matrix problem should
    be solved.
  * Minor cosmetic fixes and warning removals here and there.
parent 7340778f
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* css.h: Structures for DVD authentification and unscrambling * css.h: Structures for DVD authentification and unscrambling
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2001 VideoLAN * Copyright (C) 1999-2001 VideoLAN
* $Id: css.h,v 1.1 2001/06/12 22:14:44 sam Exp $ * $Id: css.h,v 1.2 2001/06/20 07:43:48 sam Exp $
* *
* Author: Stphane Borel <stef@via.ecp.fr> * Author: Stphane Borel <stef@via.ecp.fr>
* *
...@@ -56,7 +56,7 @@ typedef struct css_s ...@@ -56,7 +56,7 @@ typedef struct css_s
} css_t; } css_t;
/***************************************************************************** /*****************************************************************************
* Prototypes in dvd_css.c * Prototypes in css.c
*****************************************************************************/ *****************************************************************************/
struct css_s; struct css_s;
......
/***************************************************************************** /*****************************************************************************
* dvd_ioctl.h: DVD ioctl replacement function * ioctl.h: DVD ioctl replacement function
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2001 VideoLAN * Copyright (C) 1999-2001 VideoLAN
* $Id: ioctl.h,v 1.2 2001/06/14 02:47:44 sam Exp $ * $Id: ioctl.h,v 1.3 2001/06/20 07:43:48 sam Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* *
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* libdvdcss.h: DVD reading library, exported functions. * libdvdcss.h: DVD reading library, exported functions.
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: dvdcss.h,v 1.2 2001/06/14 01:49:44 sam Exp $ * $Id: dvdcss.h,v 1.3 2001/06/20 07:43:48 sam Exp $
* *
* Authors: Stphane Borel <stef@via.ecp.fr> * Authors: Stphane Borel <stef@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -32,10 +32,10 @@ typedef struct dvdcss_s* dvdcss_handle; ...@@ -32,10 +32,10 @@ typedef struct dvdcss_s* dvdcss_handle;
*****************************************************************************/ *****************************************************************************/
#define DVDCSS_NOFLAGS 0 #define DVDCSS_NOFLAGS 0
#define DVDCSS_INIT_QUIET 1 << 0 #define DVDCSS_INIT_QUIET (1 << 0)
#define DVDCSS_INIT_DEBUG 1 << 1 #define DVDCSS_INIT_DEBUG (1 << 1)
#define DVDCSS_READ_DECRYPT 1 << 0 #define DVDCSS_READ_DECRYPT (1 << 0)
#define DVDCSS_BLOCK_SIZE 2048 #define DVDCSS_BLOCK_SIZE 2048
......
This diff is collapsed.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vdec_block_c.c: Macroblock copy functions in C * vdec_block_c.c: Macroblock copy functions in C
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN * Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: vdec_block_c.c,v 1.3 2001/06/03 12:47:21 sam Exp $ * $Id: vdec_block_c.c,v 1.4 2001/06/20 07:43:48 sam Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -33,6 +33,8 @@ ...@@ -33,6 +33,8 @@
*****************************************************************************/ *****************************************************************************/
#include "defs.h" #include "defs.h"
#include <string.h>
#include "config.h" #include "config.h"
#include "common.h" #include "common.h"
#include "threads.h" #include "threads.h"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vdec_block_mmx.c: Macroblock copy functions in MMX assembly * vdec_block_mmx.c: Macroblock copy functions in MMX assembly
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN * Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: vdec_block_mmx.c,v 1.3 2001/06/03 12:47:21 sam Exp $ * $Id: vdec_block_mmx.c,v 1.4 2001/06/20 07:43:48 sam Exp $
* *
* Authors: Gal Hendryckx <jimmy@via.ecp.fr> * Authors: Gal Hendryckx <jimmy@via.ecp.fr>
* *
...@@ -33,6 +33,8 @@ ...@@ -33,6 +33,8 @@
*****************************************************************************/ *****************************************************************************/
#include "defs.h" #include "defs.h"
#include <string.h>
#include "config.h" #include "config.h"
#include "common.h" #include "common.h"
#include "threads.h" #include "threads.h"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* input_ts.h: structures of the input not exported to other modules * input_ts.h: structures of the input not exported to other modules
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN * Copyright (C) 1999, 2000 VideoLAN
* $Id: input_ts.h,v 1.7 2001/06/02 01:09:03 sam Exp $ * $Id: input_ts.h,v 1.8 2001/06/20 07:43:48 sam Exp $
* *
* Authors: Henri Fallon <henri@via.ecp.fr> * Authors: Henri Fallon <henri@via.ecp.fr>
* *
...@@ -32,3 +32,4 @@ typedef struct thread_ts_data_s { ...@@ -32,3 +32,4 @@ typedef struct thread_ts_data_s {
fd_set fds; fd_set fds;
} thread_ts_data_t; } thread_ts_data_t;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment