diff options
Diffstat (limited to 'video/out')
-rw-r--r-- | video/out/opengl/hwdec_osx.c | 2 | ||||
-rw-r--r-- | video/out/opengl/video.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/video/out/opengl/hwdec_osx.c b/video/out/opengl/hwdec_osx.c index 2c1ffc71ae..6ddfa66e0a 100644 --- a/video/out/opengl/hwdec_osx.c +++ b/video/out/opengl/hwdec_osx.c @@ -246,6 +246,8 @@ static int map_frame(struct gl_hwdec *hw, struct mp_image *hw_image, .tex_w = IOSurfaceGetWidthOfPlane(surface, i), .tex_h = IOSurfaceGetHeightOfPlane(surface, i), }; + snprintf(out_frame->planes[i].swizzle, sizeof(out_frame->planes[i].swizzle), + "%s", f->gl[i].swizzle); } return 0; diff --git a/video/out/opengl/video.c b/video/out/opengl/video.c index 948eefe096..c636d12135 100644 --- a/video/out/opengl/video.c +++ b/video/out/opengl/video.c @@ -2571,6 +2571,8 @@ static void gl_video_upload_image(struct gl_video *p, struct mp_image *mpi) .gl_target = plane->gl_target, .gl_texture = plane->gl_texture, }; + snprintf(vimg->planes[n].swizzle, sizeof(vimg->planes[n].swizzle), + "%s", plane->swizzle); } } else { MP_FATAL(p, "Mapping hardware decoded surface failed.\n"); |