Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
libdvdread
Commits
574b886b
Commit
574b886b
authored
Jan 28, 2015
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation when staticly linked to libdvdcss
parent
cd82f307
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/dvd_input.c
src/dvd_input.c
+2
-1
No files found.
src/dvd_input.c
View file @
574b886b
...
...
@@ -101,10 +101,11 @@ static dvd_input_t css_open(const char *target,
else
if
(
stream
&&
stream_cb
)
{
#ifdef HAVE_DVDCSS_DVDCSS_H
dev
->
dvdcss
=
DVDcss_open_stream
(
stream
,
(
dvdcss_stream_cb
*
)
stream_cb
);
#e
ndif
#e
lse
dev
->
dvdcss
=
DVDcss_open_stream
?
DVDcss_open_stream
(
stream
,
(
dvdcss_stream_cb
*
)
stream_cb
)
:
NULL
;
#endif
}
if
(
dev
->
dvdcss
==
0
)
{
fprintf
(
stderr
,
"libdvdread: Could not open %s with libdvdcss.
\n
"
,
target
);
...
...
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