Index: source/libvpx/examples/postproc.c |
=================================================================== |
--- source/libvpx/examples/postproc.c (revision 284462) |
+++ source/libvpx/examples/postproc.c (working copy) |
@@ -86,9 +86,9 @@ |
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())); |
- res = vpx_codec_dec_init(&codec, decoder->interface(), NULL, |
+ res = vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL, |
VPX_CODEC_USE_POSTPROC); |
if (res == VPX_CODEC_INCAPABLE) |
die_codec(&codec, "Postproc not supported by this decoder."); |