Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
9ce4d537
Commit
9ce4d537
authored
Aug 13, 2014
by
James Zern
Committed by
Gerrit Code Review
Aug 13, 2014
Browse files
Merge "decode_api_test: fix type conversion warning"
parents
b26668a1
caffcb8b
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/decode_api_test.cc
View file @
9ce4d537
...
...
@@ -112,9 +112,9 @@ TEST(DecodeAPI, Vp9InvalidDecode) {
vpx_codec_ctx_t
dec
;
EXPECT_EQ
(
VPX_CODEC_OK
,
vpx_codec_dec_init
(
&
dec
,
codec
,
NULL
,
0
));
const
uint32_t
frame_size
=
static_cast
<
uint32_t
>
(
video
.
frame_size
());
EXPECT_EQ
(
VPX_CODEC_MEM_ERROR
,
vpx_codec_decode
(
&
dec
,
video
.
cxdata
(),
video
.
frame_size
(),
NULL
,
0
));
vpx_codec_decode
(
&
dec
,
video
.
cxdata
(),
frame_size
,
NULL
,
0
));
vpx_codec_iter_t
iter
=
NULL
;
EXPECT_EQ
(
NULL
,
vpx_codec_get_frame
(
&
dec
,
&
iter
));
...
...
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