OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. |
| 3 * |
| 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 |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 #ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_OBJC_CODEC_H264_TEST_H_ |
| 12 #define WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_OBJC_CODEC_H264_TEST_H_ |
| 13 |
| 14 #include "webrtc/media/engine/webrtcvideodecoderfactory.h" |
| 15 #include "webrtc/media/engine/webrtcvideoencoderfactory.h" |
| 16 |
| 17 namespace webrtc { |
| 18 |
| 19 /** Wrap ObjCVideoEncoderFactory in a header that can be used from pure C++ */ |
| 20 class ObjCVideoEncoderFactoryWrapper { |
| 21 public: |
| 22 ObjCVideoEncoderFactoryWrapper(); |
| 23 ~ObjCVideoEncoderFactoryWrapper(); |
| 24 |
| 25 cricket::WebRtcVideoEncoderFactory* wrapped_encoder_factory() const; |
| 26 |
| 27 private: |
| 28 cricket::WebRtcVideoEncoderFactory* encoder_factory_; |
| 29 }; |
| 30 |
| 31 /** Wrap ObjCVideoDecoderFactory in a header that can be used from pure C++ */ |
| 32 class ObjCVideoDecoderFactoryWrapper { |
| 33 public: |
| 34 ObjCVideoDecoderFactoryWrapper(); |
| 35 ~ObjCVideoDecoderFactoryWrapper(); |
| 36 |
| 37 cricket::WebRtcVideoDecoderFactory* wrapped_decoder_factory() const; |
| 38 |
| 39 private: |
| 40 cricket::WebRtcVideoDecoderFactory* decoder_factory_; |
| 41 }; |
| 42 |
| 43 } // namespace webrtc |
| 44 |
| 45 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_OBJC_CODEC_H264_TEST_H_ |
OLD | NEW |