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
voidSampleFormat::fillArrays(uint8_t **audioData, int *linesize, constuint8_t *buf, int nbChannels, int nbSamples, SampleFormat fmt, int align, OptionalErrorCode ec)
{
auto sts = av_samples_fill_arrays(audioData, linesize, buf, nbChannels, nbSamples, fmt, align);
if (sts < 0)
{
throws_if(ec, sts, ffmpeg_category());
return;
}
}
voidSampleFormat::setSilence(uint8_t **audioData, int offset, int nbSamples, int nbChannels, SampleFormat fmt)