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
55019715
Commit
55019715
authored
Jul 27, 2014
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hevc_filter: drop more redundant checks
The if() around those loops ensures this condition is always false.
parent
65b8b6c4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
hevc_filter.c
libavcodec/hevc_filter.c
+0
-4
No files found.
libavcodec/hevc_filter.c
View file @
55019715
...
...
@@ -623,8 +623,6 @@ void ff_hevc_deblocking_boundary_strengths(HEVCContext *s, int x0, int y0,
(
slice_or_tiles_up_boundary
&
2
)
&&
(
y0
%
(
1
<<
s
->
sps
->
log2_ctb_size
))
==
0
)
bs
=
0
;
if
(
y0
==
0
)
bs
=
0
;
if
(
bs
)
s
->
horizontal_bs
[((
x0
+
i
)
+
y0
*
s
->
bs_width
)
>>
2
]
=
bs
;
}
...
...
@@ -684,8 +682,6 @@ void ff_hevc_deblocking_boundary_strengths(HEVCContext *s, int x0, int y0,
(
slice_or_tiles_left_boundary
&
2
)
&&
(
x0
%
(
1
<<
s
->
sps
->
log2_ctb_size
))
==
0
)
bs
=
0
;
if
(
x0
==
0
)
bs
=
0
;
if
(
bs
)
s
->
vertical_bs
[(
x0
>>
3
)
+
((
y0
+
i
)
>>
2
)
*
s
->
bs_width
]
=
bs
;
}
...
...
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