1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

remove useless cast that makes code unreadable

Originally committed as revision 7586 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Guillaume Poirier 2007-01-19 12:41:56 +00:00
parent ac658be5db
commit 50eaa857c0

View File

@ -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);
}