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
fa2a49e0
Commit
fa2a49e0
authored
Oct 12, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Linux FB: remove stub controls
parent
6a41302d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
14 deletions
+2
-14
modules/video_output/fb.c
modules/video_output/fb.c
+2
-14
No files found.
modules/video_output/fb.c
View file @
fa2a49e0
...
@@ -395,20 +395,8 @@ static void Display(vout_display_t *vd, picture_t *picture, subpicture_t *subpic
...
@@ -395,20 +395,8 @@ static void Display(vout_display_t *vd, picture_t *picture, subpicture_t *subpic
}
}
static
int
Control
(
vout_display_t
*
vd
,
int
query
,
va_list
args
)
static
int
Control
(
vout_display_t
*
vd
,
int
query
,
va_list
args
)
{
{
vout_display_sys_t
*
sys
=
vd
->
sys
;
(
void
)
vd
;
(
void
)
query
;
(
void
)
args
;
switch
(
query
)
{
case
VOUT_DISPLAY_CHANGE_DISPLAY_SIZE
:
{
const
vout_display_cfg_t
*
cfg
=
va_arg
(
args
,
const
vout_display_cfg_t
*
);
if
(
cfg
->
display
.
width
!=
sys
->
width
||
cfg
->
display
.
height
!=
sys
->
height
)
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
return
VLC_SUCCESS
;
}
default:
msg_Err
(
vd
,
"Unsupported query in vout display fb"
);
return
VLC_EGENERIC
;
}
}
}
/* following functions are local */
/* following functions are local */
...
...
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