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
4d1ff2a4
Commit
4d1ff2a4
authored
Jul 27, 2014
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hevc: calculate the dbf strength in hls_pcm_sample() only if dbf is enabled
parent
d35b94fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
hevc.c
libavcodec/hevc.c
+5
-3
No files found.
libavcodec/hevc.c
View file @
4d1ff2a4
...
...
@@ -1448,9 +1448,11 @@ static int hls_pcm_sample(HEVCContext *s, int x0, int y0, int log2_cb_size)
const
uint8_t
*
pcm
=
skip_bytes
(
&
lc
->
cc
,
(
length
+
7
)
>>
3
);
int
ret
;
ff_hevc_deblocking_boundary_strengths
(
s
,
x0
,
y0
,
log2_cb_size
,
lc
->
slice_or_tiles_up_boundary
,
lc
->
slice_or_tiles_left_boundary
);
if
(
!
s
->
sh
.
disable_deblocking_filter_flag
)
{
ff_hevc_deblocking_boundary_strengths
(
s
,
x0
,
y0
,
log2_cb_size
,
lc
->
slice_or_tiles_up_boundary
,
lc
->
slice_or_tiles_left_boundary
);
}
ret
=
init_get_bits
(
&
gb
,
pcm
,
length
);
if
(
ret
<
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