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
b72e3b16
Commit
b72e3b16
authored
Jan 01, 2004
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove a magic number.
parent
9d12fa3b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/codec/ogt/cvd.c
modules/codec/ogt/cvd.c
+2
-2
modules/codec/ogt/ogt.c
modules/codec/ogt/ogt.c
+2
-2
No files found.
modules/codec/ogt/cvd.c
View file @
b72e3b16
...
...
@@ -2,7 +2,7 @@
* cvd.c : CVD Subtitle decoder thread
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: cvd.c,v 1.
4 2003/12/30 04:43:52
rocky Exp $
* $Id: cvd.c,v 1.
5 2004/01/01 13:54:24
rocky Exp $
*
* Authors: Rocky Bernstein
* based on code from:
...
...
@@ -252,7 +252,7 @@ Reassemble( decoder_t *p_dec, block_t **pp_block )
}
/* FIXME - remove append_data and use chainappend */
VCDSubAppendData
(
p_dec
,
p_buffer
,
p_block
->
i_buffer
-
1
);
VCDSubAppendData
(
p_dec
,
p_buffer
,
p_block
->
i_buffer
-
SPU_HEADER_LEN
);
block_ChainAppend
(
&
p_sys
->
p_block
,
p_block
);
...
...
modules/codec/ogt/ogt.c
View file @
b72e3b16
...
...
@@ -2,7 +2,7 @@
* ogt.c : Overlay Graphics Text (SVCD subtitles) decoder thread
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: ogt.c,v 1.
6 2003/12/28 04:51:52
rocky Exp $
* $Id: ogt.c,v 1.
7 2004/01/01 13:55:17
rocky Exp $
*
* Authors: Rocky Bernstein
* based on code from:
...
...
@@ -284,7 +284,7 @@ Reassemble( decoder_t *p_dec, block_t **pp_block )
}
/* FIXME - remove append_data and use chainappend */
VCDSubAppendData
(
p_dec
,
p_buffer
,
p_block
->
i_buffer
-
5
);
VCDSubAppendData
(
p_dec
,
p_buffer
,
p_block
->
i_buffer
-
SPU_HEADER_LEN
);
block_ChainAppend
(
&
p_sys
->
p_block
,
p_block
);
...
...
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