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
ad49c23d
Commit
ad49c23d
authored
Mar 14, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: Profiles, define codec=none when no transcoding is wanted by the user.
parent
0f4954c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
15 deletions
+31
-15
modules/gui/qt4/components/sout/profile_selector.cpp
modules/gui/qt4/components/sout/profile_selector.cpp
+31
-15
No files found.
modules/gui/qt4/components/sout/profile_selector.cpp
View file @
ad49c23d
...
@@ -164,26 +164,32 @@ void VLCProfileSelector::updateOptions( int i )
...
@@ -164,26 +164,32 @@ void VLCProfileSelector::updateOptions( int i )
mux
=
options
[
0
];
mux
=
options
[
0
];
SoutMrl
smrl
;
SoutMrl
smrl
;
if
(
options
[
1
].
toInt
()
||
options
[
2
].
toInt
()
)
if
(
options
[
1
].
toInt
()
||
options
[
2
].
toInt
()
||
options
[
3
].
toInt
()
)
{
{
smrl
.
begin
(
"transcode"
);
smrl
.
begin
(
"transcode"
);
if
(
options
[
1
].
toInt
()
)
if
(
options
[
1
].
toInt
()
)
{
{
smrl
.
option
(
"vcodec"
,
options
[
4
]
);
smrl
.
option
(
"vcodec"
,
options
[
4
]
);
smrl
.
option
(
"vb"
,
options
[
5
].
toInt
()
);
if
(
options
[
4
]
!=
"none"
)
smrl
.
option
(
"scale"
,
options
[
6
]
);
{
smrl
.
option
(
"fps"
,
options
[
7
]
);
smrl
.
option
(
"vb"
,
options
[
5
].
toInt
()
);
smrl
.
option
(
"width"
,
options
[
8
].
toInt
()
);
smrl
.
option
(
"scale"
,
options
[
6
]
);
smrl
.
option
(
"height"
,
options
[
9
].
toInt
()
);
smrl
.
option
(
"fps"
,
options
[
7
]
);
smrl
.
option
(
"width"
,
options
[
8
].
toInt
()
);
smrl
.
option
(
"height"
,
options
[
9
].
toInt
()
);
}
}
}
if
(
options
[
2
].
toInt
()
)
if
(
options
[
2
].
toInt
()
)
{
{
smrl
.
option
(
"acodec"
,
options
[
10
]
);
smrl
.
option
(
"acodec"
,
options
[
10
]
);
smrl
.
option
(
"ab"
,
options
[
11
].
toInt
()
);
if
(
options
[
10
]
!=
"none"
)
smrl
.
option
(
"channels"
,
options
[
12
].
toInt
()
);
{
smrl
.
option
(
"samplerate"
,
options
[
13
].
toInt
()
);
smrl
.
option
(
"ab"
,
options
[
11
].
toInt
()
);
smrl
.
option
(
"channels"
,
options
[
12
].
toInt
()
);
smrl
.
option
(
"samplerate"
,
options
[
13
].
toInt
()
);
}
}
}
if
(
options
[
3
].
toInt
()
)
if
(
options
[
3
].
toInt
()
)
...
@@ -293,8 +299,10 @@ void VLCProfileEditor::fillProfile( QString qs )
...
@@ -293,8 +299,10 @@ void VLCProfileEditor::fillProfile( QString qs )
if
(
options
.
size
()
<
16
)
if
(
options
.
size
()
<
16
)
return
;
return
;
ui
.
transcodeVideo
->
setChecked
(
options
[
1
].
toInt
()
);
ui
.
keepVideo
->
setChecked
(
!
options
[
1
].
toInt
()
);
ui
.
transcodeAudio
->
setChecked
(
options
[
2
].
toInt
()
);
ui
.
transcodeVideo
->
setChecked
(
(
options
[
4
]
!=
"none"
)
);
ui
.
keepAudio
->
setChecked
(
!
options
[
2
].
toInt
()
);
ui
.
transcodeAudio
->
setChecked
(
(
options
[
10
]
!=
"none"
)
);
ui
.
transcodeSubs
->
setChecked
(
options
[
3
].
toInt
()
);
ui
.
transcodeSubs
->
setChecked
(
options
[
3
].
toInt
()
);
ui
.
vCodecBox
->
setCurrentIndex
(
ui
.
vCodecBox
->
findData
(
options
[
4
]
)
);
ui
.
vCodecBox
->
setCurrentIndex
(
ui
.
vCodecBox
->
findData
(
options
[
4
]
)
);
...
@@ -327,6 +335,7 @@ void VLCProfileEditor::setVTranscodeOptions( bool b_trans )
...
@@ -327,6 +335,7 @@ void VLCProfileEditor::setVTranscodeOptions( bool b_trans )
ui
.
widthLabel
->
setEnabled
(
b_trans
);
ui
.
widthLabel
->
setEnabled
(
b_trans
);
ui
.
vFrameBox
->
setEnabled
(
b_trans
);
ui
.
vFrameBox
->
setEnabled
(
b_trans
);
ui
.
vFrameLabel
->
setEnabled
(
b_trans
);
ui
.
vFrameLabel
->
setEnabled
(
b_trans
);
ui
.
keepVideo
->
setEnabled
(
b_trans
);
}
}
void
VLCProfileEditor
::
setATranscodeOptions
(
bool
b_trans
)
void
VLCProfileEditor
::
setATranscodeOptions
(
bool
b_trans
)
...
@@ -339,6 +348,7 @@ void VLCProfileEditor::setATranscodeOptions( bool b_trans )
...
@@ -339,6 +348,7 @@ void VLCProfileEditor::setATranscodeOptions( bool b_trans )
ui
.
aChannelsSpin
->
setEnabled
(
b_trans
);
ui
.
aChannelsSpin
->
setEnabled
(
b_trans
);
ui
.
aSampleLabel
->
setEnabled
(
b_trans
);
ui
.
aSampleLabel
->
setEnabled
(
b_trans
);
ui
.
aSampleBox
->
setEnabled
(
b_trans
);
ui
.
aSampleBox
->
setEnabled
(
b_trans
);
ui
.
keepAudio
->
setEnabled
(
b_trans
);
}
}
void
VLCProfileEditor
::
setSTranscodeOptions
(
bool
b_trans
)
void
VLCProfileEditor
::
setSTranscodeOptions
(
bool
b_trans
)
...
@@ -378,22 +388,28 @@ QString VLCProfileEditor::transcodeValue()
...
@@ -378,22 +388,28 @@ QString VLCProfileEditor::transcodeValue()
SMUX
(
MJPEGMux
,
"mjpg"
);
SMUX
(
MJPEGMux
,
"mjpg"
);
#define currentData( box ) box->itemData( box->currentIndex() )
#define currentData( box ) box->itemData( box->currentIndex() )
QString
qs_acodec
,
qs_vcodec
;
qs_vcodec
=
(
ui
.
transcodeVideo
->
isChecked
()
)
?
currentData
(
ui
.
vCodecBox
).
toString
()
:
"none"
;
qs_acodec
=
(
ui
.
transcodeAudio
->
isChecked
()
)
?
currentData
(
ui
.
aCodecBox
).
toString
()
:
"none"
;
QStringList
transcodeMRL
;
QStringList
transcodeMRL
;
transcodeMRL
transcodeMRL
<<
muxValue
<<
muxValue
<<
QString
::
number
(
ui
.
transcode
Video
->
isChecked
()
)
<<
QString
::
number
(
!
ui
.
keep
Video
->
isChecked
()
)
<<
QString
::
number
(
ui
.
transcode
Audio
->
isChecked
()
)
<<
QString
::
number
(
!
ui
.
keep
Audio
->
isChecked
()
)
<<
QString
::
number
(
ui
.
transcodeSubs
->
isChecked
()
)
<<
QString
::
number
(
ui
.
transcodeSubs
->
isChecked
()
)
<<
currentData
(
ui
.
vCodecBox
).
toString
()
<<
qs_vcodec
<<
QString
::
number
(
ui
.
vBitrateSpin
->
value
()
)
<<
QString
::
number
(
ui
.
vBitrateSpin
->
value
()
)
<<
ui
.
vScaleBox
->
currentText
()
<<
ui
.
vScaleBox
->
currentText
()
<<
QString
::
number
(
ui
.
vFrameBox
->
value
()
)
<<
QString
::
number
(
ui
.
vFrameBox
->
value
()
)
<<
ui
.
widthBox
->
text
()
<<
ui
.
widthBox
->
text
()
<<
ui
.
heightBox
->
text
()
<<
ui
.
heightBox
->
text
()
<<
currentData
(
ui
.
aCodecBox
).
toString
()
<<
qs_acodec
<<
QString
::
number
(
ui
.
aBitrateSpin
->
value
()
)
<<
QString
::
number
(
ui
.
aBitrateSpin
->
value
()
)
<<
QString
::
number
(
ui
.
aChannelsSpin
->
value
()
)
<<
QString
::
number
(
ui
.
aChannelsSpin
->
value
()
)
<<
ui
.
aSampleBox
->
currentText
()
<<
ui
.
aSampleBox
->
currentText
()
...
...
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