1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.2 KiB

/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include "RKSVEP.h"
#include "GpuWorker.h"
#include "worker.h"
#include "Buffer.h"
#include "BufferQueue.h"
#include "SvepType.h"
#include <map>
#include <queue>
#include <memory>
namespace android {
class NpuWorker : public Worker {
public:
NpuWorker();
~NpuWorker() override;
SvepError Init(bool async);
int InitResource();
void Queue(std::shared_ptr<SvepBackendContext> abCtx);
protected:
void Routine() override;
// int WaitAllFence(std::shared_ptr<SvepBackendContext> abCtx);
// int SignalFinishFence(std::shared_ptr<SvepBackendContext> abCtx);
int SvepRun(std::shared_ptr<SvepBackendContext> abCtx);
RKSVEPBUFFERHANDLE SvepImportBuffer(std::shared_ptr<SvepBackendContext> abCtx);
int SvepReleaseBuffer(std::shared_ptr<SvepBackendContext> abCtx);
// SvepOsd
int SvepUpdateOsd(std::shared_ptr<SvepBackendContext> abCtx);
int Run(std::shared_ptr<SvepBackendContext> abCtx, RKSVEPBUFFERHANDLE bufferHandle);
int ContrastMode(std::shared_ptr<SvepBackendContext> abCtx);
int InitSubtitle();
int OsdSubtitle(std::shared_ptr<SvepBackendContext> abCtx);
private:
bool mInitSucess_;
bool mInitAsync_;
std::queue<std::shared_ptr<SvepBackendContext>> abCtxQueue_;
char cFenceName_[50];
int iTimelineFd_;
int iTimeline_;
int iCurrentTimeline_;
RKSVEP *pVDlss360_;
RKSVEP *pVDlss540_;
RKSVEP *pVDlss720_;
RKSVEP *pVDlss1080_;
RKSVEP *pVDlss2160_;
GpuWorker GpuWorker_;
std::map<uint64_t, RKSVEPBUFFERHANDLE> mapVdlssHandles_;
SvepMode mLastMode_ = UN_SUPPORT;
RKSVEPBUFFER npuInitBuffer_;
SvepOsd *svepOsd_;
};
} //namespace android