From bb22bee31564754203be1cf318f6747d6f79db08 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 4 Nov 2013 19:46:28 +0100 Subject: vo_opengl: cosmetics/fix typos --- video/out/gl_common.h | 2 +- video/out/gl_video.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'video') diff --git a/video/out/gl_common.h b/video/out/gl_common.h index 4722f3d52e..531cec37fb 100644 --- a/video/out/gl_common.h +++ b/video/out/gl_common.h @@ -191,7 +191,7 @@ struct gl_hwdec_driver { // Called on initialization, and every time the video size changes. int (*reinit)(struct gl_hwdec *hw, int w, int h); // Return textures that contain the given hw_image. - // Note that the caller keeps a reference to hw_image until unbind_image + // Note that the caller keeps a reference to hw_image until unload_image // is called, so the callee doesn't need to do that. int (*load_image)(struct gl_hwdec *hw, struct mp_image *hw_image, GLuint *out_textures); diff --git a/video/out/gl_video.c b/video/out/gl_video.c index 46fcdd9dcc..9fd3040d51 100644 --- a/video/out/gl_video.c +++ b/video/out/gl_video.c @@ -1302,7 +1302,7 @@ static void init_video(struct gl_video *p) if (p->hwdec_active) { if (p->hwdec->driver->reinit(p->hwdec, p->image_w, p->image_h) < 0) - MP_ERR(p, "Initializing hardware ddecoding video texture failed.\n"); + MP_ERR(p, "Initializing hardware decoding video texture failed.\n"); } reinit_rendering(p); -- cgit v1.2.3