Mercurial > libavcodec.hg
changeset 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 |
files | h264.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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); }