Commit 89b2a1ae authored by gpoirier's avatar gpoirier

remove useless cast that makes code unreadable


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7586 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 814c303b
......@@ -4532,8 +4532,8 @@ static int decode_slice_header(H264Context *h){
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);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment