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
34c51489
Commit
34c51489
authored
Oct 10, 2008
by
Geoffroy Couprie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WinCE: macro fix in panoramix module
parent
8cd1e751
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/video_filter/panoramix.c
modules/video_filter/panoramix.c
+6
-6
No files found.
modules/video_filter/panoramix.c
View file @
34c51489
...
...
@@ -41,7 +41,7 @@
#ifdef OVERLAP
#include <math.h>
// OS CODE DEPENDENT to get display dimensions
#ifdef
SYS_MINGW
32
#ifdef
WIN
32
#include <windows.h>
#else
#include <X11/Xlib.h>
...
...
@@ -188,7 +188,7 @@ vlc_module_begin();
add_integer_with_range
(
CFG_PREFIX
"bz-whitelevel-red"
,
0
,
0
,
255
,
NULL
,
RGAMMA_WL_TEXT
,
RGAMMA_WL_LONGTEXT
,
true
);
add_integer_with_range
(
CFG_PREFIX
"bz-whitelevel-green"
,
0
,
0
,
255
,
NULL
,
GGAMMA_WL_TEXT
,
GGAMMA_WL_LONGTEXT
,
true
);
add_integer_with_range
(
CFG_PREFIX
"bz-whitelevel-blue"
,
0
,
0
,
255
,
NULL
,
BGAMMA_WL_TEXT
,
BGAMMA_WL_LONGTEXT
,
true
);
#ifndef
SYS_MINGW
32
#ifndef
WIN
32
#define XINERAMA_TEXT N_("Xinerama option")
#define XINERAMA_LONGTEXT N_("Uncheck if you have not used xinerama")
add_bool
(
CFG_PREFIX
"xinerama"
,
1
,
NULL
,
XINERAMA_TEXT
,
XINERAMA_LONGTEXT
,
true
);
...
...
@@ -244,7 +244,7 @@ struct vout_sys_t
uint8_t
LUT2
[
VOUT_MAX_PLANES
][
256
][
500
];
#endif
#endif
#ifndef
SYS_MINGW
32
#ifndef
WIN
32
bool
b_xinerama
;
#endif
#endif
...
...
@@ -358,7 +358,7 @@ case VLC_FOURCC('c','y','u','v'): // packed by 2
p_vout
->
p_sys
->
i_row
=
var_CreateGetInteger
(
p_vout
,
CFG_PREFIX
"rows"
);
// OS dependent code : Autodetect number of displays in wall
#ifdef
SYS_MINGW
32
#ifdef
WIN
32
if
((
p_vout
->
p_sys
->
i_col
<
0
)
||
(
p_vout
->
p_sys
->
i_row
<
0
)
)
{
int
nbMonitors
=
GetSystemMetrics
(
SM_CMONITORS
);
...
...
@@ -411,7 +411,7 @@ case VLC_FOURCC('c','y','u','v'): // packed by 2
p_vout
->
p_sys
->
f_gamma_green
=
var_CreateGetFloat
(
p_vout
,
CFG_PREFIX
"bz-gamma-green"
);
p_vout
->
p_sys
->
f_gamma_blue
=
var_CreateGetFloat
(
p_vout
,
CFG_PREFIX
"bz-gamma-blue"
);
#endif
#ifndef
SYS_MINGW
32
#ifndef
WIN
32
p_vout
->
p_sys
->
b_xinerama
=
var_CreateGetBool
(
p_vout
,
CFG_PREFIX
"xinerama"
);
#endif
#else
...
...
@@ -554,7 +554,7 @@ static int AdjustHeight( vout_thread_t *p_vout )
// OS DEPENDENT CODE to get display dimensions
if
(
b_fullscreen
)
{
#ifdef
SYS_MINGW
32
#ifdef
WIN
32
i_window_width
=
GetSystemMetrics
(
SM_CXSCREEN
);
i_window_height
=
GetSystemMetrics
(
SM_CYSCREEN
);
#else
...
...
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