• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2021 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #pragma once
18 
19 #include <aidl/android/hardware/tv/tuner/BnDescrambler.h>
20 #include <aidl/android/hardware/tv/tuner/ITuner.h>
21 #include <inttypes.h>
22 
23 using namespace std;
24 
25 namespace aidl {
26 namespace android {
27 namespace hardware {
28 namespace tv {
29 namespace tuner {
30 
31 class Descrambler : public BnDescrambler {
32   public:
33     Descrambler();
34 
35     ::ndk::ScopedAStatus setDemuxSource(int32_t in_demuxId) override;
36     ::ndk::ScopedAStatus setKeyToken(const std::vector<uint8_t>& in_keyToken) override;
37     ::ndk::ScopedAStatus addPid(const DemuxPid& in_pid,
38                                 const std::shared_ptr<IFilter>& in_optionalSourceFilter) override;
39     ::ndk::ScopedAStatus removePid(
40             const DemuxPid& in_pid,
41             const std::shared_ptr<IFilter>& in_optionalSourceFilter) override;
42     ::ndk::ScopedAStatus close() override;
43 
44   private:
45     virtual ~Descrambler();
46     int32_t mSourceDemuxId;
47     bool mDemuxSet = false;
48 };
49 
50 }  // namespace tuner
51 }  // namespace tv
52 }  // namespace hardware
53 }  // namespace android
54 }  // namespace aidl
55