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
14313b20
Commit
14313b20
authored
Aug 30, 2009
by
Kaarlo Raiha
Committed by
Jean-Baptiste Kempf
Aug 31, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add caching emits for dvb, dshow, screen and dvdread
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
c4cb6db2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+7
-1
No files found.
modules/gui/qt4/components/open_panels.cpp
View file @
14313b20
...
...
@@ -417,7 +417,10 @@ void DiscOpenPanel::updateMRL()
else
mrl
=
"dvdsimple://"
;
mrl
+=
ui
.
deviceCombo
->
currentText
();
emit
methodChanged
(
"dvdnav-caching"
);
if
(
!
ui
.
dvdsimple
->
isChecked
()
)
emit
methodChanged
(
"dvdnav-caching"
);
else
emit
methodChanged
(
"dvdread-caching"
);
if
(
ui
.
titleSpin
->
value
()
>
0
)
{
mrl
+=
QString
(
"@%1"
).
arg
(
ui
.
titleSpin
->
value
()
);
...
...
@@ -1139,6 +1142,7 @@ void CaptureOpenPanel::updateMRL()
mrl
+=
" :dvb-bandwidth="
+
QString
::
number
(
bdaBandBox
->
itemData
(
bdaBandBox
->
currentIndex
()
).
toInt
()
);
emit
methodChanged
(
"dvb-caching"
);
break
;
case
DSHOW_DEVICE
:
fileList
<<
"dshow://"
;
...
...
@@ -1148,6 +1152,7 @@ void CaptureOpenPanel::updateMRL()
colon_escape
(
QString
(
"%1"
).
arg
(
adevDshowW
->
getValue
()
)
);
if
(
dshowVSizeLine
->
isModified
()
)
mrl
+=
" :dshow-size="
+
dshowVSizeLine
->
text
();
emit
methodChanged
(
"dshow-caching"
);
break
;
#else
case
V4L_DEVICE
:
...
...
@@ -1208,6 +1213,7 @@ void CaptureOpenPanel::updateMRL()
case
SCREEN_DEVICE
:
fileList
<<
"screen://"
;
mrl
=
" :screen-fps="
+
QString
::
number
(
screenFPS
->
value
()
);
emit
methodChanged
(
"screen-caching"
);
updateButtons
();
break
;
}
...
...
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