blob: 96779e39523fbafe576d261e8f27c2da1ed77457 [file] [log] [blame]
andrew@webrtc.orgb015cbe2012-10-22 18:19:231/*
2 * Copyright (c) 2012 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_VIDEO_ENGINE_VIE_ENCRYPTION_IMPL_H_
12#define WEBRTC_VIDEO_ENGINE_VIE_ENCRYPTION_IMPL_H_
13
pbos@webrtc.org281cff82013-05-17 13:44:4814#include "webrtc/typedefs.h"
15#include "webrtc/video_engine/include/vie_encryption.h"
16#include "webrtc/video_engine/vie_ref_count.h"
andrew@webrtc.orgb015cbe2012-10-22 18:19:2317
18namespace webrtc {
19
20class ViESharedData;
21
22class ViEEncryptionImpl
23 : public ViEEncryption,
24 public ViERefCount {
25 public:
26 virtual int Release();
27
28 // Implements ViEEncryption.
29 virtual int RegisterExternalEncryption(const int video_channel,
30 Encryption& encryption);
31 virtual int DeregisterExternalEncryption(const int video_channel);
32
33 protected:
34 explicit ViEEncryptionImpl(ViESharedData* shared_data);
35 virtual ~ViEEncryptionImpl();
36
37 private:
38 ViESharedData* shared_data_;
39};
40
41} // namespace webrtc
42
43#endif // WEBRTC_VIDEO_ENGINE_VIE_ENCRYPTION_IMPL_H_