Commit a3eb233d authored by Gildas Bazin's avatar Gildas Bazin

* modules/codec/ogt/*: win32 compilation fixes.
parent 83000d18
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* parse.c: Philips OGT (SVCD subtitle) packet parser * parse.c: Philips OGT (SVCD subtitle) packet parser
***************************************************************************** *****************************************************************************
* Copyright (C) 2003, 2004 VideoLAN * Copyright (C) 2003, 2004 VideoLAN
* $Id: cvd_parse.c,v 1.7 2004/01/04 16:51:59 rocky Exp $ * $Id: cvd_parse.c,v 1.8 2004/01/04 22:22:10 gbazin Exp $
* *
* Authors: Rocky Bernstein * Authors: Rocky Bernstein
* based on code from: * based on code from:
...@@ -78,7 +78,7 @@ static int ParseImage ( decoder_t *, subpicture_t * ); ...@@ -78,7 +78,7 @@ static int ParseImage ( decoder_t *, subpicture_t * );
void E_(ParseHeader)( decoder_t *p_dec, uint8_t *p_buffer, block_t *p_block ) void E_(ParseHeader)( decoder_t *p_dec, uint8_t *p_buffer, block_t *p_block )
{ {
decoder_sys_t *p_sys = p_dec->p_sys; decoder_sys_t *p_sys = p_dec->p_sys;
u_int8_t *p = p_buffer+1; uint8_t *p = p_buffer+1;
dbg_print( (DECODE_DBG_CALL|DECODE_DBG_PACKET), dbg_print( (DECODE_DBG_CALL|DECODE_DBG_PACKET),
"header: 0x%02x 0x%02x 0x%02x 0x%02x, 0x%02x, 0x%02x, size: %i", "header: 0x%02x 0x%02x 0x%02x 0x%02x, 0x%02x, 0x%02x, size: %i",
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* Philips OGT (SVCD subtitle) packet parser * Philips OGT (SVCD subtitle) packet parser
***************************************************************************** *****************************************************************************
* Copyright (C) 2003, 2004 VideoLAN * Copyright (C) 2003, 2004 VideoLAN
* $Id: ogt_parse.c,v 1.5 2004/01/03 12:54:56 rocky Exp $ * $Id: ogt_parse.c,v 1.6 2004/01/04 22:22:10 gbazin Exp $
* *
* Author: Rocky Bernstein * Author: Rocky Bernstein
* based on code from: * based on code from:
...@@ -86,7 +86,7 @@ static int ParseImage ( decoder_t *, subpicture_t * ); ...@@ -86,7 +86,7 @@ static int ParseImage ( decoder_t *, subpicture_t * );
void E_(ParseHeader)( decoder_t *p_dec, uint8_t *p_buffer, block_t *p_block ) void E_(ParseHeader)( decoder_t *p_dec, uint8_t *p_buffer, block_t *p_block )
{ {
decoder_sys_t *p_sys = p_dec->p_sys; decoder_sys_t *p_sys = p_dec->p_sys;
u_int8_t *p = p_buffer; uint8_t *p = p_buffer;
int i; int i;
dbg_print( (DECODE_DBG_CALL|DECODE_DBG_EXT) , ""); dbg_print( (DECODE_DBG_CALL|DECODE_DBG_EXT) , "");
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* subtitle.h : Common SVCD and CVD subtitles header * subtitle.h : Common SVCD and CVD subtitles header
***************************************************************************** *****************************************************************************
* Copyright (C) 2003,2004 VideoLAN * Copyright (C) 2003,2004 VideoLAN
* $Id: subtitle.h,v 1.4 2004/01/04 04:56:21 rocky Exp $ * $Id: subtitle.h,v 1.5 2004/01/04 22:22:10 gbazin Exp $
* *
* Author: Rocky Bernstein * Author: Rocky Bernstein
* based on code from: * based on code from:
...@@ -154,7 +154,7 @@ struct subpicture_sys_t ...@@ -154,7 +154,7 @@ struct subpicture_sys_t
int i_debug; /* debugging mask */ int i_debug; /* debugging mask */
mtime_t i_pts; /* presentation timestamp */ mtime_t i_pts; /* presentation timestamp */
u_int8_t *p_data; /* Image data one byte T, Y, U, V */ uint8_t *p_data; /* Image data one byte T, Y, U, V */
/* Link to our input */ /* Link to our input */
vlc_object_t * p_input; vlc_object_t * p_input;
......
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