Skip to content
Snippets Groups Projects
Commit ee77a1a5 authored by James Zern's avatar James Zern
Browse files

vp8cx_set_ref: fix variable assignment

assign vpx_ref_frame_t members explicitly avoiding incompatibility in
visual studio builds

Change-Id: I22df4c5ebb772d65b4d72f22949fbde53543d7ec
parent 2e3ed02c
No related branches found
No related tags found
No related merge requests found
......@@ -162,7 +162,9 @@ int main(int argc, char **argv) {
while (vpx_img_read(&raw, infile)) {
if (frame_count + 1 == update_frame_num) {
vpx_ref_frame_t ref = {VP8_LAST_FRAME, raw};
vpx_ref_frame_t ref;
ref.frame_type = VP8_LAST_FRAME;
ref.img = raw;
if (vpx_codec_control(&codec, VP8_SET_REFERENCE, &ref))
die_codec(&codec, "Failed to set reference frame");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment