mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-03 03:48:16 -05:00
14 lines
371 B
C++
14 lines
371 B
C++
#pragma once
|
|
|
|
#include "models/multitrack-video.hpp"
|
|
|
|
#include <obs.hpp>
|
|
|
|
#include <QString>
|
|
|
|
#include <optional>
|
|
|
|
GoLiveApi::PostData constructGoLivePost(QString streamKey, const std::optional<uint64_t> &maximum_aggregate_bitrate,
|
|
const std::optional<uint32_t> &maximum_video_tracks, bool vod_track_enabled,
|
|
const std::vector<OBSCanvasAutoRelease> &canvases);
|