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
65c1e26f
Commit
65c1e26f
authored
Jun 07, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed regression in wall.
parent
eefa50f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/video_filter/wall.c
modules/video_filter/wall.c
+3
-1
No files found.
modules/video_filter/wall.c
View file @
65c1e26f
...
...
@@ -104,7 +104,7 @@ struct video_splitter_sys_t
int
i_col
;
int
i_row
;
int
i_output
;
wall_output_t
pp_output
[
ROW_MAX
][
COL
_MAX
];
/* [x][y] */
wall_output_t
pp_output
[
COL_MAX
][
ROW
_MAX
];
/* [x][y] */
};
static
int
Filter
(
video_splitter_t
*
,
picture_t
*
pp_dst
[],
picture_t
*
);
...
...
@@ -156,6 +156,8 @@ static int Open( vlc_object_t *p_this )
const
int
i_index
=
atoi
(
psz_tmp
);
if
(
i_index
>=
0
&&
i_index
<
COL_MAX
*
ROW_MAX
)
pb_active
[
i_index
]
=
true
;
psz_tmp
=
psz_next
;
}
free
(
psz_state
);
...
...
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