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
16c01fb4
Commit
16c01fb4
authored
Nov 15, 2014
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hevc: remove an unused function parameter
parent
84b94639
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
hevc.c
libavcodec/hevc.c
+2
-3
No files found.
libavcodec/hevc.c
View file @
16c01fb4
...
@@ -1233,8 +1233,7 @@ static void hls_residual_coding(HEVCContext *s, int x0, int y0,
...
@@ -1233,8 +1233,7 @@ static void hls_residual_coding(HEVCContext *s, int x0, int y0,
static
int
hls_transform_unit
(
HEVCContext
*
s
,
int
x0
,
int
y0
,
static
int
hls_transform_unit
(
HEVCContext
*
s
,
int
x0
,
int
y0
,
int
xBase
,
int
yBase
,
int
cb_xBase
,
int
cb_yBase
,
int
xBase
,
int
yBase
,
int
cb_xBase
,
int
cb_yBase
,
int
log2_cb_size
,
int
log2_trafo_size
,
int
log2_cb_size
,
int
log2_trafo_size
,
int
trafo_depth
,
int
blk_idx
,
int
blk_idx
,
int
cbf_luma
,
int
cbf_cb
,
int
cbf_cr
)
int
cbf_luma
,
int
cbf_cb
,
int
cbf_cr
)
{
{
HEVCLocalContext
*
lc
=
&
s
->
HEVClc
;
HEVCLocalContext
*
lc
=
&
s
->
HEVClc
;
...
@@ -1405,7 +1404,7 @@ do {
...
@@ -1405,7 +1404,7 @@ do {
cbf_luma
=
ff_hevc_cbf_luma_decode
(
s
,
trafo_depth
);
cbf_luma
=
ff_hevc_cbf_luma_decode
(
s
,
trafo_depth
);
ret
=
hls_transform_unit
(
s
,
x0
,
y0
,
xBase
,
yBase
,
cb_xBase
,
cb_yBase
,
ret
=
hls_transform_unit
(
s
,
x0
,
y0
,
xBase
,
yBase
,
cb_xBase
,
cb_yBase
,
log2_cb_size
,
log2_trafo_size
,
trafo_depth
,
log2_cb_size
,
log2_trafo_size
,
blk_idx
,
cbf_luma
,
cbf_cb
,
cbf_cr
);
blk_idx
,
cbf_luma
,
cbf_cb
,
cbf_cr
);
if
(
ret
<
0
)
if
(
ret
<
0
)
return
ret
;
return
ret
;
...
...
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