X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2Flibvpx%2Fsource%2Flibvpx%2Fexamples%2Fdecode_with_drops.c;h=a20fdac0921d78df0f0c8570c155febb4fb2370b;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=af1aa636b4e4ed2b8cc2dc9e9f412e86db1cf380;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/libvpx/source/libvpx/examples/decode_with_drops.c b/src/third_party/libvpx/source/libvpx/examples/decode_with_drops.c index af1aa63..a20fdac 100644 --- a/src/third_party/libvpx/source/libvpx/examples/decode_with_drops.c +++ b/src/third_party/libvpx/source/libvpx/examples/decode_with_drops.c @@ -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)) {