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
b8110c18
Commit
b8110c18
authored
Sep 11, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix jack input MRL generation and add more debug to fix some windows subtitles issues.
parent
cf4c4623
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+4
-4
modules/gui/qt4/dialogs/open.cpp
modules/gui/qt4/dialogs/open.cpp
+2
-0
No files found.
modules/gui/qt4/components/open_panels.cpp
View file @
b8110c18
...
...
@@ -1027,15 +1027,15 @@ void CaptureOpenPanel::updateMRL()
case
JACK_DEVICE
:
mrl
=
"jack://"
;
mrl
+=
"channels="
+
QString
(
"%1"
).
arg
(
jackChannels
->
value
()
);
mrl
+=
":ports="
+
jackPortsSelected
->
text
();
mrl
+=
"
--
jack-input-caching="
+
QString
(
"%1"
).
arg
(
jackCaching
->
value
()
);
mrl
+=
"
:ports="
+
jackPortsSelected
->
text
();
mrl
+=
"
:
jack-input-caching="
+
QString
(
"%1"
).
arg
(
jackCaching
->
value
()
);
if
(
jackPace
->
isChecked
()
)
{
mrl
+=
"
--
jack-input-use-vlc-pace"
;
mrl
+=
"
:
jack-input-use-vlc-pace"
;
}
if
(
jackConnect
->
isChecked
()
)
{
mrl
+=
"
--
jack-input-auto-connect"
;
mrl
+=
"
:
jack-input-auto-connect"
;
}
break
;
case
PVR_DEVICE
:
...
...
modules/gui/qt4/dialogs/open.cpp
View file @
b8110c18
...
...
@@ -319,12 +319,14 @@ void OpenDialog::finish( bool b_enqueue = false )
bool
b_start
=
!
i
&&
!
b_enqueue
;
input_item_t
*
p_input
;
msg_Dbg
(
p_intf
,
"New item: %s"
,
qtu
(
tempMRL
[
i
]
)
);
p_input
=
input_item_New
(
p_intf
,
qtu
(
tempMRL
[
i
]
),
NULL
);
/* Insert options */
while
(
i
+
1
<
tempMRL
.
size
()
&&
tempMRL
[
i
+
1
].
startsWith
(
":"
)
)
{
i
++
;
msg_Dbg
(
p_intf
,
"New Option: %s"
,
qtu
(
tempMRL
[
i
]
)
);
input_item_AddOption
(
p_input
,
qtu
(
tempMRL
[
i
]
)
);
}
...
...
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