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
b2b7ab32
Commit
b2b7ab32
authored
Jan 24, 2010
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prefer cbp over cbp_table.
Originally committed as revision 21418 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
333146dd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
h264.h
libavcodec/h264.h
+4
-4
No files found.
libavcodec/h264.h
View file @
b2b7ab32
...
...
@@ -1004,16 +1004,16 @@ static av_always_inline int fill_caches(H264Context *h, int mb_type, int for_deb
if
(
IS_8x8DCT
(
mb_type
)){
h
->
non_zero_count_cache
[
scan8
[
0
]]
=
h
->
non_zero_count_cache
[
scan8
[
1
]]
=
h
->
non_zero_count_cache
[
scan8
[
2
]]
=
h
->
non_zero_count_cache
[
scan8
[
3
]]
=
h
->
cbp
_table
[
mb_xy
]
&
1
;
h
->
non_zero_count_cache
[
scan8
[
2
]]
=
h
->
non_zero_count_cache
[
scan8
[
3
]]
=
h
->
cbp
&
1
;
h
->
non_zero_count_cache
[
scan8
[
0
+
4
]]
=
h
->
non_zero_count_cache
[
scan8
[
1
+
4
]]
=
h
->
non_zero_count_cache
[
scan8
[
2
+
4
]]
=
h
->
non_zero_count_cache
[
scan8
[
3
+
4
]]
=
h
->
cbp
_table
[
mb_xy
]
&
2
;
h
->
non_zero_count_cache
[
scan8
[
2
+
4
]]
=
h
->
non_zero_count_cache
[
scan8
[
3
+
4
]]
=
h
->
cbp
&
2
;
h
->
non_zero_count_cache
[
scan8
[
0
+
8
]]
=
h
->
non_zero_count_cache
[
scan8
[
1
+
8
]]
=
h
->
non_zero_count_cache
[
scan8
[
2
+
8
]]
=
h
->
non_zero_count_cache
[
scan8
[
3
+
8
]]
=
h
->
cbp
_table
[
mb_xy
]
&
4
;
h
->
non_zero_count_cache
[
scan8
[
2
+
8
]]
=
h
->
non_zero_count_cache
[
scan8
[
3
+
8
]]
=
h
->
cbp
&
4
;
h
->
non_zero_count_cache
[
scan8
[
0
+
12
]]
=
h
->
non_zero_count_cache
[
scan8
[
1
+
12
]]
=
h
->
non_zero_count_cache
[
scan8
[
2
+
12
]]
=
h
->
non_zero_count_cache
[
scan8
[
3
+
12
]]
=
h
->
cbp
_table
[
mb_xy
]
&
8
;
h
->
non_zero_count_cache
[
scan8
[
2
+
12
]]
=
h
->
non_zero_count_cache
[
scan8
[
3
+
12
]]
=
h
->
cbp
&
8
;
}
}
...
...
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