Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
a3eb233d
Commit
a3eb233d
authored
Jan 04, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/ogt/*: win32 compilation fixes.
parent
83000d18
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
modules/codec/ogt/cvd_parse.c
modules/codec/ogt/cvd_parse.c
+2
-2
modules/codec/ogt/ogt_parse.c
modules/codec/ogt/ogt_parse.c
+2
-2
modules/codec/ogt/subtitle.h
modules/codec/ogt/subtitle.h
+2
-2
No files found.
modules/codec/ogt/cvd_parse.c
View file @
a3eb233d
...
...
@@ -2,7 +2,7 @@
* parse.c: Philips OGT (SVCD subtitle) packet parser
*****************************************************************************
* 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
* based on code from:
...
...
@@ -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
)
{
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
),
"header: 0x%02x 0x%02x 0x%02x 0x%02x, 0x%02x, 0x%02x, size: %i"
,
...
...
modules/codec/ogt/ogt_parse.c
View file @
a3eb233d
...
...
@@ -2,7 +2,7 @@
* Philips OGT (SVCD subtitle) packet parser
*****************************************************************************
* 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
* based on code from:
...
...
@@ -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
)
{
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
u
_
int8_t
*
p
=
p_buffer
;
uint8_t
*
p
=
p_buffer
;
int
i
;
dbg_print
(
(
DECODE_DBG_CALL
|
DECODE_DBG_EXT
)
,
""
);
...
...
modules/codec/ogt/subtitle.h
View file @
a3eb233d
...
...
@@ -2,7 +2,7 @@
* subtitle.h : Common SVCD and CVD subtitles header
*****************************************************************************
* 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
* based on code from:
...
...
@@ -154,7 +154,7 @@ struct subpicture_sys_t
int
i_debug
;
/* debugging mask */
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 */
vlc_object_t
*
p_input
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment