Amy Zhang | bf68a16 | 2020-11-23 17:42:40 -0800 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright 2020 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 | #define LOG_TAG "FrontendClient" |
| 18 | |
| 19 | #include <android-base/logging.h> |
| 20 | #include <utils/Log.h> |
| 21 | |
| 22 | #include "FrontendClient.h" |
| 23 | |
| 24 | namespace android { |
| 25 | |
| 26 | FrontendClient::FrontendClient(shared_ptr<ITunerFrontend> tunerFrontend) { |
| 27 | mTunerFrontend = tunerFrontend; |
| 28 | } |
| 29 | |
| 30 | FrontendClient::~FrontendClient() { |
| 31 | mTunerFrontend = NULL; |
| 32 | mFrontend = NULL; |
| 33 | mFrontend_1_1 = NULL; |
| 34 | } |
| 35 | |
| 36 | void FrontendClient::setHidlFrontend(sp<IFrontend> frontend) { |
| 37 | mFrontend = frontend; |
| 38 | mFrontend_1_1 = ::android::hardware::tv::tuner::V1_1::IFrontend::castFrom(mFrontend); |
| 39 | } |
| 40 | } |