You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello Everyone, i tried to wrap 16 Sound Channels to one MXF. Because I need the VI on channel 16.
But there is no way to do this because in Line70 of asdcp-test.cpp is written: const ui32_t MAX_IN_FILES = 16;
and in Line 511 to 515: if ( file_count >= MAX_IN_FILES ) { fprintf(stderr, "Filename lists exceeds maximum list size: %u\n", MAX_IN_FILES); return; }
but it schould be: if ( file_count > MAX_IN_FILES ) { fprintf(stderr, "Filename lists exceeds maximum list size: %u\n", MAX_IN_FILES); return; }
I cant correct and compile the asdcp-test.exe by my own. Can sombody fix it an upload new binarie exe files for asdct-test?
Thank you kind regards
The text was updated successfully, but these errors were encountered:
Hello Everyone, i tried to wrap 16 Sound Channels to one MXF. Because I need the VI on channel 16.
But there is no way to do this because in Line70 of asdcp-test.cpp is written:
const ui32_t MAX_IN_FILES = 16;
and in Line 511 to 515:
if ( file_count >= MAX_IN_FILES ) { fprintf(stderr, "Filename lists exceeds maximum list size: %u\n", MAX_IN_FILES); return; }
but it schould be:
if ( file_count > MAX_IN_FILES ) { fprintf(stderr, "Filename lists exceeds maximum list size: %u\n", MAX_IN_FILES); return; }
I cant correct and compile the asdcp-test.exe by my own. Can sombody fix it an upload new binarie exe files for asdct-test?
Thank you kind regards
The text was updated successfully, but these errors were encountered: