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
6016460e
Commit
6016460e
authored
Oct 26, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/video_output/directx/directx.c: support on-the-fly cropping.
parent
8a47c573
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
modules/video_output/directx/directx.c
modules/video_output/directx/directx.c
+13
-0
No files found.
modules/video_output/directx/directx.c
View file @
6016460e
...
...
@@ -539,6 +539,19 @@ static int Manage( vout_thread_t *p_vout )
}
}
/* Check for cropping changes */
if
(
p_vout
->
fmt_out
.
i_x_offset
!=
p_vout
->
fmt_in
.
i_x_offset
||
p_vout
->
fmt_out
.
i_y_offset
!=
p_vout
->
fmt_in
.
i_y_offset
||
p_vout
->
fmt_out
.
i_visible_width
!=
p_vout
->
fmt_in
.
i_visible_width
||
p_vout
->
fmt_out
.
i_visible_height
!=
p_vout
->
fmt_in
.
i_visible_height
)
{
p_vout
->
fmt_out
.
i_x_offset
=
p_vout
->
fmt_in
.
i_x_offset
;
p_vout
->
fmt_out
.
i_y_offset
=
p_vout
->
fmt_in
.
i_y_offset
;
p_vout
->
fmt_out
.
i_visible_width
=
p_vout
->
fmt_in
.
i_visible_width
;
p_vout
->
fmt_out
.
i_visible_height
=
p_vout
->
fmt_in
.
i_visible_height
;
E_
(
DirectXUpdateRects
)(
p_vout
,
VLC_TRUE
);
}
/* We used to call the Win32 PeekMessage function here to read the window
* messages. But since window can stay blocked into this function for a
* long time (for example when you move your window on the screen), I
...
...
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