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
2ea3cbd3
Commit
2ea3cbd3
authored
Jan 20, 2003
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
load correctly font-eutopiabold36.rle on BeOS, thanks to sam & Meuuh
previous commits (closes #100)
parent
6ef4e239
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/codec/spudec/spudec.c
modules/codec/spudec/spudec.c
+5
-5
No files found.
modules/codec/spudec/spudec.c
View file @
2ea3cbd3
...
...
@@ -2,7 +2,7 @@
* spudec.c : SPU decoder thread
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: spudec.c,v 1.1
1 2003/01/19 03:16:24 sam
Exp $
* $Id: spudec.c,v 1.1
2 2003/01/20 02:45:25 titer
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -53,11 +53,11 @@ static void EndThread ( spudec_thread_t * );
vlc_module_begin
();
add_category_hint
(
N_
(
"subtitles"
),
NULL
);
#if
ndef SYS_DARWIN
add_file
(
"spudec-font"
,
"./share/"
DEFAULT_FONT
,
NULL
,
#if
defined(SYS_DARWIN) || defined(SYS_BEOS)
add_file
(
"spudec-font"
,
NULL
,
NULL
,
FONT_TEXT
,
FONT_LONGTEXT
);
#else
add_file
(
"spudec-font"
,
NULL
,
NULL
,
add_file
(
"spudec-font"
,
"./share/"
DEFAULT_FONT
,
NULL
,
FONT_TEXT
,
FONT_LONGTEXT
);
#endif
set_description
(
_
(
"subtitles decoder module"
)
);
...
...
@@ -125,7 +125,7 @@ static int RunDecoder( decoder_fifo_t * p_fifo )
{
/* Here we are dealing with text subtitles */
#if
def SYS_DARWIN
#if
defined(SYS_DARWIN) || defined(SYS_BEOS)
if
(
(
psz_font
=
config_GetPsz
(
p_fifo
,
"spudec-font"
))
==
NULL
)
{
char
*
psz_vlcpath
=
p_fifo
->
p_libvlc
->
psz_vlcpath
;
...
...
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