添加音频和视频缓冲区配置支持

This commit is contained in:
2025-03-19 21:37:03 +08:00
parent 60ae578648
commit 2c935b29be
5 changed files with 53 additions and 0 deletions

View File

@@ -10,8 +10,12 @@ class Config {
configs["appendLogging"] = "false";
configs["loggingFile"] = "";
configs["loggingLevel"] = "info";
configs["audioBuffer"] = "0";
configs["videoBuffer"] = "0";
}
bool Load(std::string path);
bool IsAppendLogging();
int LoggingLevel();
uint32_t AudioBuffer();
uint32_t VideoBuffer();
};