Changeset 1f75e5730e7fef018f5d7708ef9fba6e66fdaaa5
- Timestamp:
- 05/27/08 20:30:50
(3 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1211913050 +0300
- git-parent:
[80304bcee1ddd980e957695b4e90075850553522]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1211913050 +0300
- Message:
Spare a few relocs
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re58c9db |
r1f75e57 |
|
| 230 | 230 | * Get the char * name of an event type. |
|---|
| 231 | 231 | **************************************************************************/ |
|---|
| 232 | | static const char * event_type_to_name[] = |
|---|
| | 232 | static const char event_type_to_name[][35] = |
|---|
| 233 | 233 | { |
|---|
| 234 | 234 | #define EVENT(a) [a]=#a |
|---|
| … | … | |
| 266 | 266 | }; |
|---|
| 267 | 267 | |
|---|
| 268 | | static const char * unkwown_event_name = "Unknown Event"; |
|---|
| | 268 | static const char unkwown_event_name[] = "Unknown Event"; |
|---|
| 269 | 269 | |
|---|
| 270 | 270 | const char * libvlc_event_type_name( libvlc_event_type_t event_type ) |
|---|
| r562773d |
r1f75e57 |
|
| 1442 | 1442 | VLC_FOURCC('c', 'c', '4', ' '), |
|---|
| 1443 | 1443 | }; |
|---|
| 1444 | | static const char *ppsz_description[4] = { |
|---|
| | 1444 | static const char ppsz_description[4][18] = { |
|---|
| 1445 | 1445 | N_("Closed captions 1"), |
|---|
| 1446 | 1446 | N_("Closed captions 2"), |
|---|
| re038c52 |
r1f75e57 |
|
| 71 | 71 | |
|---|
| 72 | 72 | #ifdef DEBUG_EVENT |
|---|
| 73 | | static const char * ppsz_event_type_to_name[] = |
|---|
| | 73 | static const char ppsz_event_type_to_name[][33] = |
|---|
| 74 | 74 | { |
|---|
| 75 | 75 | [vlc_InputItemMetaChanged] = "vlc_InputItemMetaChanged", |
|---|
| rfb7f7d2 |
r1f75e57 |
|
| 524 | 524 | int i_dummy; |
|---|
| 525 | 525 | #endif |
|---|
| 526 | | static const char * ppsz_type[4] = { "", " error", " warning", " debug" }; |
|---|
| 527 | | static const char *ppsz_color[4] = { WHITE, RED, YELLOW, GRAY }; |
|---|
| | 526 | static const char ppsz_type[4][9] = { "", " error", " warning", " debug" }; |
|---|
| | 527 | static const char ppsz_color[4][8] = { WHITE, RED, YELLOW, GRAY }; |
|---|
| 528 | 528 | const char *psz_object; |
|---|
| 529 | 529 | libvlc_priv_t *priv = libvlc_priv (p_this->p_libvlc); |
|---|
| r449fd28 |
r1f75e57 |
|
| 83 | 83 | }; |
|---|
| 84 | 84 | |
|---|
| 85 | | static const char *__gai_unknownerr = "Unrecognized error number"; |
|---|
| | 85 | static const char __gai_unknownerr[] = "Unrecognized error number"; |
|---|
| 86 | 86 | |
|---|
| 87 | 87 | /**************************************************************************** |
|---|