Changeset 65391 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 20, 2017 3:29:23 PM (8 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DrvAudioVideoRec.cpp
r65389 r65391 77 77 OpusEncoder *pEnc; 78 78 /** The encoding rate to use. */ 79 uint 16_t uHz;79 uint32_t uHz; 80 80 /** Duration of the frame in samples (per channel). 81 81 * Valid frame size are: … … 163 163 PDRVAUDIOVIDEOREC pThis = PDMIHOSTAUDIO_2_DRVAUDIOVIDEOREC(pInterface); 164 164 165 uint 16_t uHz = pStreamOut->Props.uHz;165 uint32_t uHz = pStreamOut->Props.uHz; 166 166 167 167 /* Opus only supports certain input sample rates in an efficient manner. -
trunk/src/VBox/Main/src-client/EbmlWriter.cpp
r65389 r65391 329 329 { 330 330 /** Sample rate of input data. */ 331 uint 16_t uHz;331 uint32_t uHz; 332 332 /** Duration of the frame in samples (per channel). 333 333 * Valid frame size are: … … 514 514 * @returns IPRT status code. 515 515 * @param uHz Input sampling rate. 516 * Must be supported by the selected audio codec. 516 517 * @param cChannels Number of input audio channels. 517 518 * @param cBits Number of input bits per channel.
Note:
See TracChangeset
for help on using the changeset viewer.