- Timestamp:
- Oct 26, 2010 2:58:49 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchIntelHDA.cpp
r33436 r33444 1181 1181 } 1182 1182 1183 static uint32_t read_audio(INTELHDLinkState *pState, int avail, bool *fStop)1183 static uint32_t hdaReadAudio(INTELHDLinkState *pState, int avail, bool *fStop) 1184 1184 { 1185 1185 uint8_t tmpbuf[4096]; … … 1217 1217 return cbRead; 1218 1218 } 1219 static uint32_t write_audio(INTELHDLinkState *pState, int avail, bool *fStop)1219 static uint32_t hdaWriteAudio(INTELHDLinkState *pState, int avail, bool *fStop) 1220 1220 { 1221 1221 uint8_t tmpbuf[4096]; … … 1313 1313 { 1314 1314 case PO_INDEX: 1315 nBytes = write_audio(pState, avail, &fStop);1315 nBytes = hdaWriteAudio(pState, avail, &fStop); 1316 1316 break; 1317 1317 case PI_INDEX: 1318 nBytes = read_audio(pState, avail, &fStop);1318 nBytes = hdaReadAudio(pState, avail, &fStop); 1319 1319 break; 1320 1320 default:
Note:
See TracChangeset
for help on using the changeset viewer.