summaryrefslogtreecommitdiffstats
path: root/video/out/vo_gpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo_gpu.c')
-rw-r--r--video/out/vo_gpu.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/video/out/vo_gpu.c b/video/out/vo_gpu.c
index 61696af0e4..a80ba233c2 100644
--- a/video/out/vo_gpu.c
+++ b/video/out/vo_gpu.c
@@ -178,15 +178,8 @@ static int control(struct vo *vo, uint32_t request, void *data)
return VO_TRUE;
case VOCTRL_SCREENSHOT: {
struct vo_frame *frame = vo_get_current_vo_frame(vo);
- if (frame) {
- // Disable interpolation and such.
- frame->redraw = true;
- frame->repeat = false;
- frame->still = true;
- frame->pts = 0;
- frame->duration = -1;
+ if (frame)
gl_video_screenshot(p->renderer, frame, data);
- }
talloc_free(frame);
return true;
}