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
Guillaume Martres
aom-rav1e
Commits
f8b0f528
Commit
f8b0f528
authored
Jun 25, 2014
by
James Zern
Committed by
Gerrit Code Review
Jun 25, 2014
Browse files
Merge "decode_test_driver: fix type size warning"
parents
e319e4bf
aff720f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/decode_test_driver.cc
View file @
f8b0f528
...
...
@@ -19,7 +19,8 @@ const char kVP8Name[] = "WebM Project VP8";
vpx_codec_err_t
Decoder
::
PeekStream
(
const
uint8_t
*
cxdata
,
size_t
size
,
vpx_codec_stream_info_t
*
stream_info
)
{
return
vpx_codec_peek_stream_info
(
CodecInterface
(),
cxdata
,
size
,
return
vpx_codec_peek_stream_info
(
CodecInterface
(),
cxdata
,
static_cast
<
unsigned
int
>
(
size
),
stream_info
);
}
...
...
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