Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / webrtc / video_engine / vie_encryption_impl.h
1 /*
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
14 #include "webrtc/typedefs.h"
15 #include "webrtc/video_engine/include/vie_encryption.h"
16 #include "webrtc/video_engine/vie_ref_count.h"
17
18 namespace webrtc {
19
20 class ViESharedData;
21
22 class 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_