Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
bce50f87
Commit
bce50f87
authored
Apr 24, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: fix some parsing of SOut options.
Close #1853
parent
4386f499
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
modules/gui/qt4/dialogs/convert.cpp
modules/gui/qt4/dialogs/convert.cpp
+1
-1
modules/gui/qt4/dialogs_provider.cpp
modules/gui/qt4/dialogs_provider.cpp
+4
-5
No files found.
modules/gui/qt4/dialogs/convert.cpp
View file @
bce50f87
...
@@ -124,7 +124,7 @@ void ConvertDialog::close()
...
@@ -124,7 +124,7 @@ void ConvertDialog::close()
if
(
dumpBox
->
isChecked
()
)
if
(
dumpBox
->
isChecked
()
)
{
{
mrl
=
"demux=dump :demuxdump-file"
+
fileLine
->
text
();
mrl
=
"demux=dump :demuxdump-file
=
"
+
fileLine
->
text
();
}
}
else
else
{
{
...
...
modules/gui/qt4/dialogs_provider.cpp
View file @
bce50f87
/*****************************************************************************
/*****************************************************************************
* dialogs_provider.cpp : Dialog Provider
* dialogs_provider.cpp : Dialog Provider
*****************************************************************************
*****************************************************************************
* Copyright (C) 2006-200
8
the VideoLAN team
* Copyright (C) 2006-200
9
the VideoLAN team
* $Id$
* $Id$
*
*
* Authors: Clément Stenac <zorglub@videolan.org>
* Authors: Clément Stenac <zorglub@videolan.org>
...
@@ -606,6 +606,8 @@ void DialogsProvider::streamingDialog( QWidget *parent,
...
@@ -606,6 +606,8 @@ void DialogsProvider::streamingDialog( QWidget *parent,
/* Get SoutMRL */
/* Get SoutMRL */
if
(
!
EMPTY_STR
(
psz_soutoption
)
)
if
(
!
EMPTY_STR
(
psz_soutoption
)
)
{
{
options
+=
QString
(
psz_soutoption
).
split
(
" :"
);
/* Create Input */
/* Create Input */
input_item_t
*
p_input
;
input_item_t
*
p_input
;
p_input
=
input_item_New
(
p_intf
,
qtu
(
mrl
),
_
(
"Streaming"
)
);
p_input
=
input_item_New
(
p_intf
,
qtu
(
mrl
),
_
(
"Streaming"
)
);
...
@@ -618,13 +620,10 @@ void DialogsProvider::streamingDialog( QWidget *parent,
...
@@ -618,13 +620,10 @@ void DialogsProvider::streamingDialog( QWidget *parent,
{
{
input_item_AddOption
(
p_input
,
qtu
(
qs
),
input_item_AddOption
(
p_input
,
qtu
(
qs
),
VLC_INPUT_OPTION_TRUSTED
);
VLC_INPUT_OPTION_TRUSTED
);
msg_Dbg
(
p_intf
,
"Adding option: %s"
,
qtu
(
qs
)
);
}
}
}
}
/* Add SoutMRL */
msg_Dbg
(
p_intf
,
"Streaming MRL is: %s"
,
psz_soutoption
);
input_item_AddOption
(
p_input
,
psz_soutoption
,
VLC_INPUT_OPTION_TRUSTED
);
/* Switch between enqueuing and starting the item */
/* Switch between enqueuing and starting the item */
/* FIXME: playlist_AddInput() can fail */
/* FIXME: playlist_AddInput() can fail */
playlist_AddInput
(
THEPL
,
p_input
,
playlist_AddInput
(
THEPL
,
p_input
,
...
...
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