mirror of https://git.ffmpeg.org/ffmpeg.git
merge
Originally committed as revision 10685 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a417d041f0
commit
5e301bbb70
|
@ -201,9 +201,8 @@ static void dnxhd_decode_dct_block(DNXHDContext *ctx, DCTELEM *block, int n, int
|
|||
if (weigth_matrix[i] != 32) // FIXME 10bit
|
||||
level += 32;
|
||||
level >>= 6;
|
||||
level = (level^sign) - sign;
|
||||
//av_log(NULL, AV_LOG_DEBUG, "i %d, j %d, end level %d\n", i, j, level);
|
||||
block[j] = level;
|
||||
block[j] = (level^sign) - sign;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue