Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
32b36298
Commit
32b36298
authored
May 07, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvdnav: remove useless parameter
parent
375a8961
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
modules/access/dvdnav.c
modules/access/dvdnav.c
+3
-4
No files found.
modules/access/dvdnav.c
View file @
32b36298
...
...
@@ -163,7 +163,7 @@ static void ESSubtitleUpdate( demux_t * );
static
void
ButtonUpdate
(
demux_t
*
,
bool
);
static
void
ESNew
(
demux_t
*
,
int
);
static
int
ProbeDVD
(
demux_t
*
,
char
*
);
static
int
ProbeDVD
(
const
char
*
);
static
char
*
DemuxGetLanguageCode
(
demux_t
*
p_demux
,
const
char
*
psz_var
);
...
...
@@ -216,7 +216,7 @@ static int Open( vlc_object_t *p_this )
return
VLC_EGENERIC
;
/* Try some simple probing to avoid going through dvdnav_open too often */
if
(
ProbeDVD
(
p
_demux
,
p
sz_file
)
!=
VLC_SUCCESS
)
if
(
ProbeDVD
(
psz_file
)
!=
VLC_SUCCESS
)
{
free
(
psz_file
);
return
VLC_EGENERIC
;
...
...
@@ -1446,9 +1446,8 @@ static int EventIntf( vlc_object_t *p_input, char const *psz_var,
/*****************************************************************************
* ProbeDVD: very weak probing that avoids going too often into a dvdnav_open()
*****************************************************************************/
static
int
ProbeDVD
(
demux_t
*
p_demux
,
char
*
psz_name
)
static
int
ProbeDVD
(
const
char
*
psz_name
)
{
(
void
)
p_demux
;
#ifdef HAVE_SYS_STAT_H
struct
stat
stat_info
;
uint8_t
pi_anchor
[
2
];
...
...
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