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
cf36a814
Commit
cf36a814
authored
Feb 04, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added mod title support.
parent
08b01294
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
modules/demux/mod.c
modules/demux/mod.c
+16
-0
No files found.
modules/demux/mod.c
View file @
cf36a814
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
#include <vlc_common.h>
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_plugin.h>
#include <vlc_demux.h>
#include <vlc_demux.h>
#include <vlc_meta.h>
#include <libmodplug/modplug.h>
#include <libmodplug/modplug.h>
...
@@ -349,6 +350,21 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
...
@@ -349,6 +350,21 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
}
}
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
case
DEMUX_HAS_UNSUPPORTED_META
:
{
bool
*
pb_bool
=
(
bool
*
)
va_arg
(
args
,
bool
*
);
*
pb_bool
=
false
;
/* FIXME I am not sure of this one */
return
VLC_SUCCESS
;
}
case
DEMUX_GET_META
:
{
vlc_meta_t
*
p_meta
=
(
vlc_meta_t
*
)
va_arg
(
args
,
vlc_meta_t
*
);
const
char
*
psz_name
=
ModPlug_GetName
(
p_sys
->
f
);
if
(
psz_name
&&
*
psz_name
)
vlc_meta_SetTitle
(
p_meta
,
psz_name
);
return
VLC_SUCCESS
;
}
case
DEMUX_GET_FPS
:
/* meaningless */
case
DEMUX_GET_FPS
:
/* meaningless */
default:
default:
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
...
...
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