dds: Simplify postprocessing check

This commit is contained in:
Vittorio Giovara 2016-03-29 21:00:45 +02:00
parent 0253863626
commit 22e49e6ede
1 changed files with 1 additions and 3 deletions

View File

@ -701,9 +701,7 @@ static int dds_decode(AVCodecContext *avctx, void *data,
}
/* Run any post processing here if needed. */
if (avctx->pix_fmt == AV_PIX_FMT_BGRA ||
avctx->pix_fmt == AV_PIX_FMT_RGBA ||
avctx->pix_fmt == AV_PIX_FMT_YA8)
if (ctx->postproc != DDS_NONE)
run_postproc(avctx, frame);
/* Frame is ready to be output. */