Home
last modified time | relevance | path

Searched refs:pcmPos (Results 1 – 3 of 3) sorted by path

/dports/audio/sdl2_mixer/SDL2_mixer-2.0.4/
H A Dmusic_ogg.c329 ogg_int64_t pcmPos; in OGG_GetSome() local
360 pcmPos = vorbis.ov_pcm_tell(&music->vf); in OGG_GetSome()
361 if ((music->loop == 1) && (pcmPos >= music->loop_end)) { in OGG_GetSome()
362 amount -= (int)((pcmPos - music->loop_end) * music->channels) * sizeof(Sint16); in OGG_GetSome()
/dports/games/ponscripter-07th-mod/ponscripter-fork-3.0.0/src/
H A DPonscripterLabel_sound.cpp117 ogg_int64_t pcmPos = ov_pcm_tell(&ovi->ovf); in decodeOggVorbis() local
118 if (pcmPos >= ovi->loop_end) { in decodeOggVorbis()
119 len -= ((pcmPos - ovi->loop_end) * ovi->channels) * (long)sizeof(Uint16); in decodeOggVorbis()
/dports/russian/emkatic/emkatic-0.38-src/
H A Dbeeper.pas86 pcmRate,pcmFreq,pcmPos:longword;
100 b:=pcmPos<Half; inc(pcmPos,pcmFreq);
101 if pcmPos>=pcmRate then dec(pcmPos,pcmRate);
102 if (pcmStatus=pcmToSilence) and (b xor (pcmPos<Half)) then begin
104 if pcmPos<Half then pcmPos:=0 else pcmPos:=Half;
105 end else A(output^)[i]:=Sample[pcmPos];
200 pcmPos:=0; pcmStatus:=pcmSilence; setlength(Sample,pcmRate);