summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-04-25 19:21:17 +0200
committerwm4 <wm4@nowhere>2014-04-25 19:21:17 +0200
commit40c517cc41e02c6cb695695828dbabdf6203bfb9 (patch)
treed176eabc77a0b3ddd41778a5cee1e2929864b585 /video
parent1c2c09adf75dea75c0471e765b955f5dfb7092b2 (diff)
downloadmpv-40c517cc41e02c6cb695695828dbabdf6203bfb9.tar.bz2
mpv-40c517cc41e02c6cb695695828dbabdf6203bfb9.tar.xz
vf_pp: PP_PICT_TYPE_QP2 is always defined
Diffstat (limited to 'video')
-rw-r--r--video/filter/vf_pp.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/video/filter/vf_pp.c b/video/filter/vf_pp.c
index 23d43eccce..f60b8d8257 100644
--- a/video/filter/vf_pp.c
+++ b/video/filter/vf_pp.c
@@ -101,11 +101,7 @@ static struct mp_image *filter(struct vf_instance *vf, struct mp_image *mpi)
(mpi->w+7)&(~7),mpi->h,
mpi->qscale, mpi->qstride,
vf->priv->ppMode[ vf->priv->pp ], vf->priv->context,
-#ifdef PP_PICT_TYPE_QP2
mpi->pict_type | (mpi->qscale_type ? PP_PICT_TYPE_QP2 : 0));
-#else
- mpi->pict_type);
-#endif
if (dmpi != mpi)
talloc_free(mpi);