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
075b1647
Commit
075b1647
authored
Dec 11, 2006
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Some more const warning fixes
parent
18f3b1e3
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
7 deletions
+8
-7
modules/access/cdda.c
modules/access/cdda.c
+1
-1
modules/access/cdda/access.c
modules/access/cdda/access.c
+1
-0
modules/access/cdda/cdda.c
modules/access/cdda/cdda.c
+2
-2
modules/access/cdda/info.c
modules/access/cdda/info.c
+1
-1
modules/access/dvdnav.c
modules/access/dvdnav.c
+1
-1
modules/access/dvdread.c
modules/access/dvdread.c
+2
-2
No files found.
modules/access/cdda.c
View file @
075b1647
...
...
@@ -479,7 +479,7 @@ static int GetTracks( access_t *p_access,
/* If we have CDDB info, change the name */
if
(
p_sys
->
p_disc
)
{
char
*
psz_result
;
c
onst
c
har
*
psz_result
;
cddb_track_t
*
t
=
cddb_disc_get_track
(
p_sys
->
p_disc
,
i
);
if
(
t
!=
NULL
)
{
...
...
modules/access/cdda/access.c
View file @
075b1647
...
...
@@ -29,6 +29,7 @@
#include "callback.h"
/* FIXME - reorganize callback.h, cdda.h better */
#include "cdda.h"
/* private structures. Also #includes vlc things */
#include "info.h"
/* headers for meta info retrieval */
#include "access.h"
#include <vlc_playlist.h>
/* Has to come *after* cdda.h */
#include "vlc_keys.h"
#include <vlc_interface.h>
...
...
modules/access/cdda/cdda.c
View file @
075b1647
...
...
@@ -38,8 +38,8 @@
*****************************************************************************/
#if LIBCDIO_VERSION_NUM >= 72
static
char
*
psz_paranoia_list
[]
=
{
"none"
,
"overlap"
,
"full"
};
static
char
*
psz_paranoia_list_text
[]
=
{
N_
(
"none"
),
N_
(
"overlap"
),
static
c
onst
c
har
*
psz_paranoia_list
[]
=
{
"none"
,
"overlap"
,
"full"
};
static
c
onst
c
har
*
psz_paranoia_list_text
[]
=
{
N_
(
"none"
),
N_
(
"overlap"
),
N_
(
"full"
)
};
#endif
...
...
modules/access/cdda/info.c
View file @
075b1647
...
...
@@ -839,7 +839,7 @@ CDDACreatePlaylistItem( const access_t *p_access, cdda_data_t *p_cdda,
psz_mrl
,
psz_title
,
(
long
int
)
i_mduration
/
1000000
);
p_child
=
playlist_ItemNew
(
p_playlist
,
psz_mrl
,
psz_title
);
input_GetItem
(
p_child
)
->
i_duration
=
(
mtime_t
)
i_mduration
;
input_GetItem
(
p_child
->
p_input
)
->
i_duration
=
(
mtime_t
)
i_mduration
;
free
(
psz_mrl
);
free
(
psz_title
);
...
...
modules/access/dvdnav.c
View file @
075b1647
...
...
@@ -252,7 +252,7 @@ static int Open( vlc_object_t *p_this )
/* Set menu language ("en")
* XXX: maybe it would be better to set it like audio/spu
* or to create a --menu-language option */
if
(
dvdnav_menu_language_select
(
p_sys
->
dvdnav
,
LANGUAGE_DEFAULT
)
!=
if
(
dvdnav_menu_language_select
(
p_sys
->
dvdnav
,
LANGUAGE_DEFAULT
)
!=
DVDNAV_STATUS_OK
)
{
msg_Warn
(
p_demux
,
"can't set menu language to '%s' (%s)"
,
...
...
modules/access/dvdread.c
View file @
075b1647
...
...
@@ -83,8 +83,8 @@
"libcss.\n" \
"The default method is: key.")
static
char
*
psz_css_list
[]
=
{
"title"
,
"disc"
,
"key"
};
static
char
*
psz_css_list_text
[]
=
{
N_
(
"title"
),
N_
(
"Disc"
),
N_
(
"Key"
)
};
static
c
onst
c
har
*
psz_css_list
[]
=
{
"title"
,
"disc"
,
"key"
};
static
c
onst
c
har
*
psz_css_list_text
[]
=
{
N_
(
"title"
),
N_
(
"Disc"
),
N_
(
"Key"
)
};
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
...
...
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