Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: webrtc/modules/video_coding/codecs/test/objc_codec_h264_test.h

Issue 2978623002: Implement H264 codec in Objective-C classes. (Closed)
Patch Set: Fix test after rebase. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/DEPS ('k') | webrtc/modules/video_coding/codecs/test/objc_codec_h264_test.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698