Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
31d64379
Commit
31d64379
authored
Jun 25, 2009
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dv: fix compiler warnings about unused variables.
parent
f23f5e62
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/access/dv.c
modules/access/dv.c
+2
-1
No files found.
modules/access/dv.c
View file @
31d64379
...
@@ -148,7 +148,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -148,7 +148,6 @@ static int Open( vlc_object_t *p_this )
char
*
psz_name
=
strdup
(
p_access
->
psz_path
);
char
*
psz_name
=
strdup
(
p_access
->
psz_path
);
struct
raw1394_portinfo
port_inf
[
16
];
struct
raw1394_portinfo
port_inf
[
16
];
raw1394_iso_recv_handler_t
handler
;
msg_Dbg
(
p_access
,
"opening device %s"
,
psz_name
);
msg_Dbg
(
p_access
,
"opening device %s"
,
psz_name
);
...
@@ -411,6 +410,8 @@ Raw1394Handler(raw1394handle_t handle, unsigned char *data,
...
@@ -411,6 +410,8 @@ Raw1394Handler(raw1394handle_t handle, unsigned char *data,
access_t
*
p_access
=
NULL
;
access_t
*
p_access
=
NULL
;
access_sys_t
*
p_sys
=
NULL
;
access_sys_t
*
p_sys
=
NULL
;
block_t
*
p_block
=
NULL
;
block_t
*
p_block
=
NULL
;
VLC_UNUSED
(
channel
);
VLC_UNUSED
(
tag
);
VLC_UNUSED
(
sy
);
VLC_UNUSED
(
cycle
);
VLC_UNUSED
(
dropped
);
p_access
=
(
access_t
*
)
raw1394_get_userdata
(
handle
);
p_access
=
(
access_t
*
)
raw1394_get_userdata
(
handle
);
if
(
!
p_access
)
return
0
;
if
(
!
p_access
)
return
0
;
...
...
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