Changeset 4389076 in mainline for uspace/app
- Timestamp:
- 2013-04-05T15:45:01Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60e5696d
- Parents:
- 02ead2e
- File:
-
- 1 edited
-
uspace/app/wavplay/main.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/wavplay/main.c
r02ead2e r4389076 46 46 #include "wave.h" 47 47 48 #define BUFFER_SIZE ( 4* 1024)48 #define BUFFER_SIZE (32 * 1024) 49 49 50 50 … … 74 74 } 75 75 hound_context_t *hound = hound_context_create_playback(filename, 76 format, 0);76 format, BUFFER_SIZE * 2); 77 77 if (!hound) { 78 78 printf("Failed to create HOUND context\n"); … … 258 258 return 1; 259 259 } 260 if (direct) 260 if (direct) { 261 261 return dplay(device, file); 262 else 262 } else { 263 return hplay(file); 263 264 return play_hound(file); 264 hplay(file);265 } 265 266 } 266 267 /**
Note:
See TracChangeset
for help on using the changeset viewer.
