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
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue