seqMerge
Top  Previous  Next

seqMerge ( integer Input1, integer Input2, integer Output )

Use this function to merge two sequences into a new one. The frames of the second sequence will be added to the end of the first sequence. Both sequences must have the same format and frame size.

Parameters
 
Input1  
 
An integer between 1 and 116 specifying the number of the first sequence. Values in the range of 100-116 correspond to hidden sequences.  
 
Input2  
 
An integer between 1 and 116 specifying the number of the second sequence. Values in the range of 100-116 correspond to hidden sequences.  
 
Output  
 
An integer between 1 and 116 specifying the number of the merged sequence.  
 
Error flags

ERR_OK  
 
The flag set if successful.  
 
ERR_FAILED  
 
The flag set if failed.  
 
Example

This set of statements grabs two sequences from the video device and merges them into a third one:  
 
grabSeq(1,10,100)  
wait(1000)  
grabSeq(2,8,200)  
seqMerge (1,2,3)