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
16e823e7
Commit
16e823e7
authored
Aug 20, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RealAudio: fix compile for Win32
parent
0f65c7cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
modules/codec/realaudio.c
modules/codec/realaudio.c
+8
-0
No files found.
modules/codec/realaudio.c
View file @
16e823e7
...
...
@@ -73,7 +73,9 @@ vlc_module_end ()
* Local prototypes
*****************************************************************************/
static
int
OpenDll
(
decoder_t
*
);
#ifndef WIN32
static
int
OpenNativeDll
(
decoder_t
*
,
char
*
,
char
*
);
#endif
static
int
OpenWin32Dll
(
decoder_t
*
,
char
*
,
char
*
);
static
void
CloseDll
(
decoder_t
*
);
...
...
@@ -390,6 +392,7 @@ static int OpenDll( decoder_t *p_dec )
return
VLC_EGENERIC
;
}
#ifndef WIN32
static
int
OpenNativeDll
(
decoder_t
*
p_dec
,
char
*
psz_path
,
char
*
psz_dll
)
{
#if defined(HAVE_DL_DLOPEN)
...
...
@@ -490,10 +493,15 @@ static int OpenNativeDll( decoder_t *p_dec, char *psz_path, char *psz_dll )
if
(
context
)
p_sys
->
raFreeDecoder
(
context
);
if
(
context
)
p_sys
->
raCloseCodec
(
context
);
dlclose
(
handle
);
#else
VLC_UNUSED
(
p_dec
);
VLC_UNUSED
(
psz_path
);
VLC_UNUSED
(
psz_dll
);
#endif
return
VLC_EGENERIC
;
}
#endif
/* Win32 */
static
int
OpenWin32Dll
(
decoder_t
*
p_dec
,
char
*
psz_path
,
char
*
psz_dll
)
{
...
...
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