• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# VideoOutput_Callbacks
2
3
4## Overview
5
6The VideoOutput_Callbacks struct describes the callbacks related to video output.
7
8For details, see [OH_VideoOutput_RegisterCallback](_o_h___camera.md#oh_videooutput_registercallback).
9
10**Since**: 11
11
12**Related module**: [OH_Camera](_o_h___camera.md)
13
14**Header file**: [video_output.h](video__output_8h.md)
15
16
17## Summary
18
19
20### Member Variables
21
22| Name| Description|
23| -------- | -------- |
24| [OH_VideoOutput_OnFrameStart](_o_h___camera.md#oh_videooutput_onframestart) [onFrameStart](#onframestart) | Callback to report video output frame start events.|
25| [OH_VideoOutput_OnFrameEnd](_o_h___camera.md#oh_videooutput_onframeend) [onFrameEnd](#onframeend) | Callback to report video output frame end events.|
26| [OH_VideoOutput_OnError](_o_h___camera.md#oh_videooutput_onerror) [onError](#onerror) | Callback to report video output errors.|
27
28
29## Member Variable Description
30
31
32### onError
33
34```
35OH_VideoOutput_OnError VideoOutput_Callbacks::onError
36```
37
38**Description**
39
40Callback to report video output errors.
41
42
43### onFrameEnd
44
45```
46OH_VideoOutput_OnFrameEnd VideoOutput_Callbacks::onFrameEnd
47```
48
49**Description**
50
51Callback to report video output frame end events.
52
53
54### onFrameStart
55
56```
57OH_VideoOutput_OnFrameStart VideoOutput_Callbacks::onFrameStart
58```
59
60**Description**
61
62Callback to report video output frame start events.
63