Changeset 075b16473cfe41bcf7135f7c93b96e5f2afd528b
- Timestamp:
- 11/12/06 21:55:22
(2 years ago)
- Author:
- Derk-Jan Hartman <hartman@videolan.org>
- git-committer:
- Derk-Jan Hartman <hartman@videolan.org> 1165870522 +0000
- git-parent:
[18f3b1e3d9ccdaab0c3757d871fb7c5e59d58024]
- git-author:
- Derk-Jan Hartman <hartman@videolan.org> 1165870522 +0000
- Message:
* Some more const warning fixes
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd3fe7f2 |
r075b164 |
|
| 480 | 480 | if( p_sys->p_disc ) |
|---|
| 481 | 481 | { |
|---|
| 482 | | char *psz_result; |
|---|
| | 482 | const char *psz_result; |
|---|
| 483 | 483 | cddb_track_t *t = cddb_disc_get_track( p_sys->p_disc, i ); |
|---|
| 484 | 484 | if( t!= NULL ) |
|---|
| rae32c14 |
r075b164 |
|
| 30 | 30 | #include "cdda.h" /* private structures. Also #includes vlc things */ |
|---|
| 31 | 31 | #include "info.h" /* headers for meta info retrieval */ |
|---|
| | 32 | #include "access.h" |
|---|
| 32 | 33 | #include <vlc_playlist.h> /* Has to come *after* cdda.h */ |
|---|
| 33 | 34 | #include "vlc_keys.h" |
|---|
| rdc8b128 |
r075b164 |
|
| 39 | 39 | |
|---|
| 40 | 40 | #if LIBCDIO_VERSION_NUM >= 72 |
|---|
| 41 | | static char *psz_paranoia_list[] = { "none", "overlap", "full" }; |
|---|
| 42 | | static char *psz_paranoia_list_text[] = { N_("none"), N_("overlap"), |
|---|
| | 41 | static const char *psz_paranoia_list[] = { "none", "overlap", "full" }; |
|---|
| | 42 | static const char *psz_paranoia_list_text[] = { N_("none"), N_("overlap"), |
|---|
| 43 | 43 | N_("full") }; |
|---|
| 44 | 44 | #endif |
|---|
| r0ed4ebd |
r075b164 |
|
| 840 | 840 | |
|---|
| 841 | 841 | p_child = playlist_ItemNew( p_playlist, psz_mrl, psz_title ); |
|---|
| 842 | | input_GetItem(p_child)->i_duration = (mtime_t) i_mduration; |
|---|
| | 842 | input_GetItem(p_child->p_input)->i_duration = (mtime_t) i_mduration; |
|---|
| 843 | 843 | free(psz_mrl); |
|---|
| 844 | 844 | free(psz_title); |
|---|
| rd3fe7f2 |
r075b164 |
|
| 253 | 253 | * XXX: maybe it would be better to set it like audio/spu |
|---|
| 254 | 254 | * or to create a --menu-language option */ |
|---|
| 255 | | if( dvdnav_menu_language_select( p_sys->dvdnav,LANGUAGE_DEFAULT ) != |
|---|
| | 255 | if( dvdnav_menu_language_select( p_sys->dvdnav, LANGUAGE_DEFAULT ) != |
|---|
| 256 | 256 | DVDNAV_STATUS_OK ) |
|---|
| 257 | 257 | { |
|---|
| r3a6b391 |
r075b164 |
|
| 84 | 84 | "The default method is: key.") |
|---|
| 85 | 85 | |
|---|
| 86 | | static char *psz_css_list[] = { "title", "disc", "key" }; |
|---|
| 87 | | static char *psz_css_list_text[] = { N_("title"), N_("Disc"), N_("Key") }; |
|---|
| | 86 | static const char *psz_css_list[] = { "title", "disc", "key" }; |
|---|
| | 87 | static const char *psz_css_list_text[] = { N_("title"), N_("Disc"), N_("Key") }; |
|---|
| 88 | 88 | |
|---|
| 89 | 89 | static int Open ( vlc_object_t * ); |
|---|