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
92d90130
Commit
92d90130
authored
Sep 16, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compilation fix for kate.
parent
32262f06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
modules/codec/kate.c
modules/codec/kate.c
+4
-5
No files found.
modules/codec/kate.c
View file @
92d90130
...
...
@@ -672,17 +672,16 @@ static subpicture_t *DecodePacket( decoder_t *p_dec, kate_packet *p_kp, block_t
{
p_bitmap_region
->
i_align
=
SUBPICTURE_ALIGN_BOTTOM
;
}
p_spu
->
i_x
=
0
;
p_spu
->
i_y
=
10
;
p_spu
->
p_region
->
i_x
=
0
;
p_spu
->
p_region
->
i_y
=
10
;
/* override if tracker info present */
if
(
tracker_valid
)
{
p_spu
->
i_flags
=
0
;
if
(
kin
.
has
.
region
)
{
p_spu
->
i_x
=
kin
.
region_x
;
p_spu
->
i_y
=
kin
.
region_y
;
p_spu
->
p_region
->
i_x
=
kin
.
region_x
;
p_spu
->
p_region
->
i_y
=
kin
.
region_y
;
p_spu
->
b_absolute
=
true
;
}
...
...
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