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
39b89024
Commit
39b89024
authored
Feb 10, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use input_GetVout
parent
ee73bdea
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
7 deletions
+4
-7
modules/control/rc.c
modules/control/rc.c
+1
-3
modules/gui/ncurses.c
modules/gui/ncurses.c
+1
-3
modules/misc/lua/libs/video.c
modules/misc/lua/libs/video.c
+2
-1
No files found.
modules/control/rc.c
View file @
39b89024
...
...
@@ -743,9 +743,7 @@ static void Run( intf_thread_t *p_intf )
case
'F'
:
if
(
p_input
)
{
vout_thread_t
*
p_vout
;
p_vout
=
input_GetVout
(
p_input
);
vout_thread_t
*
p_vout
=
input_GetVout
(
p_input
);
if
(
p_vout
)
{
vlc_value_t
val
;
...
...
modules/gui/ncurses.c
View file @
39b89024
...
...
@@ -1117,9 +1117,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
{
if
(
p_intf
->
p_sys
->
p_input
)
{
vout_thread_t
*
p_vout
;
p_vout
=
vlc_object_find
(
p_intf
->
p_sys
->
p_input
,
VLC_OBJECT_VOUT
,
FIND_CHILD
);
vout_thread_t
*
p_vout
=
inputGetVout
(
p_intf
->
p_sys
->
p_input
);
if
(
p_vout
)
{
var_ToggleBool
(
p_vout
,
"fullscreen"
);
...
...
modules/misc/lua/libs/video.c
View file @
39b89024
...
...
@@ -53,8 +53,9 @@ static int vlclua_fullscreen( lua_State *L )
input_thread_t
*
p_input
=
vlclua_get_input_internal
(
L
);
if
(
!
p_input
)
return
vlclua_error
(
L
);
p_vout
=
vlc_object_find
(
p_input
,
VLC_OBJECT_VOUT
,
FIND_CHILD
);
p_vout
=
input_GetVout
(
p_input
);
if
(
!
p_vout
)
return
vlclua_error
(
L
);
#warning ^^ How about releasing the input?
i_ret
=
vlclua_var_toggle_or_set
(
L
,
p_vout
,
"fullscreen"
);
vlc_object_release
(
p_vout
);
...
...
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