Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
77367f61
Commit
77367f61
authored
Sep 20, 2015
by
Pedro Arthur
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swscale: fix ticket 4850
parent
f67170e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
swscale.c
libswscale/swscale.c
+4
-4
No files found.
libswscale/swscale.c
View file @
77367f61
...
...
@@ -526,8 +526,8 @@ static int swscale(SwsContext *c, const uint8_t *src[],
#ifdef NEW_FILTER
hasLumHoles
=
lastInLumBuf
!=
firstLumSrcY
-
1
;
if
(
hasLumHoles
)
{
hout_slice
->
plane
[
0
].
sliceY
=
lastInLumBuf
+
1
;
hout_slice
->
plane
[
3
].
sliceY
=
lastInLumBuf
+
1
;
hout_slice
->
plane
[
0
].
sliceY
=
firstLumSrcY
;
hout_slice
->
plane
[
3
].
sliceY
=
firstLumSrcY
;
hout_slice
->
plane
[
0
].
sliceH
=
hout_slice
->
plane
[
3
].
sliceH
=
0
;
}
...
...
@@ -538,8 +538,8 @@ static int swscale(SwsContext *c, const uint8_t *src[],
#ifdef NEW_FILTER
hasChrHoles
=
lastInChrBuf
!=
firstChrSrcY
-
1
;
if
(
hasChrHoles
)
{
hout_slice
->
plane
[
1
].
sliceY
=
lastInChrBuf
+
1
;
hout_slice
->
plane
[
2
].
sliceY
=
lastInChrBuf
+
1
;
hout_slice
->
plane
[
1
].
sliceY
=
firstChrSrcY
;
hout_slice
->
plane
[
2
].
sliceY
=
firstChrSrcY
;
hout_slice
->
plane
[
1
].
sliceH
=
hout_slice
->
plane
[
2
].
sliceH
=
0
;
}
...
...
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