* Copyright (c) 2025 Huawei Device Co., Ltd.
* 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.
*/
#include <arpa/inet.h>
#include <sys/time.h>
#include <utility>
#include "vp9serverdec_sample.h"
#include <iostream>
#include "vpx_decoder_api.h"
#include "video_decoder.h"
using namespace OHOS;
using namespace OHOS::Media;
using namespace OHOS::MediaAVCodec;
using namespace OHOS::MediaAVCodec::Codec;
using namespace std;
namespace {
constexpr int32_t TIME = 12345;
constexpr int32_t MAX_SEND_FRAMES = 10;
}
void VDecServerSample::CallBack::OnError(AVCodecErrorType errorType, int32_t errorCode)
{
cout << "errorType: " << errorType << endl;
cout << "errorCode:" << errorCode << endl;
tester->Flush();
tester->Reset();
}
void VDecServerSample::CallBack::OnOutputFormatChanged(const Format &format)
{
tester->GetOutputFormat();
}
void VDecServerSample::CallBack::OnInputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer)
{
unique_lock<mutex> lock(tester->signal_->inMutex_);
tester->signal_->inIdxQueue_.push(index);
tester->signal_->inBufferQueue_.push(buffer);
tester->signal_->inCond_.notify_all();
}
void VDecServerSample::CallBack::OnOutputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer)
{
tester->codec_->ReleaseOutputBuffer(index);
}
VDecServerSample::~VDecServerSample()
{
if (codec_ != nullptr) {
codec_->Stop();
codec_->Release();
VideoDecoder *codec = static_cast<VideoDecoder*>(codec_.get());
codec->DecStrongRef(codec);
}
if (signal_ != nullptr) {
delete signal_;
signal_ = nullptr;
}
}
int32_t VDecServerSample::ConfigServerDecoder()
{
Format fmt;
fmt.PutIntValue(MediaDescriptionKey::MD_KEY_WIDTH, kWidth);
fmt.PutIntValue(MediaDescriptionKey::MD_KEY_HEIGHT, kHeight);
fmt.PutIntValue(MediaDescriptionKey::MD_KEY_PIXEL_FORMAT, kFormat);
fmt.PutDoubleValue(MediaDescriptionKey::MD_KEY_FRAME_RATE, kFormatRate);
fmt.PutIntValue(MediaDescriptionKey::MD_KEY_ROTATION_ANGLE, kAngle);
fmt.PutIntValue(MediaDescriptionKey::MD_KEY_DURATION, kRotation);
return codec_->Configure(fmt);
}
int32_t VDecServerSample::SetCallback()
{
shared_ptr<CallBack> cb = make_shared<CallBack>(this);
return codec_->SetCallback(cb);
}
void VDecServerSample::RunVideoServerDecoder()
{
CreateVpxDecoderByName("OH.Media.Codec.Decoder.Video.VP9", codec_);
if (codec_ == nullptr) {
cout << "VP9 Create failed" << endl;
return;
}
int32_t err;
Media::Meta codecInfo;
int32_t instanceid = 0;
codecInfo.SetData("av_codec_event_info_instance_id", instanceid);
err = codec_->Init(codecInfo);
if (err != AVCS_ERR_OK) {
cout << "VP9 decoder Init failed!" << endl;
return;
}
err = ConfigServerDecoder();
if (err != AVCS_ERR_OK) {
cout << "VP9 ConfigServerDecoder failed" << endl;
return;
}
signal_ = new VDecSignal();
if (signal_ == nullptr) {
cout << "VP9 Failed to new VDecSignal" << endl;
return;
}
err = SetCallback();
if (err != AVCS_ERR_OK) {
cout << "VP9 SetCallback failed" << endl;
return;
}
err = codec_->Start();
if (err != AVCS_ERR_OK) {
cout << "VP9 Start failed" << endl;
return;
}
isRunning_.store(true);
inputLoop_ = make_unique<thread>(&VDecServerSample::InputFunc, this);
if (inputLoop_ == nullptr) {
cout << "VP9 Failed to create input loop" << endl;
isRunning_.store(false);
}
}
void VDecServerSample::InputFunc()
{
while (sendFrameIndex < MAX_SEND_FRAMES) {
if (!isRunning_.load()) {
break;
}
unique_lock<mutex> lock(signal_->inMutex_);
signal_->inCond_.wait(lock, [this]() {
if (!isRunning_.load()) {
cout << "VP9 quit signal" << endl;
return true;
}
return signal_->inIdxQueue_.size() > 0;
});
if (!isRunning_.load()) {
break;
}
uint32_t index = signal_->inIdxQueue_.front();
auto buffer = signal_->inBufferQueue_.front();
signal_->inIdxQueue_.pop();
signal_->inBufferQueue_.pop();
lock.unlock();
if (buffer->memory_ == nullptr) {
isRunning_.store(false);
break;
}
uint8_t *bufferAddr = buffer->memory_->GetAddr();
if (memcpy_s(bufferAddr, buffer->memory_->GetCapacity(), fuzzData, fuzzSize) != EOK) {
break;
}
buffer->pts_ = TIME;
buffer->flag_ = 0;
buffer->memory_->SetOffset(0);
buffer->memory_->SetSize(fuzzSize);
int32_t err = codec_->QueueInputBuffer(index);
if (err != AVCS_ERR_OK) {
cout << "VP9 QueueInputBuffer fail" << endl;
break;
}
sendFrameIndex++;
}
}
void VDecServerSample::WaitForEos()
{
if (inputLoop_ && inputLoop_->joinable()) {
inputLoop_->join();
}
}
void VDecServerSample::GetOutputFormat()
{
Format fmt;
int32_t err = codec_->GetOutputFormat(fmt);
if (err != AVCS_ERR_OK) {
cout << "VP9 GetOutputFormat fail" << endl;
isRunning_.store(false);
signal_->inCond_.notify_all();
}
}
void VDecServerSample::Flush()
{
int32_t err = codec_->Flush();
if (err != AVCS_ERR_OK) {
cout << "VP9 Flush fail" << endl;
isRunning_.store(false);
signal_->inCond_.notify_all();
}
}
void VDecServerSample::Reset()
{
int32_t err = codec_->Reset();
if (err != AVCS_ERR_OK) {
cout << "VP9 Reset fail" << endl;
isRunning_.store(false);
signal_->inCond_.notify_all();
}
}