Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ADCP-Test MAX_IN_FILES #21

Open
EnnoWinde opened this issue Dec 2, 2019 · 1 comment · May be fixed by #131
Open

ADCP-Test MAX_IN_FILES #21

EnnoWinde opened this issue Dec 2, 2019 · 1 comment · May be fixed by #131

Comments

@EnnoWinde
Copy link

EnnoWinde commented Dec 2, 2019

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

@msheby
Copy link
Contributor

msheby commented Sep 10, 2020

Bug aside, have you tried wrapping the audio files with asdcp-wrap instead?

msheby added a commit to msheby/asdcplib that referenced this issue Dec 20, 2023
@msheby msheby linked a pull request Dec 20, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants