Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
83ea9ab5
Commit
83ea9ab5
authored
Oct 15, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmal: do not pretend to support fullscreen toggle
parent
d9bef016
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
modules/hw/mmal/vout.c
modules/hw/mmal/vout.c
+1
-7
No files found.
modules/hw/mmal/vout.c
View file @
83ea9ab5
...
@@ -606,13 +606,6 @@ static int vd_control(vout_display_t *vd, int query, va_list args)
...
@@ -606,13 +606,6 @@ static int vd_control(vout_display_t *vd, int query, va_list args)
ret
=
VLC_SUCCESS
;
ret
=
VLC_SUCCESS
;
break
;
break
;
case
VOUT_DISPLAY_CHANGE_FULLSCREEN
:
tmp_cfg
=
va_arg
(
args
,
const
vout_display_cfg_t
*
);
vout_display_SendEventDisplaySize
(
vd
,
sys
->
display_width
,
sys
->
display_height
);
ret
=
VLC_SUCCESS
;
break
;
case
VOUT_DISPLAY_CHANGE_DISPLAY_SIZE
:
case
VOUT_DISPLAY_CHANGE_DISPLAY_SIZE
:
tmp_cfg
=
va_arg
(
args
,
const
vout_display_cfg_t
*
);
tmp_cfg
=
va_arg
(
args
,
const
vout_display_cfg_t
*
);
if
(
tmp_cfg
->
display
.
width
==
sys
->
display_width
&&
if
(
tmp_cfg
->
display
.
width
==
sys
->
display_width
&&
...
@@ -632,6 +625,7 @@ static int vd_control(vout_display_t *vd, int query, va_list args)
...
@@ -632,6 +625,7 @@ static int vd_control(vout_display_t *vd, int query, va_list args)
ret
=
VLC_SUCCESS
;
ret
=
VLC_SUCCESS
;
break
;
break
;
case
VOUT_DISPLAY_CHANGE_FULLSCREEN
:
case
VOUT_DISPLAY_CHANGE_ZOOM
:
case
VOUT_DISPLAY_CHANGE_ZOOM
:
case
VOUT_DISPLAY_RESET_PICTURES
:
case
VOUT_DISPLAY_RESET_PICTURES
:
msg_Warn
(
vd
,
"Unsupported control query %d"
,
query
);
msg_Warn
(
vd
,
"Unsupported control query %d"
,
query
);
...
...
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