Home
last modified time | relevance | path

Searched refs:enc_bytes_read (Results 1 – 1 of 1) sorted by relevance

/dports/multimedia/butt/butt-0.1.27/src/
H A Dport_audio.cpp545 int enc_bytes_read; in snd_rec_thread() local
600 enc_bytes_read = opus_enc_encode(&opus_rec, (short*)audio_buf, in snd_rec_thread()
602 kbytes_written += fwrite(enc_buf, 1, enc_bytes_read, cfg.rec.fd)/1024.0; in snd_rec_thread()
614 enc_bytes_read = aac_enc_encode(&aac_rec, (short*)audio_buf, in snd_rec_thread()
616 kbytes_written += fwrite(enc_buf, 1, enc_bytes_read, cfg.rec.fd)/1024.0; in snd_rec_thread()
634 enc_bytes_read = lame_enc_encode(&lame_rec, (short*)audio_buf, enc_buf, in snd_rec_thread()
636 kbytes_written += fwrite(enc_buf, 1, enc_bytes_read, cfg.rec.fd)/1024.0; in snd_rec_thread()
647 enc_bytes_read = vorbis_enc_encode(&vorbis_rec, (short*)audio_buf, in snd_rec_thread()
649 kbytes_written += fwrite(enc_buf, 1, enc_bytes_read, cfg.rec.fd)/1024.0; in snd_rec_thread()