Skip to content
GitLab
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
708e08b7
Commit
708e08b7
authored
Aug 03, 2017
by
Zoe Liu
Browse files
Add a cast to avoid a Visual Studio build warning
Change-Id: I82fe5145b83c690bff50e4104adcf22aeb973903
parent
33ef8832
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/coding_path_sync.cc
View file @
708e08b7
...
...
@@ -111,8 +111,8 @@ struct Decoder {
~
Decoder
()
{
aom_codec_destroy
(
&
dec_
);
}
std
::
vector
<
int16_t
>
decode
(
const
aom_codec_cx_pkt_t
*
pkt
)
{
aom_codec_decode
(
&
dec_
,
(
uint8_t
*
)
pkt
->
data
.
frame
.
buf
,
pkt
->
data
.
frame
.
sz
,
NULL
,
0
);
aom_codec_decode
(
&
dec_
,
(
uint8_t
*
)
pkt
->
data
.
frame
.
buf
,
(
unsigned
int
)
pkt
->
data
.
frame
.
sz
,
NULL
,
0
);
aom_codec_iter_t
iter
=
NULL
;
return
serialize
(
aom_codec_get_frame
(
&
dec_
,
&
iter
));
...
...
Write
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!
Cancel
Please
register
or
sign in
to comment