Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
c7b7b1da
Commit
c7b7b1da
authored
Sep 24, 2013
by
Dmitry Kovalev
Browse files
Using size_t for memory buffer size.
Change-Id: Ibf1642525731c66c99fa25f95c7b5834ae88c688
parent
682c2723
Changes
3
Hide whitespace changes
Inline
Side-by-side
vp9/decoder/vp9_onyxd.h
View file @
c7b7b1da
...
...
@@ -40,7 +40,7 @@ typedef enum {
void
vp9_initialize_dec
();
int
vp9_receive_compressed_data
(
VP9D_PTR
comp
,
uint64
_t
size
,
const
uint8_t
**
dest
,
size
_t
size
,
const
uint8_t
**
dest
,
int64_t
time_stamp
);
int
vp9_get_raw_frame
(
VP9D_PTR
comp
,
YV12_BUFFER_CONFIG
*
sd
,
...
...
vp9/decoder/vp9_onyxd_if.c
View file @
c7b7b1da
...
...
@@ -277,7 +277,7 @@ static void swap_frame_buffers(VP9D_COMP *pbi) {
}
int
vp9_receive_compressed_data
(
VP9D_PTR
ptr
,
uint64
_t
size
,
const
uint8_t
**
psource
,
size
_t
size
,
const
uint8_t
**
psource
,
int64_t
time_stamp
)
{
VP9D_COMP
*
pbi
=
(
VP9D_COMP
*
)
ptr
;
VP9_COMMON
*
cm
=
&
pbi
->
common
;
...
...
vp9/decoder/vp9_onyxd_int.h
View file @
c7b7b1da
...
...
@@ -25,7 +25,7 @@ typedef struct VP9Decompressor {
VP9D_CONFIG
oxcf
;
const
uint8_t
*
source
;
uint32
_t
source_sz
;
size
_t
source_sz
;
int64_t
last_time_stamp
;
int
ready_for_new_data
;
...
...
Write
Preview
Supports
Markdown
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