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
17e9d52c
Commit
17e9d52c
authored
Jul 11, 2014
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hevc_ps: remove a write-only variable
parent
44386aaa
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
hevc_ps.c
libavcodec/hevc_ps.c
+1
-2
No files found.
libavcodec/hevc_ps.c
View file @
17e9d52c
...
...
@@ -989,7 +989,7 @@ int ff_hevc_decode_nal_pps(HEVCContext *s)
{
GetBitContext
*
gb
=
&
s
->
HEVClc
.
gb
;
HEVCSPS
*
sps
=
NULL
;
int
pic_area_in_ctbs
,
pic_area_in_min_
cbs
,
pic_area_in_min_
tbs
;
int
pic_area_in_ctbs
,
pic_area_in_min_tbs
;
int
log2_diff_ctb_min_tb_size
;
int
i
,
j
,
x
,
y
,
ctb_addr_rs
,
tile_id
;
int
ret
=
0
;
...
...
@@ -1228,7 +1228,6 @@ int ff_hevc_decode_nal_pps(HEVCContext *s)
* 6.5
*/
pic_area_in_ctbs
=
sps
->
ctb_width
*
sps
->
ctb_height
;
pic_area_in_min_cbs
=
sps
->
min_cb_width
*
sps
->
min_cb_height
;
pic_area_in_min_tbs
=
sps
->
min_tb_width
*
sps
->
min_tb_height
;
pps
->
ctb_addr_rs_to_ts
=
av_malloc_array
(
pic_area_in_ctbs
,
sizeof
(
*
pps
->
ctb_addr_rs_to_ts
));
...
...
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