Mercurial > mplayer.hg
diff libmpcodecs/vf_pullup.c @ 29263:0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
| author | diego |
|---|---|
| date | Wed, 13 May 2009 02:58:57 +0000 |
| parents | 5804605d4341 |
| children | bbb6ebec87a0 |
line wrap: on
line diff
--- a/libmpcodecs/vf_pullup.c Tue May 12 19:25:35 2009 +0000 +++ b/libmpcodecs/vf_pullup.c Wed May 13 02:58:57 2009 +0000 @@ -51,7 +51,7 @@ if (gCpuCaps.has3DNowExt) c->cpu |= PULLUP_CPU_3DNOWEXT; if (gCpuCaps.hasSSE) c->cpu |= PULLUP_CPU_SSE; if (gCpuCaps.hasSSE2) c->cpu |= PULLUP_CPU_SSE2; - + pullup_init_context(c); vf->priv->init = 1; @@ -64,7 +64,7 @@ { struct pullup_context *c = vf->priv->ctx; struct pullup_buffer *b; - + if (mpi->type == MP_IMGTYPE_STATIC) return; if (!vf->priv->init) init_pullup(vf, mpi); @@ -73,7 +73,7 @@ if (!b) return; /* shouldn't happen... */ mpi->priv = b; - + mpi->planes[0] = b->planes[0]; mpi->planes[1] = b->planes[1]; mpi->planes[2] = b->planes[2]; @@ -95,9 +95,9 @@ int ret; int p; int i; - + if (!vf->priv->init) init_pullup(vf, mpi); - + if (mpi->flags & MP_IMGFLAG_DIRECT) { b = mpi->priv; mpi->priv = 0; @@ -221,11 +221,11 @@ dmpi->planes[0] = f->buffer->planes[0]; dmpi->planes[1] = f->buffer->planes[1]; dmpi->planes[2] = f->buffer->planes[2]; - + dmpi->stride[0] = c->stride[0]; dmpi->stride[1] = c->stride[1]; dmpi->stride[2] = c->stride[2]; - + if (mpi->qscale) { dmpi->qscale = vf->priv->qbuf; dmpi->qstride = mpi->qstride;
