Searched defs:cvtlen (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/audio/audioconvert/
H A Dconvert.cc684 Double cvtlen; local
730 cvtlen = ihdr.Bytes_to_Time(CVTMAXBUF);
731 if (cvtlen > CVTMAXTIME)
732 cvtlen = CVTMAXTIME;
733 if (cvtlen > ohdr.Bytes_to_Time(CVTMAXBUF * 4))
734 cvtlen = ohdr.Bytes_to_Time(CVTMAXBUF * 4);
737 if (!(obuf = new AudioBuffer(cvtlen, MGET("Audio Convert Buffer")))) {
744 len = (size_t)ihdr.Time_to_Bytes(cvtlen);
750 if (obuf->GetSize() < cvtlen)
752 obuf->SetSize(cvtlen);
[all...]

Completed in 45 milliseconds