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
78627e20
Commit
78627e20
authored
Jun 07, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved video wrapper for video splitter.
parent
ea37d498
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
8 deletions
+16
-8
modules/video_filter/wrapper.c
modules/video_filter/wrapper.c
+16
-8
No files found.
modules/video_filter/wrapper.c
View file @
78627e20
...
@@ -279,22 +279,25 @@ static int Init( vout_thread_t *p_vout )
...
@@ -279,22 +279,25 @@ static int Init( vout_thread_t *p_vout )
{
{
video_splitter_t
*
p_splitter
=
p_sys
->
p_splitter
;
video_splitter_t
*
p_splitter
=
p_sys
->
p_splitter
;
/* */
const
int
i_org_align
=
var_CreateGetInteger
(
p_vout
,
"align"
);
const
int
i_org_x
=
var_CreateGetInteger
(
p_vout
,
"video-x"
);
const
int
i_org_y
=
var_CreateGetInteger
(
p_vout
,
"video-y"
);
const
char
*
psz_org_vout
=
var_CreateGetNonEmptyString
(
p_vout
,
"vout"
);
/* */
for
(
int
i
=
0
;
i
<
p_splitter
->
i_output
;
i
++
)
for
(
int
i
=
0
;
i
<
p_splitter
->
i_output
;
i
++
)
{
{
const
video_splitter_output_t
*
p_cfg
=
&
p_splitter
->
p_output
[
i
];
const
video_splitter_output_t
*
p_cfg
=
&
p_splitter
->
p_output
[
i
];
/* */
/* */
var_Create
(
p_vout
,
"align"
,
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
var_SetInteger
(
p_vout
,
"align"
,
p_cfg
->
window
.
i_align
);
var_SetInteger
(
p_vout
,
"align"
,
p_cfg
->
window
.
i_align
);
var_Create
(
p_vout
,
"video-x"
,
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
var_SetInteger
(
p_vout
,
"video-x"
,
i_org_x
+
p_cfg
->
window
.
i_x
);
var_SetInteger
(
p_vout
,
"video-x"
,
p_cfg
->
window
.
i_x
);
var_SetInteger
(
p_vout
,
"video-y"
,
i_org_y
+
p_cfg
->
window
.
i_y
);
var_Create
(
p_vout
,
"video-y"
,
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
var_SetInteger
(
p_vout
,
"video-y"
,
p_cfg
->
window
.
i_y
);
var_Create
(
p_vout
,
"vout"
,
VLC_VAR_STRING
|
VLC_VAR_DOINHERIT
);
if
(
p_cfg
->
psz_module
)
var_SetString
(
p_vout
,
"vout"
,
p_cfg
->
psz_module
?
p_cfg
->
psz_module
:
""
);
var_SetString
(
p_vout
,
"vout"
,
p_cfg
->
psz_module
);
/* */
/* */
video_format_t
fmt
=
p_cfg
->
fmt
;
video_format_t
fmt
=
p_cfg
->
fmt
;
...
@@ -312,6 +315,11 @@ static int Init( vout_thread_t *p_vout )
...
@@ -312,6 +315,11 @@ static int Init( vout_thread_t *p_vout )
vout_filter_SetupChild
(
p_vout
,
p_sys
->
pp_vout
[
i
],
vout_filter_SetupChild
(
p_vout
,
p_sys
->
pp_vout
[
i
],
MouseEvent
,
MouseEvent
,
FullscreenEventUp
,
FullscreenEventDown
,
true
);
FullscreenEventUp
,
FullscreenEventDown
,
true
);
/* Restore settings */
var_SetInteger
(
p_vout
,
"align"
,
i_org_align
);
var_SetInteger
(
p_vout
,
"video-x"
,
i_org_x
);
var_SetInteger
(
p_vout
,
"video-y"
,
i_org_y
);
var_SetString
(
p_vout
,
"vout"
,
psz_org_vout
?
psz_org_vout
:
""
);
}
}
vout_filter_AllocateDirectBuffers
(
p_vout
,
VOUT_MAX_PICTURES
);
vout_filter_AllocateDirectBuffers
(
p_vout
,
VOUT_MAX_PICTURES
);
...
...
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