Changeset 65410 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jan 24, 2017 10:06:12 AM (8 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r65164 r65410 139 139 #endif 140 140 #ifdef VBOX_WITH_AUDIO_VIDEOREC 141 AudioVideoRec *getAudioVideoRec() const { return mAudioVideoRec; } 141 AudioVideoRec *i_audioVideoRecGet() const { return mAudioVideoRec; } 142 HRESULT i_audioVideoRecSendAudio(const void *pvData, size_t cbData, uint64_t uTimestampMs); 142 143 #endif 143 144 -
trunk/src/VBox/Main/include/DisplayImpl.h
r65401 r65410 202 202 void VideoAccelFlushVMMDev(void); 203 203 204 int i_VideoCaptureStart(); 205 void i_VideoCaptureStop(); 206 int i_VideoCaptureEnableScreens(ComSafeArrayIn(BOOL, aScreens)); 204 int i_videoCaptureEnableScreens(ComSafeArrayIn(BOOL, aScreens)); 205 int i_videoCaptureSendAudio(const void *pvData, size_t cbData, uint64_t uTimestampMs); 206 int i_videoCaptureStart(); 207 void i_videoCaptureStop(); 207 208 #ifdef VBOX_WITH_VIDEOREC 208 209 void videoCaptureScreenChanged(unsigned uScreenId); -
trunk/src/VBox/Main/include/DrvAudioVideoRec.h
r65197 r65410 5 5 6 6 /* 7 * Copyright (C) 201 4-2017 Oracle Corporation7 * Copyright (C) 2017 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 37 37 static const PDMDRVREG DrvReg; 38 38 39 Console *getParent(void) { return m Parent; }39 Console *getParent(void) { return mpConsole; } 40 40 41 41 public: … … 49 49 struct DRVAUDIOVIDEOREC *mpDrv; 50 50 /** Pointer to parent. */ 51 Console * const mParent;51 Console * const mpConsole; 52 52 }; 53 53
Note:
See TracChangeset
for help on using the changeset viewer.