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
89ec4e62
Commit
89ec4e62
authored
Aug 28, 2008
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check for input/output size match here too. I hope that I didn't forget other files.
parent
312bf22c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
0 deletions
+16
-0
modules/video_chroma/grey_yuv.c
modules/video_chroma/grey_yuv.c
+4
-0
modules/video_chroma/i420_ymga.c
modules/video_chroma/i420_ymga.c
+4
-0
modules/video_chroma/i422_i420.c
modules/video_chroma/i422_i420.c
+4
-0
modules/video_chroma/yuy2_i422.c
modules/video_chroma/yuy2_i422.c
+4
-0
No files found.
modules/video_chroma/grey_yuv.c
View file @
89ec4e62
...
...
@@ -72,6 +72,10 @@ static int Activate( vlc_object_t *p_this )
return
-
1
;
}
if
(
p_filter
->
fmt_in
.
video
.
i_width
!=
p_filter
->
fmt_out
.
video
.
i_width
||
p_filter
->
fmt_in
.
video
.
i_height
!=
p_filter
->
fmt_out
.
video
.
i_height
)
return
-
1
;
switch
(
p_filter
->
fmt_in
.
video
.
i_chroma
)
{
case
VLC_FOURCC
(
'Y'
,
'8'
,
'0'
,
'0'
):
...
...
modules/video_chroma/i420_ymga.c
View file @
89ec4e62
...
...
@@ -76,6 +76,10 @@ static int Activate( vlc_object_t *p_this )
return
-
1
;
}
if
(
p_filter
->
fmt_in
.
video
.
i_width
!=
p_filter
->
fmt_out
.
video
.
i_width
||
p_filter
->
fmt_in
.
video
.
i_height
!=
p_filter
->
fmt_out
.
video
.
i_height
)
return
-
1
;
switch
(
p_filter
->
fmt_in
.
video
.
i_chroma
)
{
case
VLC_FOURCC
(
'Y'
,
'V'
,
'1'
,
'2'
):
...
...
modules/video_chroma/i422_i420.c
View file @
89ec4e62
...
...
@@ -74,6 +74,10 @@ static int Activate( vlc_object_t *p_this )
return
-
1
;
}
if
(
p_filter
->
fmt_in
.
video
.
i_width
!=
p_filter
->
fmt_out
.
video
.
i_width
||
p_filter
->
fmt_in
.
video
.
i_height
!=
p_filter
->
fmt_out
.
video
.
i_height
)
return
-
1
;
switch
(
p_filter
->
fmt_in
.
video
.
i_chroma
)
{
case
VLC_FOURCC
(
'I'
,
'4'
,
'2'
,
'2'
):
...
...
modules/video_chroma/yuy2_i422.c
View file @
89ec4e62
...
...
@@ -75,6 +75,10 @@ static int Activate( vlc_object_t *p_this )
return
-
1
;
}
if
(
p_filter
->
fmt_in
.
video
.
i_width
!=
p_filter
->
fmt_out
.
video
.
i_width
||
p_filter
->
fmt_in
.
video
.
i_height
!=
p_filter
->
fmt_out
.
video
.
i_height
)
return
-
1
;
switch
(
p_filter
->
fmt_out
.
video
.
i_chroma
)
{
case
VLC_FOURCC
(
'I'
,
'4'
,
'2'
,
'2'
):
...
...
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