]> granicus.if.org Git - libvpx/commitdiff
vp9 asserts: fix compile warning
authorJames Zern <jzern@google.com>
Sat, 6 Dec 2014 00:20:42 +0000 (16:20 -0800)
committerJames Zern <jzern@google.com>
Sat, 6 Dec 2014 00:20:42 +0000 (16:20 -0800)
string literal to int within an assert

Change-Id: I76a173f96b9add5bf27c3f5ad5d72c6f30e51629

vp9/encoder/vp9_encodeframe.c
vp9/encoder/vp9_mcomp.c

index db182350d3853398d2d5a8c7ea04043c3ddf042a..5e6e77dc908db20febcce86d6365a104608562ee 100644 (file)
@@ -1164,7 +1164,7 @@ static void encode_sb(VP9_COMP *cpi, ThreadData *td,
       }
       break;
     default:
-      assert("Invalid partition type.");
+      assert(0 && "Invalid partition type.");
       break;
   }
 
@@ -1491,7 +1491,7 @@ static void encode_sb_rt(VP9_COMP *cpi, ThreadData *td,
                    output_enabled, subsize, pc_tree->split[3]);
       break;
     default:
-      assert("Invalid partition type.");
+      assert(0 && "Invalid partition type.");
       break;
   }
 
@@ -3156,7 +3156,7 @@ static void nonrd_select_partition(VP9_COMP *cpi,
         }
         break;
       default:
-        assert("Invalid partition type.");
+        assert(0 && "Invalid partition type.");
         break;
     }
   }
@@ -3291,7 +3291,7 @@ static void nonrd_use_partition(VP9_COMP *cpi,
       }
       break;
     default:
-      assert("Invalid partition type.");
+      assert(0 && "Invalid partition type.");
       break;
   }
 
index 7f4d0c7af66d3f6262e7f871f3521b9e23678cb1..a428f1a2d3228836accb9b811725ccaeba4dcc63 100644 (file)
@@ -2142,7 +2142,7 @@ int vp9_full_pixel_search(VP9_COMP *cpi, MACROBLOCK *x,
                                    1, cost_list, fn_ptr, ref_mv, tmp_mv);
       break;
     default:
-      assert(!"Invalid search method.");
+      assert(0 && "Invalid search method.");
   }
 
   if (method != NSTEP && rd && var < var_max)