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
1f75e573
Commit
1f75e573
authored
May 27, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spare a few relocs
parent
80304bce
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
src/control/event.c
src/control/event.c
+2
-2
src/input/es_out.c
src/input/es_out.c
+1
-1
src/misc/events.c
src/misc/events.c
+1
-1
src/misc/messages.c
src/misc/messages.c
+2
-2
src/network/getaddrinfo.c
src/network/getaddrinfo.c
+1
-1
No files found.
src/control/event.c
View file @
1f75e573
...
...
@@ -229,7 +229,7 @@ void libvlc_event_send( libvlc_event_manager_t * p_em,
*
* Get the char * name of an event type.
**************************************************************************/
static
const
char
*
event_type_to_name
[
]
=
static
const
char
event_type_to_name
[][
35
]
=
{
#define EVENT(a) [a]=#a
EVENT
(
libvlc_MediaMetaChanged
),
...
...
@@ -265,7 +265,7 @@ static const char * event_type_to_name[] =
#undef EVENT
};
static
const
char
*
unkwown_event_name
=
"Unknown Event"
;
static
const
char
unkwown_event_name
[]
=
"Unknown Event"
;
const
char
*
libvlc_event_type_name
(
libvlc_event_type_t
event_type
)
{
...
...
src/input/es_out.c
View file @
1f75e573
...
...
@@ -1441,7 +1441,7 @@ static int EsOutSend( es_out_t *out, es_out_id_t *es, block_t *p_block )
VLC_FOURCC
(
'c'
,
'c'
,
'3'
,
' '
),
VLC_FOURCC
(
'c'
,
'c'
,
'4'
,
' '
),
};
static
const
char
*
ppsz_description
[
4
]
=
{
static
const
char
ppsz_description
[
4
][
18
]
=
{
N_
(
"Closed captions 1"
),
N_
(
"Closed captions 2"
),
N_
(
"Closed captions 3"
),
...
...
src/misc/events.c
View file @
1f75e573
...
...
@@ -70,7 +70,7 @@ typedef struct vlc_event_listeners_group_t
}
vlc_event_listeners_group_t
;
#ifdef DEBUG_EVENT
static
const
char
*
ppsz_event_type_to_name
[
]
=
static
const
char
ppsz_event_type_to_name
[][
33
]
=
{
[
vlc_InputItemMetaChanged
]
=
"vlc_InputItemMetaChanged"
,
[
vlc_InputItemSubItemAdded
]
=
"vlc_InputItemSubItemAdded"
,
...
...
src/misc/messages.c
View file @
1f75e573
...
...
@@ -523,8 +523,8 @@ static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item )
#ifdef UNDER_CE
int
i_dummy
;
#endif
static
const
char
*
ppsz_type
[
4
]
=
{
""
,
" error"
,
" warning"
,
" debug"
};
static
const
char
*
ppsz_color
[
4
]
=
{
WHITE
,
RED
,
YELLOW
,
GRAY
};
static
const
char
ppsz_type
[
4
][
9
]
=
{
""
,
" error"
,
" warning"
,
" debug"
};
static
const
char
ppsz_color
[
4
][
8
]
=
{
WHITE
,
RED
,
YELLOW
,
GRAY
};
const
char
*
psz_object
;
libvlc_priv_t
*
priv
=
libvlc_priv
(
p_this
->
p_libvlc
);
int
i_type
=
p_item
->
i_type
;
...
...
src/network/getaddrinfo.c
View file @
1f75e573
...
...
@@ -82,7 +82,7 @@ static struct
{
0
,
NULL
}
};
static
const
char
*
__gai_unknownerr
=
"Unrecognized error number"
;
static
const
char
__gai_unknownerr
[]
=
"Unrecognized error number"
;
/****************************************************************************
* Converts an EAI_* error code into human readable english text.
...
...
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