We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With current version (2013-07-26), I get
position= -20 1599, period=20 position= 1600 3199, period=20 position= 3200 4799, period=20 position= 4800 6399, period=20 ....
If I make a change to decoder.c
if (d->frame_start_prev < 0) { /* d->frame_start_off = posinfo - d->snd_to_biphase_period; */ d->frame_start_off = posinfo; } else { d->frame_start_off = d->frame_start_prev; }
I get
position= 0 1599, period=20 position= 1600 3199, period=20 position= 3200 4799, period=20 position= 4800 6399, period=20 ...
as expected.
I have no idea if this is a good idea.
The text was updated successfully, but these errors were encountered:
Check the phase of your LTC signal (and the initial audio-frames-per-videoframes 'apv' setting for ltc_decoder_create - although that seems OK).
the change was introduced in 68f6f3b in the wake of doing scope measurements with a BB timecode generator: https://gareus.org/wiki/a3extsync
Sorry, something went wrong.
s/phase/polarity/
No branches or pull requests
With current version (2013-07-26), I get
If I make a change to decoder.c
I get
as expected.
I have no idea if this is a good idea.
The text was updated successfully, but these errors were encountered: