aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorDaniel Allen <105088697+Daniel-S-Allen@users.noreply.github.com>2026-07-03 06:29:08 -0400
committerdec05eba <dec05eba@protonmail.com>2026-07-04 14:42:05 +0200
commit43685ca348fac41be63172b53cd1bac52b7f6877 (patch)
tree6d75ae358f6c45a42e2aa23ae61ba565a49838dd /include
parent9706252fcc46fef7c15522f07e4e61ee58ca6d6d (diff)
Implemented logic for custom audio track names
Diffstat (limited to 'include')
-rw-r--r--include/sound.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sound.hpp b/include/sound.hpp
index 6d903d8..d78e4b6 100644
--- a/include/sound.hpp
+++ b/include/sound.hpp
@@ -18,6 +18,7 @@
#ifndef GPU_SCREEN_RECORDER_H
#define GPU_SCREEN_RECORDER_H
+#include <optional>
#include <vector>
#include <string>
@@ -49,6 +50,7 @@ struct AudioInput {
};
struct MergedAudioInputs {
+ std::optional<std::string> custom_name;
std::string track_name;
std::vector<AudioInput> audio_inputs;
};