summaryrefslogtreecommitdiffstats
path: root/video/vdpau_mixer.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-17 23:30:16 +0200
committerwm4 <wm4@nowhere>2014-06-17 23:30:27 +0200
commita28e2a7432f68e4a5db96cce8cbaa859327c4527 (patch)
tree90dd1b68bbf99814ac38fbb92d98e5ca51858ebb /video/vdpau_mixer.c
parentefa6b09b65f8c87a18745352777225adef7dbfc0 (diff)
downloadmpv-a28e2a7432f68e4a5db96cce8cbaa859327c4527.tar.bz2
mpv-a28e2a7432f68e4a5db96cce8cbaa859327c4527.tar.xz
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.
Diffstat (limited to 'video/vdpau_mixer.c')
-rw-r--r--video/vdpau_mixer.c2
1 files changed, 1 insertions, 1 deletions
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;