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. --- player/video.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'player') diff --git a/player/video.c b/player/video.c index 59484088d6..c7d5cd8ddb 100644 --- a/player/video.c +++ b/player/video.c @@ -367,7 +367,7 @@ static int video_decode_and_filter(struct MPContext *mpctx) // Decoder output is different from filter input? bool need_vf_reconfig = !vf->input_params.imgfmt || vf->initialized < 1 || - !mp_image_params_equals(&d_video->decoder_output, &vf->input_params); + !mp_image_params_equal(&d_video->decoder_output, &vf->input_params); // (If imgfmt==0, nothing was decoded yet, and the format is unknown.) if (need_vf_reconfig && d_video->decoder_output.imgfmt) { @@ -465,7 +465,7 @@ static int video_output_image(struct MPContext *mpctx, double endpts, // Filter output is different from VO input? bool need_vo_reconfig = !vo->params || - !mp_image_params_equals(&vf->output_params, vo->params); + !mp_image_params_equal(&vf->output_params, vo->params); if (need_vo_reconfig) { // Draining VO buffers. -- cgit v1.2.3