Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sound/
DPULP_I2S.cs46 txSampleWidth = 16; in Reset()
128 encoder = new PCMEncoder(txSampleWidth, TxSampleFrequency, txChannels, false); in StartTx()
130 encoder.SetBufferingBySamplesCount((uint)txBufferSize.Value / (txSampleWidth / 8)); in StartTx()
161 var bufferStep = txSampleWidth / 8; in OutputFrames()
171 switch(txSampleWidth) in OutputFrames()
183 … throw new ArgumentException(String.Format("Invalid TX sample width: {}", txSampleWidth)); in OutputFrames()
290 txSampleWidth = (uint)(8 << (int)val); in CreateRegisters()
360 private uint txSampleWidth; field in Antmicro.Renode.Peripherals.Sound.PULP_I2S