forked from FFmpeg/FFmpeg
libavdevice/avfoundation: add capture_mouse_clicks option
Support mouse clicks capture while recording a screen on OSX >= 10.7. Reviewed-by: Thilo Borgmann <thilo.borgmann@mail.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c908cae74c
commit
021b023751
1 changed files with 15 additions and 0 deletions
|
@ -95,6 +95,7 @@ typedef struct
|
||||||
int width, height;
|
int width, height;
|
||||||
|
|
||||||
int capture_cursor;
|
int capture_cursor;
|
||||||
|
int capture_mouse_clicks;
|
||||||
|
|
||||||
int list_devices;
|
int list_devices;
|
||||||
int video_device_index;
|
int video_device_index;
|
||||||
|
@ -742,6 +743,12 @@ static int avf_read_header(AVFormatContext *s)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if (ctx->capture_mouse_clicks) {
|
||||||
|
capture_screen_input.capturesMouseClicks = YES;
|
||||||
|
} else {
|
||||||
|
capture_screen_input.capturesMouseClicks = NO;
|
||||||
|
}
|
||||||
|
|
||||||
video_device = (AVCaptureDevice*) capture_screen_input;
|
video_device = (AVCaptureDevice*) capture_screen_input;
|
||||||
capture_screen = 1;
|
capture_screen = 1;
|
||||||
#endif
|
#endif
|
||||||
|
@ -785,6 +792,12 @@ static int avf_read_header(AVFormatContext *s)
|
||||||
capture_screen_input.capturesCursor = NO;
|
capture_screen_input.capturesCursor = NO;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if (ctx->capture_mouse_clicks) {
|
||||||
|
capture_screen_input.capturesMouseClicks = YES;
|
||||||
|
} else {
|
||||||
|
capture_screen_input.capturesMouseClicks = NO;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -1002,6 +1015,8 @@ static const AVOption options[] = {
|
||||||
{ "framerate", "set frame rate", offsetof(AVFContext, framerate), AV_OPT_TYPE_VIDEO_RATE, {.str = "ntsc"}, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
|
{ "framerate", "set frame rate", offsetof(AVFContext, framerate), AV_OPT_TYPE_VIDEO_RATE, {.str = "ntsc"}, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
|
||||||
{ "video_size", "set video size", offsetof(AVFContext, width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
|
{ "video_size", "set video size", offsetof(AVFContext, width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
|
||||||
{ "capture_cursor", "capture the screen cursor", offsetof(AVFContext, capture_cursor), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, AV_OPT_FLAG_DECODING_PARAM },
|
{ "capture_cursor", "capture the screen cursor", offsetof(AVFContext, capture_cursor), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, AV_OPT_FLAG_DECODING_PARAM },
|
||||||
|
{ "capture_mouse_clicks", "capture the screen mouse clicks", offsetof(AVFContext, capture_mouse_clicks), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, AV_OPT_FLAG_DECODING_PARAM },
|
||||||
|
|
||||||
{ NULL },
|
{ NULL },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue