Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
4d36c0a3
Commit
4d36c0a3
authored
Aug 05, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Contribs: Fix libass \h char handling.
parent
e8ca58c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+1
-0
extras/contrib/src/Patches/libass-h-char-fix.patch
extras/contrib/src/Patches/libass-h-char-fix.patch
+13
-0
No files found.
extras/contrib/src/Makefile
View file @
4d36c0a3
...
...
@@ -2444,6 +2444,7 @@ libass-$(ASS_VERSION).tar.bz2:
libass
:
libass-$(ASS_VERSION).tar.bz2
$(EXTRACT_BZ2)
cd
$@
;
patch
-p0
< ../Patches/libass-h-char-fix.patch
ifneq
($(HOST),$(BUILD))
patch
-p0
< Patches/libass-cross.patch
cd
$@
;
autoconf
...
...
extras/contrib/src/Patches/libass-h-char-fix.patch
0 → 100644
View file @
4d36c0a3
Index: libass/ass_render.c
===================================================================
--- libass/ass_render.c (revision 15)
+++ libass/ass_render.c (working copy)
@@ -1071,7 +1071,7 @@
p += 2;
*str = p;
return '\n';
- } else if (*(p+1) == 'n') {
+ } else if ((*(p+1) == 'n') || (*(p+1) == 'h')) {
p += 2;
*str = p;
return ' ';
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