Changeset 26bc39402794f4c89e54c6ada4be8ce3a37d2749
- Timestamp:
- 05/27/07 19:19:07
(1 year ago)
- Author:
- Laurent Aimar <fenrir@videolan.org>
- git-committer:
- Laurent Aimar <fenrir@videolan.org> 1180286347 +0000
- git-parent:
[d27ab7811427daa346f6a351d0b75117440aba97]
- git-author:
- Laurent Aimar <fenrir@videolan.org> 1180286347 +0000
- Message:
Compilation warning fixes.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd3fe7f2 |
r26bc394 |
|
| 642 | 642 | const SpeexMode *p_speex_mode = &speex_nb_mode; |
|---|
| 643 | 643 | int i_quality, i; |
|---|
| 644 | | char *pp_header[2]; |
|---|
| | 644 | const char *pp_header[2]; |
|---|
| 645 | 645 | int pi_header[2]; |
|---|
| 646 | 646 | uint8_t *p_extra; |
|---|
| r9025fab |
r26bc394 |
|
| 117 | 117 | |
|---|
| 118 | 118 | static char *MessageToString( vlm_message_t *, int ); |
|---|
| 119 | | static void Write_message( telnet_client_t *, vlm_message_t *, char *, int ); |
|---|
| | 119 | static void Write_message( telnet_client_t *, vlm_message_t *, const char *, int ); |
|---|
| 120 | 120 | |
|---|
| 121 | 121 | struct intf_sys_t |
|---|
| … | … | |
| 501 | 501 | |
|---|
| 502 | 502 | static void Write_message( telnet_client_t *client, vlm_message_t *message, |
|---|
| 503 | | char *string_message, int i_mode ) |
|---|
| | 503 | const char *string_message, int i_mode ) |
|---|
| 504 | 504 | { |
|---|
| 505 | 505 | char *psz_message; |
|---|
| rf64ef86 |
r26bc394 |
|
| 104 | 104 | uint8_t *p_peek; |
|---|
| 105 | 105 | unsigned int i_size, i_extended; |
|---|
| 106 | | char *psz_name; |
|---|
| | 106 | const char *psz_name; |
|---|
| 107 | 107 | |
|---|
| 108 | 108 | WAVEFORMATEXTENSIBLE *p_wf_ext; |
|---|
| r9025fab |
r26bc394 |
|
| 83 | 83 | static playlist_item_t *PlaylistGetRoot( intf_thread_t * ); |
|---|
| 84 | 84 | static void PlaylistRebuild( intf_thread_t * ); |
|---|
| 85 | | static void PlaylistAddNode( intf_thread_t *, playlist_item_t *, int, char *); |
|---|
| | 85 | static void PlaylistAddNode( intf_thread_t *, playlist_item_t *, int, const char *); |
|---|
| 86 | 86 | static void PlaylistDestroy( intf_thread_t * ); |
|---|
| 87 | 87 | static int PlaylistChanged( vlc_object_t *, const char *, vlc_value_t, |
|---|
| … | … | |
| 1667 | 1667 | |
|---|
| 1668 | 1668 | static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node, |
|---|
| 1669 | | int i, char *c ) |
|---|
| | 1669 | int i, const char *c ) |
|---|
| 1670 | 1670 | { |
|---|
| 1671 | 1671 | intf_sys_t *p_sys = p_intf->p_sys; |
|---|
| … | … | |
| 1904 | 1904 | if( p_sys->psz_current_dir && *p_sys->psz_current_dir ) |
|---|
| 1905 | 1905 | { |
|---|
| 1906 | | const char *psz_entry; |
|---|
| | 1906 | char *psz_entry; |
|---|
| 1907 | 1907 | |
|---|
| 1908 | 1908 | /* Open the dir */ |
|---|
| rb45afc2 |
r26bc394 |
|
| 25 | 25 | #define NUM_GENRES 80 |
|---|
| 26 | 26 | |
|---|
| 27 | | static char *ppsz_genres[] = { |
|---|
| | 27 | static const char *ppsz_genres[] = { |
|---|
| 28 | 28 | N_("Blues"), |
|---|
| 29 | 29 | N_("Classic rock"), |
|---|
| r88f28f6 |
r26bc394 |
|
| 72 | 72 | |
|---|
| 73 | 73 | static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 }; |
|---|
| 74 | | static char *ppsz_pos_descriptions[] = |
|---|
| | 74 | static const char *ppsz_pos_descriptions[] = |
|---|
| 75 | 75 | { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"), |
|---|
| 76 | 76 | N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") }; |
|---|
| rc09b9f6 |
r26bc394 |
|
| 167 | 167 | static struct |
|---|
| 168 | 168 | { |
|---|
| 169 | | char *psz_name; |
|---|
| | 169 | const char *psz_name; |
|---|
| 170 | 170 | int (*pf_run)( visual_effect_t *, aout_instance_t *, |
|---|
| 171 | 171 | aout_buffer_t *, picture_t *); |
|---|