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
7d5bf1ea
Commit
7d5bf1ea
authored
Apr 21, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(p?)gettext -> vlc_\1gettext
parent
5268ecca
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
20 additions
and
25 deletions
+20
-25
include/vlc_config_cat.h
include/vlc_config_cat.h
+2
-2
include/vlc_fixups.h
include/vlc_fixups.h
+2
-5
modules/demux/mkv/mkv.hpp
modules/demux/mkv/mkv.hpp
+0
-1
modules/demux/playlist/shoutcast.c
modules/demux/playlist/shoutcast.c
+4
-2
modules/demux/ts.c
modules/demux/ts.c
+2
-2
modules/demux/ty.c
modules/demux/ty.c
+1
-1
modules/gui/qt4/qt4.hpp
modules/gui/qt4/qt4.hpp
+1
-1
modules/services_discovery/shout.c
modules/services_discovery/shout.c
+1
-1
modules/video_output/xcb/window.c
modules/video_output/xcb/window.c
+2
-2
src/config/file.c
src/config/file.c
+1
-1
src/extras/getopt.c
src/extras/getopt.c
+1
-1
src/extras/libc.c
src/extras/libc.c
+0
-1
src/input/es_out.c
src/input/es_out.c
+2
-2
src/libvlc.c
src/libvlc.c
+0
-1
src/modules/entry.c
src/modules/entry.c
+0
-1
src/video_output/video_output.c
src/video_output/video_output.c
+1
-1
No files found.
include/vlc_config_cat.h
View file @
7d5bf1ea
...
...
@@ -288,7 +288,7 @@ static inline const char *config_CategoryNameGet( int i_value )
{
if
(
categories_array
[
i
].
i_id
==
i_value
)
{
return
gettext
(
categories_array
[
i
].
psz_name
);
return
vlc_
gettext
(
categories_array
[
i
].
psz_name
);
}
i
++
;
}
...
...
@@ -303,7 +303,7 @@ static inline const char *config_CategoryHelpGet( int i_value )
{
if
(
categories_array
[
i
].
i_id
==
i_value
)
{
return
gettext
(
categories_array
[
i
].
psz_help
);
return
vlc_
gettext
(
categories_array
[
i
].
psz_help
);
}
i
++
;
}
...
...
include/vlc_fixups.h
View file @
7d5bf1ea
...
...
@@ -175,11 +175,8 @@ typedef void *locale_t;
#endif
/* libintl support */
#define _(str) gettext(str)
#define gettext(str) vlc_gettext (str)
#define pgettext(ctx,id) vlc_pgettext(ctx,id)
#define N_(str) gettext_noop (str)
#define _(str) vlc_gettext (str)
#define N_(str) gettext_noop (str)
#define gettext_noop(str) (str)
#ifndef HAVE_SWAB
...
...
modules/demux/mkv/mkv.hpp
View file @
7d5bf1ea
...
...
@@ -38,7 +38,6 @@
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#undef gettext
#include <inttypes.h>
...
...
modules/demux/playlist/shoutcast.c
View file @
7d5bf1ea
...
...
@@ -402,8 +402,10 @@ static int DemuxStation( demux_t *p_demux )
input_item_CopyOptions
(
p_sys
->
p_current_input
,
p_input
);
free
(
psz_mrl
);
#define SADD_INFO( type, field ) if( field ) { input_item_AddInfo( \
p_input, _("Shoutcast"), gettext(type), "%s", field ) ; }
#define SADD_INFO( type, field ) \
if( field ) \
input_item_AddInfo( p_input, _("Shoutcast"), \
vlc_gettext(type), "%s", field )
SADD_INFO
(
N_
(
"Mime"
),
psz_mt
);
SADD_INFO
(
N_
(
"Bitrate"
),
psz_br
);
SADD_INFO
(
N_
(
"Listeners"
),
psz_lc
);
...
...
modules/demux/ts.c
View file @
7d5bf1ea
...
...
@@ -3265,7 +3265,7 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid,
{
p_fmt
->
subs
.
teletext
.
i_magazine
=
-
1
;
p_fmt
->
subs
.
teletext
.
i_page
=
0
;
p_fmt
->
psz_description
=
strdup
(
gettext
(
ppsz_teletext_type
[
1
])
);
p_fmt
->
psz_description
=
strdup
(
vlc_
gettext
(
ppsz_teletext_type
[
1
])
);
dvbpsi_descriptor_t
*
p_dr
;
p_dr
=
PMTEsFindDescriptor
(
p_es
,
0x46
);
...
...
@@ -3320,7 +3320,7 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid,
/* */
const
ts_teletext_page_t
*
p
=
&
p_page
[
i
];
p_es
->
fmt
.
psz_language
=
strndup
(
p
->
p_iso639
,
3
);
p_es
->
fmt
.
psz_description
=
strdup
(
gettext
(
ppsz_teletext_type
[
p
->
i_type
]));
p_es
->
fmt
.
psz_description
=
strdup
(
vlc_
gettext
(
ppsz_teletext_type
[
p
->
i_type
]));
p_es
->
fmt
.
subs
.
teletext
.
i_magazine
=
p
->
i_magazine
;
p_es
->
fmt
.
subs
.
teletext
.
i_page
=
p
->
i_page
;
...
...
modules/demux/ty.c
View file @
7d5bf1ea
...
...
@@ -780,7 +780,7 @@ static int DemuxRecVideo( demux_t *p_demux, ty_rec_hdr_t *rec_hdr, block_t *p_bl
continue
;
es_format_Init
(
&
fmt
,
SPU_ES
,
fcc
[
i
]
);
fmt
.
psz_description
=
strdup
(
gettext
(
ppsz_description
[
i
])
);
fmt
.
psz_description
=
strdup
(
vlc_
gettext
(
ppsz_description
[
i
])
);
fmt
.
i_group
=
TY_ES_GROUP
;
p_sys
->
p_cc
[
i
]
=
es_out_Add
(
p_demux
->
out
,
&
fmt
);
es_format_Clean
(
&
fmt
);
...
...
modules/gui/qt4/qt4.hpp
View file @
7d5bf1ea
...
...
@@ -86,7 +86,7 @@ struct intf_sys_t
#define THEMIM MainInputManager::getInstance( p_intf )
#define qfu( i ) QString::fromUtf8( i )
#define qtr( i ) QString::fromUtf8( gettext(i) )
#define qtr( i ) QString::fromUtf8(
vlc_
gettext(i) )
#define qtu( i ) ((i).toUtf8().constData())
#define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) )
...
...
modules/services_discovery/shout.c
View file @
7d5bf1ea
...
...
@@ -187,7 +187,7 @@ static input_item_t * CreateInputItemFromShoutItem( services_discovery_t *p_sd,
int
i
;
/* Create the item */
input_item_t
*
p_input
=
input_item_New
(
p_sd
,
p_item
->
psz_url
,
gettext
(
p_item
->
psz_name
)
);
vlc_
gettext
(
p_item
->
psz_name
)
);
/* Copy options */
for
(
i
=
0
;
p_item
->
ppsz_options
[
i
]
!=
NULL
;
i
++
)
...
...
modules/video_output/xcb/window.c
View file @
7d5bf1ea
...
...
@@ -162,9 +162,9 @@ static int Open (vlc_object_t *obj)
* No cut&paste nor drag&drop, only Window Manager communication. */
/* Plain ASCII localization of VLC for ICCCM window name */
set_ascii_prop
(
conn
,
window
,
XA_WM_NAME
,
pgettext
(
"ASCII VLC media player"
,
"VLC media player"
));
vlc_
pgettext
(
"ASCII VLC media player"
,
"VLC media player"
));
set_ascii_prop
(
conn
,
window
,
XA_WM_ICON_NAME
,
pgettext
(
"ASCII VLC"
,
"VLC"
));
vlc_
pgettext
(
"ASCII VLC"
,
"VLC"
));
xcb_change_property
(
conn
,
XCB_PROP_MODE_REPLACE
,
window
,
XA_WM_CLASS
,
XA_STRING
,
8
,
8
,
"vlc
\0
Vlc"
);
set_hostname_prop
(
conn
,
window
);
...
...
src/config/file.c
View file @
7d5bf1ea
...
...
@@ -375,7 +375,7 @@ config_Write (FILE *file, const char *type, const char *desc,
if
(
desc
==
NULL
)
desc
=
"?"
;
if
(
fprintf
(
file
,
"# %s (%s)
\n
%s%s="
,
desc
,
gettext
(
type
),
if
(
fprintf
(
file
,
"# %s (%s)
\n
%s%s="
,
desc
,
vlc_
gettext
(
type
),
comment
?
"#"
:
""
,
name
)
<
0
)
return
-
1
;
...
...
src/extras/getopt.c
View file @
7d5bf1ea
...
...
@@ -93,7 +93,7 @@
When compiling libc, the _ macro is predefined. */
#ifdef HAVE_LIBINTL_H
#include <libintl.h>
#define _(msgid) gettext (msgid)
#define _(msgid)
vlc_
gettext (msgid)
#else
#define _(msgid) (msgid)
#endif
...
...
src/extras/libc.c
View file @
7d5bf1ea
...
...
@@ -192,7 +192,6 @@ int vlc_wclosedir( void *_p_dir )
}
#ifdef ENABLE_NLS
# undef gettext
# include <libintl.h>
#endif
...
...
src/input/es_out.c
View file @
7d5bf1ea
...
...
@@ -1206,7 +1206,7 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
for
(
i
=
0
;
ppsz_all_keys
[
i
];
i
++
)
{
input_Control
(
p_input
,
INPUT_ADD_INFO
,
psz_cat
,
gettext
(
ppsz_all_keys
[
i
]),
vlc_
gettext
(
ppsz_all_keys
[
i
]),
vlc_dictionary_value_for_key
(
&
p_meta
->
extra_tags
,
ppsz_all_keys
[
i
]
)
);
free
(
ppsz_all_keys
[
i
]
);
...
...
@@ -2759,7 +2759,7 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
if
(
psz_value
)
input_Control
(
p_input
,
INPUT_ADD_INFO
,
psz_cat
,
gettext
(
psz_key
),
gettext
(
psz_value
)
);
vlc_gettext
(
psz_key
),
vlc_
gettext
(
psz_value
)
);
free
(
psz_key
);
}
free
(
ppsz_all_keys
);
...
...
src/libvlc.c
View file @
7d5bf1ea
...
...
@@ -67,7 +67,6 @@
#endif
#ifdef ENABLE_NLS
# undef gettext
# include <libintl.h>
/* bindtextdomain */
#endif
...
...
src/modules/entry.c
View file @
7d5bf1ea
...
...
@@ -29,7 +29,6 @@
#include <stdarg.h>
#ifdef ENABLE_NLS
# undef gettext
# include <libintl.h>
#endif
...
...
src/video_output/video_output.c
View file @
7d5bf1ea
...
...
@@ -2038,7 +2038,7 @@ static void DeinterlaceEnable( vout_thread_t *p_vout )
for
(
int
i
=
0
;
p_deinterlace_mode
[
i
].
psz_mode
;
i
++
)
{
val
.
psz_string
=
(
char
*
)
p_deinterlace_mode
[
i
].
psz_mode
;
text
.
psz_string
=
(
char
*
)
gettext
(
p_deinterlace_mode
[
i
].
psz_description
);
text
.
psz_string
=
(
char
*
)
vlc_
gettext
(
p_deinterlace_mode
[
i
].
psz_description
);
var_Change
(
p_vout
,
"deinterlace"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
}
var_AddCallback
(
p_vout
,
"deinterlace"
,
DeinterlaceCallback
,
NULL
);
...
...
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