Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
1a01194a
Commit
1a01194a
authored
10 years ago
by
Jim Bankoski
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Download
Patches
Plain Diff
fail allocation of buffers if size_t < frame_size
Change-Id: I25c595e8c197ab0a9955d2373f1a74d42fbd1638
parent
93960c86
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
nextgen
nextgenv2
sandbox/Jingning/experimental
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vpx_scale/generic/yv12config.c
+21
-11
vpx_scale/generic/yv12config.c
with
21 additions
and
11 deletions
vpx_scale/generic/yv12config.c
+
21
−
11
View file @
1a01194a
...
...
@@ -142,34 +142,39 @@ int vp9_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf,
const
int
aligned_width
=
(
width
+
7
)
&
~
7
;
const
int
aligned_height
=
(
height
+
7
)
&
~
7
;
const
int
y_stride
=
((
aligned_width
+
2
*
border
)
+
31
)
&
~
31
;
const
int
yplane_size
=
(
aligned_height
+
2
*
border
)
*
y_stride
;
const
uint64_t
yplane_size
=
(
aligned_height
+
2
*
border
)
*
(
uint64_t
)
y_stride
;
const
int
uv_width
=
aligned_width
>>
ss_x
;
const
int
uv_height
=
aligned_height
>>
ss_y
;
const
int
uv_stride
=
y_stride
>>
ss_x
;
const
int
uv_border_w
=
border
>>
ss_x
;
const
int
uv_border_h
=
border
>>
ss_y
;
const
int
uvplane_size
=
(
uv_height
+
2
*
uv_border_h
)
*
uv_stride
;
const
uint64_t
uvplane_size
=
(
uv_height
+
2
*
uv_border_h
)
*
(
uint64_t
)
uv_stride
;
#if CONFIG_ALPHA
const
int
alpha_width
=
aligned_width
;
const
int
alpha_height
=
aligned_height
;
const
int
alpha_stride
=
y_stride
;
const
int
alpha_border_w
=
border
;
const
int
alpha_border_h
=
border
;
const
int
alpha_plane_size
=
(
alpha_height
+
2
*
alpha_border_h
)
*
alpha_stride
;
const
int
frame_size
=
yplane_size
+
2
*
uvplane_size
+
alpha_plane_size
;
const
u
int
64_t
alpha_plane_size
=
(
alpha_height
+
2
*
alpha_border_h
)
*
(
uint64_t
)
alpha_stride
;
const
u
int
64_t
frame_size
=
yplane_size
+
2
*
uvplane_size
+
alpha_plane_size
;
#else
const
int
frame_size
=
yplane_size
+
2
*
uvplane_size
;
const
u
int
64_t
frame_size
=
yplane_size
+
2
*
uvplane_size
;
#endif
if
(
cb
!=
NULL
)
{
const
int
align_addr_extra_size
=
31
;
const
size
_t
external_frame_size
=
frame_size
+
align_addr_extra_size
;
const
uint64
_t
external_frame_size
=
frame_size
+
align_addr_extra_size
;
assert
(
fb
!=
NULL
);
if
(
external_frame_size
!=
(
size_t
)
external_frame_size
)
return
-
1
;
// Allocation to hold larger frame, or first allocation.
if
(
cb
(
cb_priv
,
external_frame_size
,
fb
)
<
0
)
if
(
cb
(
cb_priv
,
(
size_t
)
external_frame_size
,
fb
)
<
0
)
return
-
1
;
if
(
fb
->
data
==
NULL
||
fb
->
size
<
external_frame_size
)
...
...
@@ -181,10 +186,15 @@ int vp9_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf,
vpx_memset
(
fb
->
data
,
0
,
fb
->
size
);
ybf
->
buffer_alloc
=
(
uint8_t
*
)
yv12_align_addr
(
fb
->
data
,
32
);
}
else
if
(
frame_size
>
ybf
->
buffer_alloc_sz
)
{
}
else
if
(
frame_size
>
(
size_t
)
ybf
->
buffer_alloc_sz
)
{
// Allocation to hold larger frame, or first allocation.
vpx_free
(
ybf
->
buffer_alloc
);
ybf
->
buffer_alloc
=
(
uint8_t
*
)
vpx_memalign
(
32
,
frame_size
);
ybf
->
buffer_alloc
=
NULL
;
if
(
frame_size
!=
(
size_t
)
frame_size
)
return
-
1
;
ybf
->
buffer_alloc
=
(
uint8_t
*
)
vpx_memalign
(
32
,
(
size_t
)
frame_size
);
if
(
!
ybf
->
buffer_alloc
)
return
-
1
;
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets