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
df949b64
Commit
df949b64
authored
Jun 18, 2014
by
Luca Barbato
Committed by
Vittorio Giovara
Jul 03, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hevc: Use the local context variable when needed
parent
98569d89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
hevc.c
libavcodec/hevc.c
+1
-1
No files found.
libavcodec/hevc.c
View file @
df949b64
...
@@ -1467,7 +1467,7 @@ static int hls_pcm_sample(HEVCContext *s, int x0, int y0, int log2_cb_size)
...
@@ -1467,7 +1467,7 @@ static int hls_pcm_sample(HEVCContext *s, int x0, int y0, int log2_cb_size)
uint8_t
*
dst2
=
&
s
->
frame
->
data
[
2
][(
y0
>>
s
->
sps
->
vshift
[
2
])
*
stride2
+
((
x0
>>
s
->
sps
->
hshift
[
2
])
<<
s
->
sps
->
pixel_shift
)];
uint8_t
*
dst2
=
&
s
->
frame
->
data
[
2
][(
y0
>>
s
->
sps
->
vshift
[
2
])
*
stride2
+
((
x0
>>
s
->
sps
->
hshift
[
2
])
<<
s
->
sps
->
pixel_shift
)];
int
length
=
cb_size
*
cb_size
*
s
->
sps
->
pcm
.
bit_depth
+
((
cb_size
*
cb_size
)
>>
1
)
*
s
->
sps
->
pcm
.
bit_depth_chroma
;
int
length
=
cb_size
*
cb_size
*
s
->
sps
->
pcm
.
bit_depth
+
((
cb_size
*
cb_size
)
>>
1
)
*
s
->
sps
->
pcm
.
bit_depth_chroma
;
const
uint8_t
*
pcm
=
skip_bytes
(
&
s
->
HEVClc
.
cc
,
(
length
+
7
)
>>
3
);
const
uint8_t
*
pcm
=
skip_bytes
(
&
lc
->
cc
,
(
length
+
7
)
>>
3
);
int
ret
;
int
ret
;
ff_hevc_deblocking_boundary_strengths
(
s
,
x0
,
y0
,
log2_cb_size
,
ff_hevc_deblocking_boundary_strengths
(
s
,
x0
,
y0
,
log2_cb_size
,
...
...
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