Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Apps
parole
Commits
62f3b404
Commit
62f3b404
authored
Mar 25, 2014
by
Sean Davis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Likely fix to the dvd playback issue
parent
8f4faf4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
src/gst/parole-gst.c
src/gst/parole-gst.c
+10
-1
No files found.
src/gst/parole-gst.c
View file @
62f3b404
...
...
@@ -2561,7 +2561,16 @@ void parole_gst_play_device_uri (ParoleGst *gst, const gchar *uri, const gchar *
if
(
G_UNLIKELY
(
!
g_strcmp0
(
uri
,
"cdda:/"
)
)
)
local_uri
=
"cdda://"
;
else
local_uri
=
uri
;
{
if
(
g_str_has_prefix
(
device
,
"/dev/"
))
{
local_uri
=
g_strconcat
(
uri
,
"/"
,
device
,
NULL
);
}
else
{
local_uri
=
uri
;
}
}
parole_gst_play_uri
(
gst
,
local_uri
,
NULL
);
}
...
...
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