blob: ddf2c1db498a18cfb910aeabc96fe207abeb0c06 [file] [log] [blame]
Hongguang4092f2f2021-07-08 18:49:12 -07001/*
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
23using namespace std;
24
25namespace aidl {
26namespace android {
27namespace hardware {
28namespace tv {
29namespace tuner {
30
31class 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