Commit 50eaa857 authored by Guillaume Poirier's avatar Guillaume Poirier

remove useless cast that makes code unreadable

Originally committed as revision 7586 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ac658be5
......@@ -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