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
0d1d01cf
Commit
0d1d01cf
authored
Jan 14, 2011
by
Jason Garrett-Glaser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reindent after r26337.
Originally committed as revision 26338 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5657d140
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
h264.c
libavcodec/h264.c
+11
-11
No files found.
libavcodec/h264.c
View file @
0d1d01cf
...
...
@@ -1204,17 +1204,17 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
}
else
{
h
->
hpc
.
pred16x16
[
h
->
intra16x16_pred_mode
](
dest_y
,
linesize
);
if
(
h
->
non_zero_count_cache
[
scan8
[
LUMA_DC_BLOCK_INDEX
]
]){
if
(
is_h264
){
if
(
!
transform_bypass
)
h
->
h264dsp
.
h264_luma_dc_dequant_idct
(
h
->
mb
,
h
->
mb_luma_dc
,
h
->
dequant4_coeff
[
0
][
s
->
qscale
][
0
]);
else
{
static
const
uint8_t
dc_mapping
[
16
]
=
{
0
*
16
,
1
*
16
,
4
*
16
,
5
*
16
,
2
*
16
,
3
*
16
,
6
*
16
,
7
*
16
,
8
*
16
,
9
*
16
,
12
*
16
,
13
*
16
,
10
*
16
,
11
*
16
,
14
*
16
,
15
*
16
};
for
(
i
=
0
;
i
<
16
;
i
++
)
h
->
mb
[
dc_mapping
[
i
]]
=
h
->
mb_luma_dc
[
i
];
}
}
else
ff_svq3_luma_dc_dequant_idct_c
(
h
->
mb
,
h
->
mb_luma_dc
,
s
->
qscale
);
if
(
is_h264
){
if
(
!
transform_bypass
)
h
->
h264dsp
.
h264_luma_dc_dequant_idct
(
h
->
mb
,
h
->
mb_luma_dc
,
h
->
dequant4_coeff
[
0
][
s
->
qscale
][
0
]);
else
{
static
const
uint8_t
dc_mapping
[
16
]
=
{
0
*
16
,
1
*
16
,
4
*
16
,
5
*
16
,
2
*
16
,
3
*
16
,
6
*
16
,
7
*
16
,
8
*
16
,
9
*
16
,
12
*
16
,
13
*
16
,
10
*
16
,
11
*
16
,
14
*
16
,
15
*
16
};
for
(
i
=
0
;
i
<
16
;
i
++
)
h
->
mb
[
dc_mapping
[
i
]]
=
h
->
mb_luma_dc
[
i
];
}
}
else
ff_svq3_luma_dc_dequant_idct_c
(
h
->
mb
,
h
->
mb_luma_dc
,
s
->
qscale
);
}
}
if
(
h
->
deblocking_filter
)
...
...
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