# HG changeset patch # User gpoirier # Date 1169210516 0 # Node ID 9b7662fa49058a8e89de9b6bb55aaf803bcca158 # Parent 0271b214458b83d946806a654fdfa600e0d6f817 remove useless cast that makes code unreadable diff -r 0271b214458b -r 9b7662fa4905 h264.c --- 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); }