summaryrefslogtreecommitdiffstats
path: root/video/out/vo.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo.c')
-rw-r--r--video/out/vo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 6c0cb44c14..2372ce36b0 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -386,6 +386,7 @@ void vo_queue_image(struct vo *vo, struct mp_image *mpi)
assert(mpi);
if (!vo->config_ok)
return;
+ assert(mp_image_params_equals(vo->params, &mpi->params));
mpi = mp_image_new_ref(mpi);
if (vo->driver->filter_image)
mpi = vo->driver->filter_image(vo, mpi);