Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
c7a5e17e
Commit
c7a5e17e
authored
Jan 19, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: remove calls to vlc_object_find(VLC_OBJECT_VOUT, FIND_CHILD) in extended panel.
parent
56d55988
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
17 deletions
+7
-17
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+7
-17
No files found.
modules/gui/qt4/components/extended_panels.cpp
View file @
c7a5e17e
...
...
@@ -224,17 +224,13 @@ ExtVideo::~ExtVideo()
void
ExtVideo
::
cropChange
()
{
if
(
THEMIM
->
getInput
()
)
p_vout
=
THEMIM
->
getVout
();
if
(
p_vout
)
{
p_vout
=
(
vout_thread_t
*
)
vlc_object_find
(
THEMIM
->
getInput
(),
VLC_OBJECT_VOUT
,
FIND_CHILD
);
if
(
p_vout
)
{
var_SetInteger
(
p_vout
,
"crop-top"
,
ui
.
cropTopPx
->
value
()
);
var_SetInteger
(
p_vout
,
"crop-bottom"
,
ui
.
cropBotPx
->
value
()
);
var_SetInteger
(
p_vout
,
"crop-left"
,
ui
.
cropLeftPx
->
value
()
);
var_SetInteger
(
p_vout
,
"crop-right"
,
ui
.
cropRightPx
->
value
()
);
}
var_SetInteger
(
p_vout
,
"crop-top"
,
ui
.
cropTopPx
->
value
()
);
var_SetInteger
(
p_vout
,
"crop-bottom"
,
ui
.
cropBotPx
->
value
()
);
var_SetInteger
(
p_vout
,
"crop-left"
,
ui
.
cropLeftPx
->
value
()
);
var_SetInteger
(
p_vout
,
"crop-right"
,
ui
.
cropRightPx
->
value
()
);
vlc_object_release
(
p_vout
);
}
}
...
...
@@ -340,13 +336,7 @@ void ExtVideo::ChangeVFiltersString( const char *psz_name, bool b_add )
ui
.
subpictureFilterText
->
setText
(
psz_string
);
/* Try to set on the fly */
if
(
THEMIM
->
getInput
()
)
p_vout
=
(
vout_thread_t
*
)
vlc_object_find
(
THEMIM
->
getInput
(),
VLC_OBJECT_VOUT
,
FIND_CHILD
);
/* If you have stopped the video, p_vout is still at its old value */
else
p_vout
=
NULL
;
p_vout
=
THEMIM
->
getVout
();
if
(
p_vout
)
{
if
(
!
strcmp
(
psz_filter_type
,
"sub-filter"
)
)
...
...
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