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
7f7dc4fb
Commit
7f7dc4fb
authored
Jul 09, 2011
by
Jason Garrett-Glaser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
H.264: fix filter_mb_fast with 4:4:4 + 8x8dct
parent
e35c674d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
h264_loopfilter.c
libavcodec/h264_loopfilter.c
+1
-1
No files found.
libavcodec/h264_loopfilter.c
View file @
7f7dc4fb
...
...
@@ -317,7 +317,7 @@ void ff_h264_filter_mb_fast( H264Context *h, int mb_x, int mb_y, uint8_t *img_y,
}
else
{
LOCAL_ALIGNED_8
(
int16_t
,
bS
,
[
2
],
[
4
][
4
]);
int
edges
;
if
(
IS_8x8DCT
(
mb_type
)
&&
(
h
->
cbp
&
7
)
==
7
)
{
if
(
IS_8x8DCT
(
mb_type
)
&&
(
h
->
cbp
&
7
)
==
7
&&
!
chroma444
)
{
edges
=
4
;
AV_WN64A
(
bS
[
0
][
0
],
0x0002000200020002ULL
);
AV_WN64A
(
bS
[
0
][
2
],
0x0002000200020002ULL
);
...
...
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