Changeset 65259 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 12, 2017 11:29:34 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/EbmlWriter.cpp
r65256 r65259 383 383 int AddAudioTrack(float fSamplingHz, float fOutputHz, uint8_t cChannels, uint8_t cBitDepth) 384 384 { 385 #ifdef VBOX_WITH_AUDIO_VIDEOREC 385 386 m_Ebml.subStart(TrackEntry); 386 387 m_Ebml.serializeUnsignedInteger(TrackNumber, (uint8_t)m_lstTracks.size()); … … 406 407 407 408 return VINF_SUCCESS; 409 #else 410 RT_NOREF(fSamplingHz, fOutputHz, cChannels, cBitDepth); 411 return VERR_NOT_SUPPORTED; 412 #endif 408 413 } 409 414
Note:
See TracChangeset
for help on using the changeset viewer.