From 3a50bbf563ce627dcbfcb23c0f33df2a5a4e00f0 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 4 Nov 2014 22:43:34 +0100 Subject: video: refuse to allocate image data for hwaccel formats Makes no sense. --- video/mp_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/mp_image.c b/video/mp_image.c index ea84bb4dbd..860a47ea6f 100644 --- a/video/mp_image.c +++ b/video/mp_image.c @@ -122,7 +122,7 @@ static bool mp_image_alloc_planes(struct mp_image *mpi) { assert(!mpi->planes[0]); - if (!mp_image_params_valid(&mpi->params)) + if (!mp_image_params_valid(&mpi->params) || mpi->fmt.flags & MP_IMGFLAG_HWACCEL) return false; // Note: for non-mod-2 4:2:0 YUV frames, we have to allocate an additional -- cgit v1.2.3