]> granicus.if.org Git - libvpx/commitdiff
set_maps: add exit to avoid uninitialized variable warning
authorJim Bankoski <jimbankoski@google.com>
Tue, 19 Aug 2014 21:56:09 +0000 (14:56 -0700)
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>
Fri, 22 Aug 2014 00:29:01 +0000 (17:29 -0700)
Change-Id: I08e42adeab9f9fa0337173ba0923f3bc0dd36806

examples/set_maps.c

index ff60d515c43b95310fef3eddc97ff6772fb9bcf1..2ee5bca50a5717b7de4c8be5e70564a1fd8a8fee 100644 (file)
@@ -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 @@ int main(int argc, char **argv) {
   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);