vpx_temporal_svc_encoder: fix memory leak on success
authorJames Zern <jzern@google.com>
Thu, 22 May 2014 03:02:52 +0000 (20:02 -0700)
committerJames Zern <jzern@google.com>
Thu, 22 May 2014 03:04:06 +0000 (20:04 -0700)
more work would be necessary to avoid leaks in all failure cases

Change-Id: I9c92ae1c34e120b17109bc832b6b2789b909761d

examples/vpx_temporal_svc_encoder.c

index e45b50c..9f32bd8 100644 (file)
@@ -663,5 +663,6 @@ int main(int argc, char **argv) {
   for (i = 0; i < cfg.ts_number_layers; ++i)
     vpx_video_writer_close(outfile[i]);
 
+  vpx_img_free(&raw);
   return EXIT_SUCCESS;
 }