Commit 56d9d1f9 authored by iive's avatar iive

Clarify TODO comment


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17264 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f340a923
...@@ -271,7 +271,9 @@ void ff_xvmc_decode_mb(MpegEncContext *s) ...@@ -271,7 +271,9 @@ void ff_xvmc_decode_mb(MpegEncContext *s)
s->pblocks[i][0] -= 1 << 10; s->pblocks[i][0] -= 1 << 10;
if (!render->idct) { if (!render->idct) {
s->dsp.idct(s->pblocks[i]); s->dsp.idct(s->pblocks[i]);
//!!TODO!clip!!! /*It is unclear if MC hardware requires pixel diff values to be in
range [-255;255]. TODO cliping if such hardware is ever found.
As of now it would only be unnecessery slowdown. */
} }
//copy blocks only if the codec doesn't support pblocks reordering //copy blocks only if the codec doesn't support pblocks reordering
if (s->avctx->xvmc_acceleration == 1) { if (s->avctx->xvmc_acceleration == 1) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment