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
06c70d45
Commit
06c70d45
authored
Mar 21, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/hevc_ps: Check cropping parameters more correctly
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
665e0c10
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
hevc_ps.c
libavcodec/hevc_ps.c
+2
-1
No files found.
libavcodec/hevc_ps.c
View file @
06c70d45
...
...
@@ -1039,7 +1039,8 @@ int ff_hevc_decode_nal_sps(HEVCContext *s)
(
sps
->
output_window
.
left_offset
+
sps
->
output_window
.
right_offset
);
sps
->
output_height
=
sps
->
height
-
(
sps
->
output_window
.
top_offset
+
sps
->
output_window
.
bottom_offset
);
if
(
sps
->
output_width
<=
0
||
sps
->
output_height
<=
0
)
{
if
(
sps
->
width
<=
sps
->
output_window
.
left_offset
+
(
int64_t
)
sps
->
output_window
.
right_offset
||
sps
->
height
<=
sps
->
output_window
.
top_offset
+
(
int64_t
)
sps
->
output_window
.
bottom_offset
)
{
av_log
(
s
->
avctx
,
AV_LOG_WARNING
,
"Invalid visible frame dimensions: %dx%d.
\n
"
,
sps
->
output_width
,
sps
->
output_height
);
if
(
s
->
avctx
->
err_recognition
&
AV_EF_EXPLODE
)
{
...
...
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