From ec356d3efe73e9505d4db4bdf046629ea66b237a Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 25 Sep 2015 10:03:17 +0200 Subject: vo_opengl: vaapi: remove unnecessary loop Not sure what I was thinking. --- video/out/opengl/hwdec_vaegl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/video/out/opengl/hwdec_vaegl.c b/video/out/opengl/hwdec_vaegl.c index 33d8972b0a..ff04c1a065 100644 --- a/video/out/opengl/hwdec_vaegl.c +++ b/video/out/opengl/hwdec_vaegl.c @@ -109,8 +109,7 @@ static int create(struct gl_hwdec *hw) struct priv *p = talloc_zero(hw, struct priv); hw->priv = p; - for (int n = 0; n < 4; n++) - p->current_image.buf = p->current_image.image_id = VA_INVALID_ID; + p->current_image.buf = p->current_image.image_id = VA_INVALID_ID; p->log = hw->log; p->xdisplay = x11disp; p->display = vaGetDisplay(x11disp); -- cgit v1.2.3