From a28e2a7432f68e4a5db96cce8cbaa859327c4527 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 17 Jun 2014 23:30:16 +0200 Subject: video: correct spelling: mp_image_params_equals -> mp_image_params_equal The type is struct mp_image_params, so the "params" should have a "s". "equals" shouldn't, because it's plural for 2 params. Important. --- video/vdpau_mixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video/vdpau_mixer.c') diff --git a/video/vdpau_mixer.c b/video/vdpau_mixer.c index 2d60f32912..88509ea833 100644 --- a/video/vdpau_mixer.c +++ b/video/vdpau_mixer.c @@ -234,7 +234,7 @@ int mp_vdpau_mixer_render(struct mp_vdpau_mixer *mixer, mixer->initialized = false; if (!mixer->initialized || !opts_equal(opts, &mixer->opts) || - !mp_image_params_equals(&video->params, &mixer->image_params)) + !mp_image_params_equal(&video->params, &mixer->image_params)) { mixer->opts = *opts; mixer->image_params = video->params; -- cgit v1.2.3