* 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.
*/
#ifndef VIDEODEC_SAMPLE_H
#define VIDEODEC_SAMPLE_H
#include <atomic>
#include <cstdio>
#include <fstream>
#include <iostream>
#include <mutex>
#include <queue>
#include <string>
#include <thread>
#include <unistd.h>
#include <unordered_map>
#include "native_avcodec_videodecoder.h"
#include "native_averrors.h"
#include "native_avformat.h"
#include "native_avmemory.h"
#include "nocopyable.h"
#include "securec.h"
#include "window.h"
#include "iconsumer_surface.h"
namespace OHOS {
namespace Media {
class TestConsumerListener : public IBufferConsumerListener {
public:
TestConsumerListener(sptr<Surface> cs, std::string_view name);
~TestConsumerListener();
void OnBufferAvailable() override;
private:
int64_t timestamp_ = 0;
OHOS::Rect damage_ = {};
sptr<Surface> cs_ = nullptr;
std::unique_ptr<std::ofstream> outDir_;
};
class VDecSignal {
public:
std::mutex inMutex_;
std::mutex outMutex_;
std::condition_variable inCond_;
std::condition_variable outCond_;
std::queue<uint32_t> inQueue_;
std::queue<uint32_t> outQueue_;
std::queue<OH_AVCodecBufferAttr> attrQueue_;
std::queue<OH_AVMemory *> inBufferQueue_;
std::queue<OH_AVMemory *> outBufferQueue_;
};
class VDecFuzzSample : public NoCopyable {
public:
VDecFuzzSample() = default;
~VDecFuzzSample();
int32_t SetParameter();
int32_t ProceFunc();
void PrepareResource();
void RunVideoDec();
void FormatChangeInputFunc();
void OutputFunc();
int32_t SwitchSurface();
int32_t CheckCodecStatus();
bool isSurfaceMode = true;
protected:
std::atomic<bool> isRunning_ = false;
std::unique_ptr<std::ifstream> testFile_;
std::unique_ptr<std::ofstream> outFile_;
std::unique_ptr<std::thread> inputLoop_;
std::unique_ptr<std::thread> outputLoop_;
struct OH_AVCodecAsyncCallback cb_;
std::shared_ptr<VDecSignal> signal_ = nullptr;
OH_AVCodec *videoDec_ = nullptr;
OH_AVFormat *format_ = nullptr;
bool isFirstFrame_ = true;
uint32_t frameCount_ = 0;
sptr<Surface> surface_ = nullptr;
};
}
}
#endif