| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_VIDEO_SOURCE_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_VIDEO_SOURCE_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_VIDEO_SOURCE_H_ | 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_VIDEO_SOURCE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 105 |
| 106 // An implementation must start capture frames using the resolution in | 106 // An implementation must start capture frames using the resolution in |
| 107 // |params|. When the source has started or the source failed to start | 107 // |params|. When the source has started or the source failed to start |
| 108 // OnStartDone must be called. An implementation must call | 108 // OnStartDone must be called. An implementation must call |
| 109 // invoke |frame_callback| on the IO thread with the captured frames. | 109 // invoke |frame_callback| on the IO thread with the captured frames. |
| 110 // TODO(perkj): pass a VideoCaptureFormats instead of VideoCaptureParams for | 110 // TODO(perkj): pass a VideoCaptureFormats instead of VideoCaptureParams for |
| 111 // subclasses to customize. | 111 // subclasses to customize. |
| 112 virtual void StartSourceImpl( | 112 virtual void StartSourceImpl( |
| 113 const media::VideoCaptureParams& params, | 113 const media::VideoCaptureParams& params, |
| 114 const VideoCaptureDeliverFrameCB& frame_callback) = 0; | 114 const VideoCaptureDeliverFrameCB& frame_callback) = 0; |
| 115 void OnStartDone(bool success); | 115 void OnStartDone(MediaStreamRequestResult result); |
| 116 | 116 |
| 117 // An implementation must immediately stop capture video frames and must not | 117 // An implementation must immediately stop capture video frames and must not |
| 118 // call OnSupportedFormats after this method has been called. After this | 118 // call OnSupportedFormats after this method has been called. After this |
| 119 // method has been called, MediaStreamVideoSource may be deleted. | 119 // method has been called, MediaStreamVideoSource may be deleted. |
| 120 virtual void StopSourceImpl() = 0; | 120 virtual void StopSourceImpl() = 0; |
| 121 | 121 |
| 122 enum State { | 122 enum State { |
| 123 NEW, | 123 NEW, |
| 124 RETRIEVING_CAPABILITIES, | 124 RETRIEVING_CAPABILITIES, |
| 125 STARTING, | 125 STARTING, |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 176 |
| 177 // NOTE: Weak pointers must be invalidated before all other member variables. | 177 // NOTE: Weak pointers must be invalidated before all other member variables. |
| 178 base::WeakPtrFactory<MediaStreamVideoSource> weak_factory_; | 178 base::WeakPtrFactory<MediaStreamVideoSource> weak_factory_; |
| 179 | 179 |
| 180 DISALLOW_COPY_AND_ASSIGN(MediaStreamVideoSource); | 180 DISALLOW_COPY_AND_ASSIGN(MediaStreamVideoSource); |
| 181 }; | 181 }; |
| 182 | 182 |
| 183 } // namespace content | 183 } // namespace content |
| 184 | 184 |
| 185 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_VIDEO_SOURCE_H_ | 185 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_VIDEO_SOURCE_H_ |
| OLD | NEW |