shithub: libvpx

Download patch

ref: 812506b80c4dfe6600038933a47ccef6ec3faa94
parent: 339391a8d4f6ef6c929323b54822acb9edda724e
author: Jim Bankoski <jimbankoski@google.com>
date: Tue Aug 19 10:56:09 EDT 2014

set_maps: add exit to avoid uninitialized variable warning

Change-Id: I08e42adeab9f9fa0337173ba0923f3bc0dd36806

--- a/examples/set_maps.c
+++ b/examples/set_maps.c
@@ -42,6 +42,7 @@
 // Use the `simple_decoder` example to decode this sample, and observe
 // the change in the image at frames 22, 33, and 44.
 
+#include <assert.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -177,9 +178,10 @@
   memset(&info, 0, sizeof(info));
 
   encoder = get_vpx_encoder_by_name(argv[1]);
-  if (!encoder)
+  if (encoder == NULL) {
     die("Unsupported codec.");
-
+  }
+  assert(encoder != NULL);
   info.codec_fourcc = encoder->fourcc;
   info.frame_width = strtol(argv[2], NULL, 0);
   info.frame_height = strtol(argv[3], NULL, 0);