Changeset 90004 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Jul 2, 2021 6:46:18 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145483
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTest.cpp
r89994 r90004 1275 1275 * 1276 1276 * @returns VBox status code. 1277 * @param Obj Audio test object to write to.1277 * @param hObj Handle to the audio test object to write to. 1278 1278 * @param pvBuf Pointer to data to write. 1279 1279 * @param cbBuf Size (in bytes) of \a pvBuf to write. 1280 1280 */ 1281 int AudioTestObjWrite(AUDIOTESTOBJ Obj, const void *pvBuf, size_t cbBuf)1282 { 1283 AUDIOTESTOBJINT *pThis = Obj;1281 int AudioTestObjWrite(AUDIOTESTOBJ hObj, const void *pvBuf, size_t cbBuf) 1282 { 1283 AUDIOTESTOBJINT *pThis = hObj; 1284 1284 1285 1285 /** @todo Generalize this function more once we have more object types. */ … … 1293 1293 * 1294 1294 * @returns VBox status code. 1295 * @param ObjTest object to add meta data for.1295 * @param pObj Test object to add meta data for. 1296 1296 * @param pszFormat Format string to add. 1297 1297 * @param va Variable arguments list to use for the format string. … … 1317 1317 * 1318 1318 * @returns VBox status code. 1319 * @param Obj Test object to add meta data for.1319 * @param hObj Handle to the test object to add meta data for. 1320 1320 * @param pszFormat Format string to add. 1321 1321 * @param ... Variable arguments for the format string. 1322 1322 */ 1323 int AudioTestObjAddMetadataStr(AUDIOTESTOBJ Obj, const char *pszFormat, ...)1324 { 1325 AUDIOTESTOBJINT *pThis = Obj;1323 int AudioTestObjAddMetadataStr(AUDIOTESTOBJ hObj, const char *pszFormat, ...) 1324 { 1325 AUDIOTESTOBJINT *pThis = hObj; 1326 1326 1327 1327 va_list va; … … 1338 1338 * 1339 1339 * @returns VBox status code. 1340 * @param Obj Audio test object to close.1341 */ 1342 int AudioTestObjClose(AUDIOTESTOBJ Obj)1343 { 1344 AUDIOTESTOBJINT *pThis = Obj;1340 * @param hObj Handle to the audio test object to close. 1341 */ 1342 int AudioTestObjClose(AUDIOTESTOBJ hObj) 1343 { 1344 AUDIOTESTOBJINT *pThis = hObj; 1345 1345 1346 1346 if (!pThis) … … 1781 1781 * 1782 1782 * @returns VBox status code. 1783 * @param ObjObject to close.1783 * @param pObj Object to close. 1784 1784 */ 1785 1785 static int audioTestObjCloseInternal(PAUDIOTESTOBJINT pObj) … … 1805 1805 * Finalizes an audio test set object. 1806 1806 * 1807 * @param ObjTest object to finalize.1807 * @param pObj Test object to finalize. 1808 1808 */ 1809 1809 static void audioTestObjFinalize(PAUDIOTESTOBJINT pObj)
Note:
See TracChangeset
for help on using the changeset viewer.