diff h264.c @ 4363:9b7662fa4905 libavcodec

remove useless cast that makes code unreadable
author gpoirier
date Fri, 19 Jan 2007 12:41:56 +0000
parents 0271b214458b
children 05e932ddaaa9
line wrap: on
line diff
--- a/h264.c	Fri Jan 19 09:37:04 2007 +0000
+++ b/h264.c	Fri Jan 19 12:41:56 2007 +0000
@@ -4532,8 +4532,8 @@
         return -1;
     }
 
-    if(h->dequant_coeff_pps != (int)pps_id){
-        h->dequant_coeff_pps = (int)pps_id;
+    if(h->dequant_coeff_pps != pps_id){
+        h->dequant_coeff_pps = pps_id;
         init_dequant_tables(h);
     }