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
1e263133
Commit
1e263133
authored
Feb 08, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/hevc: remove unused variables
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
20fe316e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
4 deletions
+0
-4
hevc.c
libavcodec/hevc.c
+0
-2
hevc.h
libavcodec/hevc.h
+0
-1
hevc_filter.c
libavcodec/hevc_filter.c
+0
-1
No files found.
libavcodec/hevc.c
View file @
1e263133
...
...
@@ -1883,7 +1883,6 @@ static void hls_decode_neighbour(HEVCContext *s, int x_ctb, int y_ctb,
}
else
if
(
s
->
pps
->
tiles_enabled_flag
)
{
if
(
ctb_addr_ts
&&
s
->
pps
->
tile_id
[
ctb_addr_ts
]
!=
s
->
pps
->
tile_id
[
ctb_addr_ts
-
1
])
{
int
idxX
=
s
->
pps
->
col_idxX
[
x_ctb
>>
s
->
sps
->
log2_ctb_size
];
lc
->
start_of_tiles_x
=
x_ctb
;
lc
->
end_of_tiles_x
=
x_ctb
+
(
s
->
pps
->
column_width
[
idxX
]
<<
s
->
sps
->
log2_ctb_size
);
lc
->
first_qp_group
=
1
;
}
...
...
@@ -2236,7 +2235,6 @@ static int hevc_frame_start(HEVCContext *s)
memset
(
s
->
is_pcm
,
0
,
s
->
sps
->
min_pu_width
*
s
->
sps
->
min_pu_height
);
memset
(
s
->
tab_slice_address
,
-
1
,
pic_size_in_ctb
*
sizeof
(
*
s
->
tab_slice_address
));
lc
->
start_of_tiles_x
=
0
;
s
->
is_decoded
=
0
;
s
->
first_nal_type
=
s
->
nal_unit_type
;
...
...
libavcodec/hevc.h
View file @
1e263133
...
...
@@ -731,7 +731,6 @@ typedef struct HEVCLocalContext {
uint8_t
ctb_up_flag
;
uint8_t
ctb_up_right_flag
;
uint8_t
ctb_up_left_flag
;
int
start_of_tiles_x
;
int
end_of_tiles_x
;
int
end_of_tiles_y
;
/* +7 is for subpixel interpolation, *2 for high bit depths */
...
...
libavcodec/hevc_filter.c
View file @
1e263133
...
...
@@ -82,7 +82,6 @@ static int get_qPy_pred(HEVCContext *s, int xC, int yC,
int
xQgBase
=
xBase
-
(
xBase
&
MinCuQpDeltaSizeMask
);
int
yQgBase
=
yBase
-
(
yBase
&
MinCuQpDeltaSizeMask
);
int
min_cb_width
=
s
->
sps
->
min_cb_width
;
int
min_cb_height
=
s
->
sps
->
min_cb_height
;
int
x_cb
=
xQgBase
>>
s
->
sps
->
log2_min_cb_size
;
int
y_cb
=
yQgBase
>>
s
->
sps
->
log2_min_cb_size
;
int
availableA
=
(
xBase
&
ctb_size_mask
)
&&
...
...
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