shithub: libvpx

Download patch

ref: 7940f141eff953a20aadd1f2a4eaa2ee5872ad32
parent: 303c17ea299200093def164da74f6d4759506c75
author: James Zern <jzern@google.com>
date: Tue Feb 4 16:11:40 EST 2014

vp8_scalable_patterns: silence a few warnings

Change-Id: Ibc5db33b57d9ae390202b431c289ab5934fe19b2

--- a/vp8_scalable_patterns.c
+++ b/vp8_scalable_patterns.c
@@ -612,7 +612,7 @@
         die("Failed to open %s for reading", argv[1]);
 
     /* Open an output file for each stream */
-    for (i=0; i<cfg.ts_number_layers; i++)
+    for (i=0; i<(int)cfg.ts_number_layers; i++)
     {
         char file_name[512];
         sprintf (file_name, "%s_%d.ivf", argv[2], i);
@@ -661,7 +661,7 @@
             switch (pkt->kind) {
             case VPX_CODEC_CX_FRAME_PKT:
                 for (i=cfg.ts_layer_id[frame_cnt % cfg.ts_periodicity];
-                                              i<cfg.ts_number_layers; i++)
+                                              i<(int)cfg.ts_number_layers; i++)
                 {
                     write_ivf_frame_header(outfile[i], pkt);
                     (void) fwrite(pkt->data.frame.buf, 1, pkt->data.frame.sz,
@@ -683,7 +683,7 @@
             die_codec (&codec, "Failed to destroy codec");
 
     /* Try to rewrite the output file headers with the actual frame count */
-    for (i=0; i<cfg.ts_number_layers; i++)
+    for (i=0; i<(int)cfg.ts_number_layers; i++)
     {
         if (!fseek(outfile[i], 0, SEEK_SET))
             write_ivf_file_header (outfile[i], &cfg, frames_in_layer[i]);