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
76044a95
Commit
76044a95
authored
Nov 07, 2001
by
Stéphane Borel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
I've committed crap last time.
parent
e60fe69d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
7 deletions
+31
-7
plugins/x11/vout_xvideo.c
plugins/x11/vout_xvideo.c
+31
-7
No files found.
plugins/x11/vout_xvideo.c
View file @
76044a95
...
...
@@ -2,7 +2,7 @@
* vout_xvideo.c: Xvideo video output display method
*****************************************************************************
* Copyright (C) 1998, 1999, 2000, 2001 VideoLAN
* $Id: vout_xvideo.c,v 1.
29 2001/11/06 16:59:06
stef Exp $
* $Id: vout_xvideo.c,v 1.
30 2001/11/07 02:10:14
stef Exp $
*
* Authors: Shane Harper <shanegh@optusnet.com.au>
* Vincent Seguin <seguin@via.ecp.fr>
...
...
@@ -1291,14 +1291,21 @@ static int XVideoGetPort( Display *dpy )
static
void
XVideoDisplay
(
vout_thread_t
*
p_vout
)
{
int
i_dest_width
,
i_dest_height
;
int
i_dest_x
,
i_dest_y
;
if
(
!
p_vout
->
p_sys
->
p_xvimage
)
{
return
;
}
i_dest_height
=
p_vout
->
p_sys
->
i_window_height
>
p_vout
->
p_rendered_pic
->
i_height
?
p_vout
->
p_sys
->
i_window_height
:
p_vout
->
p_rendered_pic
->
i_height
;
i_dest_width
=
p_vout
->
p_sys
->
i_window_width
>
p_vout
->
p_rendered_pic
->
i_width
?
p_vout
->
p_sys
->
i_window_width
:
p_vout
->
p_rendered_pic
->
i_width
;
i_dest_height
=
p_vout
->
p_sys
->
i_window_height
>
p_vout
->
p_rendered_pic
->
i_height
?
p_vout
->
p_sys
->
i_window_height
:
p_vout
->
p_rendered_pic
->
i_height
;
i_dest_width
=
p_vout
->
p_sys
->
i_window_width
>
p_vout
->
p_rendered_pic
->
i_width
?
p_vout
->
p_sys
->
i_window_width
:
p_vout
->
p_rendered_pic
->
i_width
;
if
(
p_vout
->
b_scale
)
{
...
...
@@ -1315,6 +1322,7 @@ static void XVideoDisplay( vout_thread_t *p_vout )
{
i_dest_height
=
i_dest_width
*
3
/
4
;
}
i_ratio
=
1200
;
break
;
case
AR_16_9_PICTURE
:
...
...
@@ -1326,7 +1334,7 @@ static void XVideoDisplay( vout_thread_t *p_vout )
{
i_dest_height
=
i_dest_width
*
9
/
16
;
}
i_ratio
=
1600
;
break
;
case
AR_221_1_PICTURE
:
...
...
@@ -1338,7 +1346,7 @@ static void XVideoDisplay( vout_thread_t *p_vout )
{
i_dest_height
=
i_dest_width
*
100
/
221
;
}
i_ratio
=
1989
;
break
;
case
AR_SQUARE_PICTURE
:
...
...
@@ -1351,8 +1359,24 @@ static void XVideoDisplay( vout_thread_t *p_vout )
{
i_dest_height
=
i_dest_width
*
p_vout
->
p_rendered_pic
->
i_height
/
p_vout
->
p_rendered_pic
->
i_width
;
}
i_ratio
=
900
;
break
;
}
if
(
i_dest_width
>
DisplayWidth
(
p_vout
->
p_sys
->
p_display
,
p_vout
->
p_sys
->
i_screen
)
)
{
i_dest_width
=
DisplayWidth
(
p_vout
->
p_sys
->
p_display
,
p_vout
->
p_sys
->
i_screen
);
i_dest_height
=
900
*
i_dest_width
/
i_ratio
;
}
else
if
(
i_dest_height
>
DisplayHeight
(
p_vout
->
p_sys
->
p_display
,
p_vout
->
p_sys
->
i_screen
)
)
{
i_dest_height
=
DisplayHeight
(
p_vout
->
p_sys
->
p_display
,
p_vout
->
p_sys
->
i_screen
);
i_dest_width
=
i_ratio
*
i_dest_height
/
900
;
}
}
XvShmPutImage
(
p_vout
->
p_sys
->
p_display
,
p_vout
->
p_sys
->
xv_port
,
...
...
@@ -1379,14 +1403,14 @@ static void XVideoDisplay( vout_thread_t *p_vout )
XResizeWindow
(
p_vout
->
p_sys
->
p_display
,
p_vout
->
p_sys
->
window
,
i_dest_width
,
i_dest_height
);
}
#if 0
/* Set picture position */
i_dest_x
=
(
p_vout
->
p_sys
->
i_window_width
-
i_dest_width
)
/
2
;
i_dest_y
=
(
p_vout
->
p_sys
->
i_window_height
-
i_dest_height
)
/
2
;
XMoveWindow
(
p_vout
->
p_sys
->
p_display
,
p_vout
->
p_sys
->
yuv_window
,
i_dest_x
,
i_dest_y
);
#endif
/* Send the order to the X server */
XSync
(
p_vout
->
p_sys
->
p_display
,
False
);
}
...
...
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