| Index: source/patched-ffmpeg-mt/libavcodec/imc.c
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavcodec/imc.c (revision 59334)
|
| +++ source/patched-ffmpeg-mt/libavcodec/imc.c (working copy)
|
| @@ -362,7 +362,7 @@
|
| iacc = 0;
|
|
|
| for(j = (stream_format_code & 0x2)?4:0; j < BANDS; j++) {
|
| - cwlen = av_clip((int)((q->flcoeffs4[j] * 0.5) - summa + 0.5), 0, 6);
|
| + cwlen = av_clipf(((q->flcoeffs4[j] * 0.5) - summa + 0.5), 0, 6);
|
|
|
| q->bitsBandT[j] = cwlen;
|
| summer += q->bandWidthT[j] * cwlen;
|
|
|