A standard 2-channel (stereo) analog to digital converter sound stream at a 44.1 kHz sample rate and 16-bit depth yields exactly 1,411.2 kbps (kilobits per second) or 176.4 KB/s (kilobytes per second) of uncompressed Linear PCM data. The formula used to calculate this is: Bitrate = Sample Rate × Bit Depth × Channels. Substituting the standard CD-quality values into the formula: 44,100 Hz × 16 bits × 2 channels = 1,411,200 bits/sec. This raw data rate represents the continuous stream of digital codes generated before any file-level compression (like MP3 or FLAC) or protocol overhead (like I2S or USB framing) is applied.
Neighboring Audio ADC Bitrates (±20% Range)
When designing audio pipelines for embedded systems or DSPs, you rarely stick to a single sample rate. Below is a spec-sheet-style table of standard uncompressed PCM bitrates that fall within or immediately adjacent to a ±20% range of the 1,411.2 kbps baseline (bounds: 1,129 kbps to 1,693 kbps). These values assume standard stereo (2-channel) output.
| Sample Rate | Bit Depth | Channels | Calculated Bitrate (kbps) | Variance from Baseline |
|---|---|---|---|---|
| 32.0 kHz | 24-bit | 2 (Stereo) | 1,536.0 kbps | +8.8% |
| 44.1 kHz | 16-bit | 2 (Stereo) | 1,411.2 kbps | Baseline (0%) |
| 48.0 kHz | 16-bit | 2 (Stereo) | 1,536.0 kbps | +8.8% |
| 44.1 kHz | 20-bit (Packed) | 2 (Stereo) | 1,764.0 kbps | +25.0% (Outside bound) |
Note: While 24-bit audio is standard in modern studio ADCs (like the AKM AK5552), the actual I2S data bus often packs 24-bit samples into 32-bit words, which shifts the physical bus bandwidth requirement to 2,822.4 kbps for 44.1 kHz stereo, even though the payload data remains 1,411.2 kbps equivalent if padded.
Why 120V, 230V, and 3-Phase Mains Are Irrelevant to Audio Conversion
A common point of confusion when bridging power electronics and audio engineering is how AC mains voltage affects signal conversion. How does the bitrate shift for 120V vs 230V vs 3-phase power? The answer is that it does not shift at all. Audio ADCs do not sample AC mains power; they sample low-voltage line-level audio signals.
Dedicated audio ADC chips (such as the Texas Instruments PCM1808 or ESS Sabre ES9038) expect analog input signals in the range of 1V RMS to 2V RMS (typically maxing out around 3.1V peak-to-peak for 0 dBFS). The 120V, 230V, or 3-phase AC mains only serves to feed the device's switching power supply, which steps the voltage down and rectifies it to generate the clean 3.3V or 5V DC rails required by the ADC silicon. The digital bitrate is dictated entirely by the master clock oscillator (MCLK) and the internal sigma-delta modulator, completely isolated from the AC mains frequency (50/60 Hz).
When is the conversion meaningless? If you are attempting to apply Power Factor (PF) to an audio signal conversion, the metric is entirely meaningless. Power Factor measures the phase shift between AC voltage and current in high-power delivery systems. Audio signals are low-voltage information carriers, not power delivery mechanisms. Furthermore, attempting to feed 120V or 230V directly into an audio ADC's analog input pins without a step-down isolation transformer will instantly destroy the silicon, cause catastrophic thermal failure, and pose a severe electrocution hazard.
Assumptions That Fix Your Audio Data Rate
The 1,411.2 kbps calculation relies on several strict hardware and protocol assumptions. If any of these change, your data rate shifts dramatically:
- Uncompressed Linear PCM: The formula assumes Pulse Code Modulation where every sample is transmitted as a discrete multi-bit word. If your ADC outputs compressed audio (like A-law or μ-law used in telephony), the bitrate drops to 64 kbps per channel.
- Fixed Clock Accuracy: The calculation assumes a perfect 44,100 Hz clock. In reality, crystal oscillators have a tolerance (e.g., ±20 ppm). A 44.1 kHz clock running at 44,100.88 Hz will slightly increase the data rate and cause sync drift over long recordings.
- Nyquist-Rate vs. Oversampling: While the output data rate is 1,411.2 kbps, the internal analog-to-digital conversion in modern sigma-delta ADCs actually samples at 64x or 128x oversampling rates (e.g., 2.8224 MHz) before applying a digital decimation filter to output the final 44.1 kHz stream.
For a deeper dive into the mathematical foundations of voltage-to-digital conversion and decimation filters, refer to the Analog Devices MT-028 Tutorial and the Stanford CCRMA Digital Filters Guide.
Frequently Asked Questions
How does an analog to digital converter sound chip handle clipping?
Unlike analog tape which saturates softly, a digital ADC hits a hard mathematical ceiling known as 0 dBFS (Decibels relative to Full Scale). If the analog input voltage exceeds the ADC's reference voltage (e.g., >2V RMS on a chip configured for 2V max), the digital output simply maxes out at the highest binary code (e.g., 0111111111111111 for 16-bit). This results in a flat-topped square wave, generating massive odd-order harmonic distortion. To prevent this, professional audio interfaces use analog limiters or soft-clipping circuits ahead of the ADC input pins.
What is the difference between PDM and PCM in audio ADCs?
PCM (Pulse Code Modulation) outputs a multi-bit word (16/24-bit) at the Nyquist sample rate (e.g., 44.1 kHz). PDM (Pulse Density Modulation), commonly found in MEMS microphones like the InvenSense ICS-43434, outputs a 1-bit stream at a massively oversampled rate (typically 2.048 MHz or 3.072 MHz). While a PDM stream technically has a raw bitrate of 2,048 kbps (mono), it contains mostly high-frequency noise shaping. A DSP must apply a decimation filter to convert the PDM stream back into a usable PCM stream before it can be stored or analyzed.
Can I use a microcontroller's built-in ADC for high-fidelity sound?
Generally, no. While an ESP32 or Arduino Due has built-in ADCs capable of sampling at 44.1 kHz, their Effective Number of Bits (ENOB) is usually around 9 to 10 bits due to internal digital noise and poor voltage references. This yields a Signal-to-Noise Ratio (SNR) of roughly 60 dB, which sounds noticeably hissy compared to a dedicated I2S audio ADC like the TI PCM1808 (which offers 99 dB SNR). For high-fidelity sound, always use a dedicated external ADC communicating over the I2S bus.
How do I calculate the storage size for an uncompressed audio ADC stream?
To find the file size in megabytes (MB) for a raw PCM stream, use the formula: (Bitrate in kbps / 8) × Duration in seconds / 1024. For example, recording 60 seconds of stereo 44.1 kHz / 16-bit audio: (1411.2 / 8) × 60 / 1024 = 10.33 MB. Note that if you save this as a standard .WAV file, the RIFF header will add roughly 44 bytes of overhead, which is negligible for long recordings but matters in highly constrained embedded flash storage.






