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:
parent
ac658be5db
commit
50eaa857c0
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user