mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-09-17 17:16:40 +08:00
10 lines
210 B
C++
10 lines
210 B
C++
#pragma once
|
|
|
|
#include <obs.hpp>
|
|
|
|
#include <map>
|
|
|
|
const std::map<int, const char*> &GetAACEncoderBitrateMap();
|
|
const char *GetAACEncoderForBitrate(int bitrate);
|
|
int FindClosestAvailableAACBitrate(int bitrate);
|