Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
aac6528e
Commit
aac6528e
authored
Jan 21, 2004
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some of RV32 bugs worked out - pretty close. Some RGB2 work.
Render->Blend
parent
50b9bf83
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
167 additions
and
129 deletions
+167
-129
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/render.c
modules/codec/ogt/render.c
+157
-119
modules/codec/ogt/render.h
modules/codec/ogt/render.h
+2
-2
modules/codec/ogt/subtitle.h
modules/codec/ogt/subtitle.h
+4
-4
No files found.
modules/codec/ogt/cvd_parse.c
View file @
aac6528e
...
...
@@ -2,7 +2,7 @@
* parse.c: Philips OGT (SVCD subtitle) packet parser
*****************************************************************************
* Copyright (C) 2003, 2004 VideoLAN
* $Id: cvd_parse.c,v 1.1
2 2004/01/16 13:32:3
7 rocky Exp $
* $Id: cvd_parse.c,v 1.1
3 2004/01/21 04:45:4
7 rocky Exp $
*
* Authors: Rocky Bernstein
* based on code from:
...
...
@@ -308,7 +308,7 @@ E_(ParsePacket)( decoder_t *p_dec)
/* Fill the p_spu structure */
vlc_mutex_init
(
p_dec
,
&
p_spu
->
p_sys
->
lock
);
p_spu
->
pf_render
=
VCDSub
Render
;
p_spu
->
pf_render
=
VCDSub
Blend
;
p_spu
->
pf_destroy
=
VCDSubDestroySPU
;
p_spu
->
p_sys
->
p_data
=
(
uint8_t
*
)
p_spu
->
p_sys
+
sizeof
(
subpicture_sys_t
);
...
...
modules/codec/ogt/ogt_parse.c
View file @
aac6528e
...
...
@@ -2,7 +2,7 @@
* Philips OGT (SVCD subtitle) packet parser
*****************************************************************************
* Copyright (C) 2003, 2004 VideoLAN
* $Id: ogt_parse.c,v 1.1
0 2004/01/16 13:32:3
7 rocky Exp $
* $Id: ogt_parse.c,v 1.1
1 2004/01/21 04:45:4
7 rocky Exp $
*
* Author: Rocky Bernstein
* based on code from:
...
...
@@ -181,7 +181,7 @@ E_(ParsePacket)( decoder_t *p_dec)
/* Fill the p_spu structure */
vlc_mutex_init
(
p_dec
,
&
p_spu
->
p_sys
->
lock
);
p_spu
->
pf_render
=
VCDSub
Render
;
p_spu
->
pf_render
=
VCDSub
Blend
;
p_spu
->
pf_destroy
=
VCDSubDestroySPU
;
p_spu
->
p_sys
->
p_data
=
(
uint8_t
*
)
p_spu
->
p_sys
+
sizeof
(
subpicture_sys_t
);
...
...
modules/codec/ogt/render.c
View file @
aac6528e
This diff is collapsed.
Click to expand it.
modules/codec/ogt/render.h
View file @
aac6528e
...
...
@@ -2,7 +2,7 @@
* render.h : Common SVCD and CVD rendering routine(s).
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: render.h,v 1.
2 2003/12/28 04:51:52
rocky Exp $
* $Id: render.h,v 1.
3 2004/01/21 04:45:47
rocky Exp $
*
* Author: Rocky Bernstein
*
...
...
@@ -24,5 +24,5 @@
/*****************************************************************************
* Prototypes
*****************************************************************************/
void
VCDSub
Render
(
vout_thread_t
*
,
picture_t
*
,
const
subpicture_t
*
);
void
VCDSub
Blend
(
vout_thread_t
*
,
picture_t
*
,
const
subpicture_t
*
);
modules/codec/ogt/subtitle.h
View file @
aac6528e
...
...
@@ -2,7 +2,7 @@
* subtitle.h : Common SVCD and CVD subtitles header
*****************************************************************************
* Copyright (C) 2003,2004 VideoLAN
* $Id: subtitle.h,v 1.
9 2004/01/16 13:32:3
7 rocky Exp $
* $Id: subtitle.h,v 1.
10 2004/01/21 04:45:4
7 rocky Exp $
*
* Author: Rocky Bernstein
* based on code from:
...
...
@@ -72,15 +72,15 @@
N_("Add this to starting horizontal position of subtitle.")
#define HORIZONTAL_CORRECT_LONGTEXT N_( \
"If you need to adjust the subtitle starting position horizontally, " \
"set this. Negative values
can be used to shift left. 0 would "
\
"set this. Negative values
shift left and postive values right. 0 would "
\
"be no deviation from where the position specified in the subtitle." \
)
#define VERTICAL_CORRECT \
N_("Add this to starting vertical position of subtitle.")
#define VERTICAL_CORRECT_LONGTEXT N_( \
"If you need to adjust the subtitle starting position
horizont
ally, " \
"set this. Negative values
can be used to shift left
. 0 would " \
"If you need to adjust the subtitle starting position
vertic
ally, " \
"set this. Negative values
shift up, positive values down
. 0 would " \
"be no deviation from where the position specified in the subtitle." \
)
...
...
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