In reply to bbushart:
the maping code would look like:
m_split_frame0.create_mapping(“m_split_frame0”,
split_frame_sequencer::get_type(),
“m_lower_agent0”,
split_lower_translator::get_type(),
default_sequnce::get_type(),
string path to m_lower_agent0 sequencer
);
m_split_frame1.create_mapping(“m_split_frame0”,
split_frame_sequencer::get_type(),
“m_lower_agent1”,
split_lower_translator::get_type(),
default_seqence::get_type(),
string path to m_lower_agent1 sequencer
);
This will map m_video_frame to m_split_frame0:
m_video_frame.create_mapping(“m_video_frame”,
video_frame_sequencer::get_type(),
“m_split_frame0”,
frame_split_frame_translator::get_type(),
default_frame_seq::get_type(),
“layering_sequencer”
);
Can the above code be modified or duplicated to also map m_video_frame to m_split_frame1 so that the translator class sends one half frame to m_split_frame0 and the other half frame to m_split_frame1?