Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
03617b35
Commit
03617b35
authored
Jul 21, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/spudec/spudec.c: disabled RLE font loading as it's not used anymore.
parent
85d35a75
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
modules/codec/spudec/spudec.c
modules/codec/spudec/spudec.c
+5
-1
No files found.
modules/codec/spudec/spudec.c
View file @
03617b35
...
...
@@ -2,7 +2,7 @@
* spudec.c : SPU decoder thread
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: spudec.c,v 1.2
2 2003/07/16 17:19:06
gbazin Exp $
* $Id: spudec.c,v 1.2
3 2003/07/21 18:24:51
gbazin Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -104,7 +104,9 @@ static int RunDecoder( decoder_fifo_t * p_fifo )
spudec_thread_t
*
p_spudec
;
subtitler_font_t
*
p_font
=
NULL
;
char
*
psz_font
;
#if 0
vout_thread_t * p_vout_backup = NULL;
#endif
/* Allocate the memory needed to store the thread's structure */
p_spudec
=
(
spudec_thread_t
*
)
malloc
(
sizeof
(
spudec_thread_t
)
);
...
...
@@ -176,6 +178,7 @@ static int RunDecoder( decoder_fifo_t * p_fifo )
if
(
p_spudec
->
p_vout
)
{
#if 0
if( p_spudec->p_vout != p_vout_backup )
{
/* The vout has changed, we need to reload the fonts */
...
...
@@ -192,6 +195,7 @@ static int RunDecoder( decoder_fifo_t * p_fifo )
break;
}
}
#endif
E_
(
ParseText
)(
p_spudec
,
p_font
);
...
...
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