whitespace cosmetics: consistently format all comments

Originally committed as revision 17266 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2009-02-14 19:21:00 +00:00
parent d15876d3bd
commit 1f7c1d140a

View File

@ -131,8 +131,7 @@ void ff_xvmc_decode_mb(MpegEncContext *s)
return;
}
//from MPV_decode_mb(),
/* update DC predictors for P macroblocks */
// from MPV_decode_mb(), update DC predictors for P macroblocks
if (!s->mb_intra) {
s->last_dc[0] =
s->last_dc[1] =
@ -272,8 +271,8 @@ void ff_xvmc_decode_mb(MpegEncContext *s)
if (!render->idct) {
s->dsp.idct(s->pblocks[i]);
/* 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. */
* 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
if (s->avctx->xvmc_acceleration == 1) {