Changeset 14d789c in mainline
- Timestamp:
- 2018-01-31T06:48:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2660ee3, 2b3dd78
- Parents:
- 07457d6 (diff), 2752620b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Jakub Jermář <jakub@…> (2018-01-31 06:48:29)
- git-committer:
- GitHub <noreply@…> (2018-01-31 06:48:29)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/pcm/include/pcm/sample_format.h
r07457d6 r14d789c 184 184 switch(format) { 185 185 case PCM_SAMPLE_UINT8: 186 return "8 bit unsi nged";186 return "8 bit unsigned"; 187 187 case PCM_SAMPLE_SINT8: 188 return "8 bit si nged";188 return "8 bit signed"; 189 189 case PCM_SAMPLE_UINT16_LE: 190 190 return "16 bit unsigned(LE)"; 191 191 case PCM_SAMPLE_SINT16_LE: 192 return "16 bit si nged(LE)";192 return "16 bit signed(LE)"; 193 193 case PCM_SAMPLE_UINT16_BE: 194 194 return "16 bit unsigned(BE)";
Note:
See TracChangeset
for help on using the changeset viewer.