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
1fc3d8ee
Commit
1fc3d8ee
authored
Sep 19, 2018
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/vc1_loopfilter: Fix colums typos
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
1a7a17fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vc1_loopfilter.c
libavcodec/vc1_loopfilter.c
+3
-3
No files found.
libavcodec/vc1_loopfilter.c
View file @
1fc3d8ee
...
...
@@ -284,7 +284,7 @@ void ff_vc1_i_loop_filter(VC1Context *v)
* bottom edge of this MB, before moving over and running the H loop
* filter on the left and internal vertical borders. Therefore, the loop
* filter trails by one row and one column relative to the overlap filter
* and two rows and two colums relative to the decoding loop. */
* and two rows and two colum
n
s relative to the decoding loop. */
if
(
!
s
->
first_slice_line
)
{
dest
=
s
->
dest
[
0
]
-
16
*
s
->
linesize
-
16
;
flags
=
s
->
mb_y
==
s
->
start_mb_y
+
1
?
TOP_EDGE
:
0
;
...
...
@@ -485,7 +485,7 @@ void ff_vc1_p_loop_filter(VC1Context *v)
* we wait for the next loop filter iteration to do H loop filter on all
* applicable vertical borders of this MB. Therefore, the loop filter
* trails by one row and one column relative to the overlap filter and two
* rows and two colums relative to the decoding loop. */
* rows and two colum
n
s relative to the decoding loop. */
if
(
s
->
mb_y
>=
s
->
start_mb_y
+
2
)
{
if
(
s
->
mb_x
)
{
dest
=
s
->
dest
[
0
]
-
32
*
s
->
linesize
-
16
;
...
...
@@ -923,7 +923,7 @@ void ff_vc1_p_intfr_loop_filter(VC1Context *v)
* we wait for the loop filter iteration on the next row and next column to
* do H loop filter on all applicable vertical borders of this MB.
* Therefore, the loop filter trails by two rows and one column relative to
* the overlap filter and two rows and two colums relative to the decoding
* the overlap filter and two rows and two colum
n
s relative to the decoding
* loop. */
if
(
s
->
mb_x
)
{
if
(
s
->
mb_y
>=
s
->
start_mb_y
+
1
)
{
...
...
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