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
743711c4
Commit
743711c4
authored
Aug 28, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all: ooops wrong order for ACCESS_SET_PRIVATE_ID...
parent
f0251c53
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/vlc_access.h
include/vlc_access.h
+1
-1
modules/access/dvb/access.c
modules/access/dvb/access.c
+1
-1
No files found.
include/vlc_access.h
View file @
743711c4
...
...
@@ -54,7 +54,7 @@ enum access_query_e
/* Special mode for access/demux communication
* XXX: avoid to use it unless you can't */
ACCESS_SET_PRIVATE_ID_STATE
,
/* arg1=
vlc_bool_t b_selected, int i_private_data
can fail */
ACCESS_SET_PRIVATE_ID_STATE
,
/* arg1=
int i_private_data, vlc_bool_t b_selected
can fail */
};
struct
access_t
...
...
modules/access/dvb/access.c
View file @
743711c4
...
...
@@ -379,8 +379,8 @@ static int Control( access_t *p_access, int i_query, va_list args )
return
VLC_EGENERIC
;
case
ACCESS_SET_PRIVATE_ID_STATE
:
b_bool
=
(
vlc_bool_t
)
va_arg
(
args
,
vlc_bool_t
);
/* b_selected */
i_int
=
(
int
)
va_arg
(
args
,
int
);
/* Private data (pid for now)*/
b_bool
=
(
vlc_bool_t
)
va_arg
(
args
,
vlc_bool_t
);
/* b_selected */
if
(
!
p_sys
->
b_budget_mode
)
{
/* FIXME we may want to give the real type (me ?, I don'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