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
4a693e57
Commit
4a693e57
authored
Apr 18, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't call gettext for stuff that's not translated
parent
97cf7d54
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/demux/playlist/gvp.c
modules/demux/playlist/gvp.c
+1
-1
modules/demux/playlist/qtl.c
modules/demux/playlist/qtl.c
+1
-1
No files found.
modules/demux/playlist/gvp.c
View file @
4a693e57
...
...
@@ -204,7 +204,7 @@ static int Demux( demux_t *p_demux )
{
p_input
=
input_item_New
(
p_demux
,
psz_url
,
psz_title
);
#define SADD_INFO( type, field ) if( field ) { input_item_AddInfo( \
p_input, _("Google Video"),
_(type)
, "%s", field ) ; }
p_input, _("Google Video"),
type
, "%s", field ) ; }
SADD_INFO
(
"gvp_version"
,
psz_version
);
SADD_INFO
(
"docid"
,
psz_docid
);
SADD_INFO
(
"description"
,
psz_description
);
...
...
modules/demux/playlist/qtl.c
View file @
4a693e57
...
...
@@ -351,7 +351,7 @@ static int Demux( demux_t *p_demux )
{
p_input
=
input_item_New
(
p_demux
,
psz_src
,
psz_moviename
);
#define SADD_INFO( type, field ) if( field ) { input_item_AddInfo( \
p_input, "QuickTime Media Link",
_(type)
, "%s", field ) ; }
p_input, "QuickTime Media Link",
type
, "%s", field ) ; }
SADD_INFO
(
"href"
,
psz_href
);
SADD_INFO
(
"mime type"
,
psz_mimetype
);
input_item_AddSubItem
(
p_current_input
,
p_input
);
...
...
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