OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "webrtc/video_frame.h" | 28 #include "webrtc/video_frame.h" |
29 | 29 |
30 namespace webrtc { | 30 namespace webrtc { |
31 | 31 |
32 class Clock; | 32 class Clock; |
33 class EncodedImageCallback; | 33 class EncodedImageCallback; |
34 // TODO(pbos): Remove VCMQMSettingsCallback completely. This might be done by | 34 // TODO(pbos): Remove VCMQMSettingsCallback completely. This might be done by |
35 // removing the VCM and use VideoSender/VideoReceiver as a public interface | 35 // removing the VCM and use VideoSender/VideoReceiver as a public interface |
36 // directly. | 36 // directly. |
37 class VCMQMSettingsCallback; | 37 class VCMQMSettingsCallback; |
38 class VideoBitrateAllocator; | |
39 class VideoEncoder; | 38 class VideoEncoder; |
40 class VideoDecoder; | 39 class VideoDecoder; |
41 struct CodecSpecificInfo; | 40 struct CodecSpecificInfo; |
42 | 41 |
43 class EventFactory { | 42 class EventFactory { |
44 public: | 43 public: |
45 virtual ~EventFactory() {} | 44 virtual ~EventFactory() {} |
46 | 45 |
47 virtual EventWrapper* CreateEvent() = 0; | 46 virtual EventWrapper* CreateEvent() = 0; |
48 }; | 47 }; |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 | 468 |
470 virtual void RegisterPostEncodeImageCallback( | 469 virtual void RegisterPostEncodeImageCallback( |
471 EncodedImageCallback* post_encode_callback) = 0; | 470 EncodedImageCallback* post_encode_callback) = 0; |
472 // Releases pending decode calls, permitting faster thread shutdown. | 471 // Releases pending decode calls, permitting faster thread shutdown. |
473 virtual void TriggerDecoderShutdown() = 0; | 472 virtual void TriggerDecoderShutdown() = 0; |
474 }; | 473 }; |
475 | 474 |
476 } // namespace webrtc | 475 } // namespace webrtc |
477 | 476 |
478 #endif // WEBRTC_MODULES_VIDEO_CODING_INCLUDE_VIDEO_CODING_H_ | 477 #endif // WEBRTC_MODULES_VIDEO_CODING_INCLUDE_VIDEO_CODING_H_ |
OLD | NEW |