summaryrefslogtreecommitdiffstats
path: root/video/out/gl_video.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/out/gl_video.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/out/gl_video.c')
-rw-r--r--video/out/gl_video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gl_video.c b/video/out/gl_video.c
index 832f39cfe0..2a24c073e5 100644
--- a/video/out/gl_video.c
+++ b/video/out/gl_video.c
@@ -2196,7 +2196,7 @@ void gl_video_config(struct gl_video *p, struct mp_image_params *params)
p->have_image = false;
mp_image_unrefp(&p->image.hwimage);
- if (!mp_image_params_equals(&p->image_params, params)) {
+ if (!mp_image_params_equal(&p->image_params, params)) {
uninit_video(p);
init_video(p, params);
}