Renames interface field in VpxInterface

Renames interface to codec_interface since it is a reserved
word on windows.

Change-Id: I84f2cbf257a4c44f16dc2464127e35ee405c2c3e
This commit is contained in:
Deb Mukherjee
2014-07-15 16:55:12 -07:00
parent f349b071c6
commit f332c6305e
12 changed files with 33 additions and 32 deletions

View File

@@ -108,9 +108,9 @@ int main(int argc, char **argv) {
if (!decoder)
die("Unknown input codec.");
printf("Using %s\n", vpx_codec_iface_name(decoder->interface()));
printf("Using %s\n", vpx_codec_iface_name(decoder->codec_interface()));
if (vpx_codec_dec_init(&codec, decoder->interface(), NULL, 0))
if (vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL, 0))
die_codec(&codec, "Failed to initialize decoder.");
while (vpx_video_reader_read_frame(reader)) {