Refactoring, FFmpeg updates

This commit is contained in:
2025-11-03 00:16:05 -05:00
parent 62cd94ca78
commit 1e35910b0a
65 changed files with 2322 additions and 2236 deletions

12
src/storage.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "storage.h"
namespace anm2ed
{
void Storage::labels_set(std::vector<std::string> labels)
{
labelsString = labels;
this->labels.clear();
for (auto& label : labelsString)
this->labels.emplace_back(label.c_str());
}
}