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
1e817045
Commit
1e817045
authored
Oct 09, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vout: remove unused x/y settings in window configuration
parent
0ad998bd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
9 deletions
+1
-9
modules/video_output/gl.c
modules/video_output/gl.c
+0
-2
modules/video_output/kva.c
modules/video_output/kva.c
+0
-2
modules/video_output/msw/events.c
modules/video_output/msw/events.c
+0
-2
modules/video_output/xcb/events.c
modules/video_output/xcb/events.c
+0
-2
modules/video_splitter/wall.c
modules/video_splitter/wall.c
+1
-1
No files found.
modules/video_output/gl.c
View file @
1e817045
...
...
@@ -96,8 +96,6 @@ static int Control (vout_display_t *, int, va_list);
static
vout_window_t
*
MakeWindow
(
vout_display_t
*
vd
)
{
vout_window_cfg_t
cfg
=
{
.
x
=
var_InheritInteger
(
vd
,
"video-x"
),
.
y
=
var_InheritInteger
(
vd
,
"video-y"
),
.
width
=
vd
->
cfg
->
display
.
width
,
.
height
=
vd
->
cfg
->
display
.
height
,
};
...
...
modules/video_output/kva.c
View file @
1e817045
...
...
@@ -180,8 +180,6 @@ static void PMThread( void *arg )
wnd_cfg
.
is_standalone
=
false
;
wnd_cfg
.
type
=
VOUT_WINDOW_TYPE_HWND
;
wnd_cfg
.
x
=
var_InheritInteger
(
vd
,
"video-x"
);
wnd_cfg
.
y
=
var_InheritInteger
(
vd
,
"video-y"
);
wnd_cfg
.
width
=
vd
->
cfg
->
display
.
width
;
wnd_cfg
.
height
=
vd
->
cfg
->
display
.
height
;
...
...
modules/video_output/msw/events.c
View file @
1e817045
...
...
@@ -687,8 +687,6 @@ static int Win32VoutCreateWindow( event_thread_t *p_event )
#endif
vout_window_cfg_t
wnd_cfg
=
{
.
type
=
VOUT_WINDOW_TYPE_HWND
,
.
x
=
p_event
->
x
,
.
y
=
p_event
->
y
,
.
width
=
p_event
->
width
,
.
height
=
p_event
->
height
,
};
...
...
modules/video_output/xcb/events.c
View file @
1e817045
...
...
@@ -133,8 +133,6 @@ vout_window_t *XCB_parent_Create (vout_display_t *vd,
{
vout_window_cfg_t
cfg
=
{
.
type
=
VOUT_WINDOW_TYPE_XID
,
.
x
=
var_InheritInteger
(
vd
,
"video-x"
),
.
y
=
var_InheritInteger
(
vd
,
"video-y"
),
.
width
=
vd
->
cfg
->
display
.
width
,
.
height
=
vd
->
cfg
->
display
.
height
,
};
...
...
modules/video_splitter/wall.c
View file @
1e817045
...
...
@@ -361,7 +361,7 @@ static int Open( vlc_object_t *p_this )
p_cfg
->
fmt
.
i_height
=
p_output
->
i_height
;
p_cfg
->
fmt
.
i_sar_num
=
(
int64_t
)
i_aspect
*
i_target_height
;
p_cfg
->
fmt
.
i_sar_den
=
VOUT_ASPECT_FACTOR
*
i_target_width
;
p_cfg
->
window
.
i_x
=
p_output
->
i_left
;
/* FIXME relative to video-x/y (TODO in wrapper.c) ? */
p_cfg
->
window
.
i_x
=
p_output
->
i_left
;
p_cfg
->
window
.
i_y
=
p_output
->
i_top
;
p_cfg
->
window
.
i_align
=
p_output
->
i_align
;
p_cfg
->
psz_module
=
NULL
;
...
...
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