summaryrefslogtreecommitdiff
path: root/examples/postproc.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/postproc.c')
-rw-r--r--examples/postproc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/postproc.c b/examples/postproc.c
index 15713b946..be999b429 100644
--- a/examples/postproc.c
+++ b/examples/postproc.c
@@ -86,9 +86,9 @@ int main(int argc, char **argv) {
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.");
+ die("Postproc not supported by this decoder.");
- if (res) die_codec(&codec, "Failed to initialize decoder.");
+ if (res) die("Failed to initialize decoder.");
while (vpx_video_reader_read_frame(reader)) {
vpx_codec_iter_t iter = NULL;