Changeset 05b59393 in mainline for uspace/drv/audio
- Timestamp:
- 2017-10-04T18:02:14Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c9e88da
- Parents:
- 0b2d369
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/audio/sb16/dsp.c
r0b2d369 r05b59393 75 75 [DSP_NO_BUFFER] = "NO BUFFER", 76 76 }; 77 if ( state < ARRAY_SIZE(state_names))77 if ((size_t)state < ARRAY_SIZE(state_names)) 78 78 return state_names[state]; 79 79 return "UNKNOWN"; … … 144 144 { 145 145 dsp_write(dsp, SET_SAMPLING_RATE_OUTPUT); 146 dsp_write(dsp, rate >> 8); 147 dsp_write(dsp, rate & 0xff); 148 ddf_log_verbose("Sampling rate: %hhx:%hhx.", rate >> 8, rate & 0xff); 146 uint8_t rate_lo = rate & 0xff; 147 uint8_t rate_hi = rate >> 8; 148 dsp_write(dsp, rate_hi); 149 dsp_write(dsp, rate_lo); 150 ddf_log_verbose("Sampling rate: %hhx:%hhx.", rate_hi, rate_lo); 149 151 } 150 152 … … 202 204 203 205 return ret; 204 }205 206 static inline size_t sample_count(pcm_sample_format_t format, size_t byte_count)207 {208 return byte_count / pcm_sample_format_size(format);209 206 } 210 207
Note:
See TracChangeset
for help on using the changeset viewer.