Searched refs:mVideoManager (Results 1 – 4 of 4) sorted by relevance
/development/samples/VirtualDeviceManager/client/src/com/example/android/vdmdemo/client/ |
D | DisplayController.java | 33 private VideoManager mVideoManager = null; field in DisplayController 54 if (mVideoManager != null) { in close() 55 mVideoManager.stop(); in close() 60 if (mVideoManager == null) { in pause() 63 mVideoManager.stop(); in pause() 64 mVideoManager = null; in pause() 78 if (mVideoManager != null) { in setSurface() 79 mVideoManager.stop(); in setSurface() 81 mVideoManager = VideoManager.createDisplayDecoder(mDisplayId, mRemoteIo); in setSurface() 82 mVideoManager.startDecoding(surface, width, height); in setSurface()
|
D | VirtualCameraController.java | 194 private final VideoManager mVideoManager; field in VirtualCameraController.CameraStreamer 213 mSurface = mVideoManager.createInputSurface(CAMERA_WIDTH, CAMERA_HEIGHT, 215 mVideoManager.startEncoding(); 280 mVideoManager = VideoManager.createCameraEncoder(cameraId, mRemoteIo, false); in CameraStreamer() 290 mVideoManager.stop(); in stop()
|
/development/samples/VirtualDeviceManager/host/src/com/example/android/vdmdemo/host/ |
D | RemoteCameraManager.java | 87 private VideoManager mVideoManager; field in RemoteCameraManager.RemoteCamera 99 if (mVideoManager != null) { in onStreamConfigured() 100 mVideoManager.stop(); in onStreamConfigured() 102 mVideoManager = VideoManager.createCameraDecoder(mRemoteCameraId, mRemoteIo); in onStreamConfigured() 103 mVideoManager.startDecoding(surface, width, height); in onStreamConfigured() 118 if (mVideoManager != null) { in onStreamClosed() 119 mVideoManager.stop(); in onStreamClosed() 120 mVideoManager = null; in onStreamClosed()
|
D | RemoteDisplay.java | 107 private VideoManager mVideoManager; field in RemoteDisplay 185 if (mVideoManager != null) { in reset() 186 mVideoManager.stop(); in reset() 188 mVideoManager = VideoManager.createDisplayEncoder(mRemoteDisplayId, mRemoteIo, in reset() 190 Surface surface = mVideoManager.createInputSurface(mWidth, mHeight, DISPLAY_FPS); in reset() 208 mVideoManager.startEncoding(); in reset() 262 if (mVideoManager != null) { in processRemoteEvent() 263 mVideoManager.stop(); in processRemoteEvent() 264 mVideoManager = null; in processRemoteEvent() 511 if (mVideoManager != null) { [all …]
|