mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-12 01:06:46 -04:00
clang-format: Increase column limit from 80 to 120
This commit is contained in:
@@ -19,18 +19,14 @@ enum queue_state {
|
||||
SHARED_QUEUE_STATE_STOPPING,
|
||||
};
|
||||
|
||||
extern video_queue_t *video_queue_create(uint32_t cx, uint32_t cy,
|
||||
uint64_t interval);
|
||||
extern video_queue_t *video_queue_create(uint32_t cx, uint32_t cy, uint64_t interval);
|
||||
extern video_queue_t *video_queue_open();
|
||||
extern void video_queue_close(video_queue_t *vq);
|
||||
|
||||
extern void video_queue_get_info(video_queue_t *vq, uint32_t *cx, uint32_t *cy,
|
||||
uint64_t *interval);
|
||||
extern void video_queue_write(video_queue_t *vq, uint8_t **data,
|
||||
uint32_t *linesize, uint64_t timestamp);
|
||||
extern void video_queue_get_info(video_queue_t *vq, uint32_t *cx, uint32_t *cy, uint64_t *interval);
|
||||
extern void video_queue_write(video_queue_t *vq, uint8_t **data, uint32_t *linesize, uint64_t timestamp);
|
||||
extern enum queue_state video_queue_state(video_queue_t *vq);
|
||||
extern bool video_queue_read(video_queue_t *vq, nv12_scale_t *scale, void *dst,
|
||||
uint64_t *ts);
|
||||
extern bool video_queue_read(video_queue_t *vq, nv12_scale_t *scale, void *dst, uint64_t *ts);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user