From 935c8402bc76107b7f6d2d97e9d2d38a5924fb6c Mon Sep 17 00:00:00 2001 From: igv Date: Mon, 22 Feb 2016 23:07:04 +0200 Subject: vo_opengl: set the correct size of the input image --- video/out/opengl/video.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'video/out/opengl/video.c') diff --git a/video/out/opengl/video.c b/video/out/opengl/video.c index b4b5ac4703..db83067357 100644 --- a/video/out/opengl/video.c +++ b/video/out/opengl/video.c @@ -984,8 +984,8 @@ static void load_shader(struct gl_video *p, const char *body) gl_sc_hadd(p->sc, body); gl_sc_uniform_f(p->sc, "random", (double)av_lfg_get(&p->lfg) / UINT32_MAX); gl_sc_uniform_f(p->sc, "frame", p->frames_uploaded); - gl_sc_uniform_vec2(p->sc, "image_size", (GLfloat[]){p->texture_w, - p->texture_h}); + gl_sc_uniform_vec2(p->sc, "image_size", (GLfloat[]){p->image_params.w, + p->image_params.h}); } static const char *get_custom_shader_fn(struct gl_video *p, const char *body) -- cgit v1.2.3