Files
dmf-studio-rnd/shared/FlowDef.hpp
T
JohannesItten fe3b5969ca fix: add required grouphint tag to make_audio_flow_def
MXL FlowParser requires urn:x-nmos:tag:grouphint/v1.0 in the tags
object of every flow definition. make_audio_flow_def was missing tags
entirely, causing FlowParser.cpp:192 "Invalid group hint tag".

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-01 12:47:40 +03:00

75 lines
2.8 KiB
C++

#pragma once
#include <string>
#include <nlohmann/json.hpp>
namespace dmf {
// Generates a minimal but valid NMOS IS-04 flow definition JSON string
// for a video/v210 flow. MXL uses this to set up the ring buffer geometry.
inline std::string make_video_flow_def(
const std::string& flow_id,
const std::string& label,
int width, int height,
int fps_num, int fps_den = 1)
{
using json = nlohmann::json;
return json{
{"id", flow_id},
{"format", "urn:x-nmos:format:video"},
{"label", label},
{"description", label + " MXL Video Flow"},
{"media_type", "video/v210"},
{"parents", json::array()},
{"grain_rate", {{"numerator", fps_num}, {"denominator", fps_den}}},
{"frame_width", width},
{"frame_height", height},
{"interlace_mode", "progressive"},
{"colorspace", "BT709"},
{"tags", {
{"urn:x-nmos:tag:grouphint/v1.0", json::array({label + ":Video"})}
}},
{"components", json::array({
{{"name","Y"}, {"width",width}, {"height",height}, {"bit_depth",10}},
{{"name","Cb"}, {"width",width/2}, {"height",height}, {"bit_depth",10}},
{{"name","Cr"}, {"width",width/2}, {"height",height}, {"bit_depth",10}}
})}
}.dump();
}
// Generates a minimal but valid NMOS IS-04 flow definition JSON string
// for a raw PCM audio flow. grain_rate_num/den sets the grain delivery rate
// (default 25/1 = one grain per video frame). MXL computes grain size as
// sample_rate / grain_rate samples per grain.
inline std::string make_audio_flow_def(
const std::string& flow_id,
const std::string& label,
int sample_rate,
int channels,
int bit_depth = 32,
int grain_rate_num = 25,
int grain_rate_den = 1)
{
using json = nlohmann::json;
static const char* ch_labels[] = {"L","R","C","LFE","Ls","Rs","Lss","Rss"};
json ch_arr = json::array();
for (int i = 0; i < channels; ++i)
ch_arr.push_back({{"label", i < 8 ? ch_labels[i] : ("Ch" + std::to_string(i + 1))}});
return json{
{"id", flow_id},
{"format", "urn:x-nmos:format:audio"},
{"label", label},
{"description", label + " MXL Audio Flow"},
{"media_type", "audio/L" + std::to_string(bit_depth)},
{"parents", json::array()},
{"grain_rate", {{"numerator", grain_rate_num}, {"denominator", grain_rate_den}}},
{"sample_rate", {{"numerator", sample_rate}, {"denominator", 1}}},
{"channels", ch_arr},
{"bit_depth", bit_depth},
{"tags", {
{"urn:x-nmos:tag:grouphint/v1.0", json::array({label + ":Audio"})}
}},
}.dump();
}
} // namespace dmf