* Copyright (C) 2023 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_INNER_SAMPLE_H
#define VIDEODEC_INNER_SAMPLE_H
#include <atomic>
#include <cstdio>
#include <fstream>
#include <iostream>
#include <mutex>
#include <queue>
#include <string>
#include <thread>
#include <unordered_map>
#include <unistd.h>
#include "avcodec_video_decoder.h"
#include "avcodec_errors.h"
#include "meta/format.h"
#include "buffer/avsharedmemory.h"
#include "nocopyable.h"
#include "securec.h"
#include "window.h"
#include "media_description.h"
#include "av_common.h"
#include "avcodec_common.h"
namespace OHOS {
namespace MediaAVCodec {
class VDecInnerSignal {
public:
std::mutex inMutex_;
std::mutex outMutex_;
std::condition_variable inCond_;
std::condition_variable outCond_;
std::queue<uint32_t> inIdxQueue_;
std::queue<uint32_t> outIdxQueue_;
std::queue<AVCodecBufferInfo> infoQueue_;
std::queue<AVCodecBufferFlag> flagQueue_;
std::queue<std::shared_ptr<AVSharedMemory>> inBufferQueue_;
std::queue<std::shared_ptr<AVSharedMemory>> outBufferQueue_;
};
class VDecInnerCallback : public AVCodecCallback, public NoCopyable {
public:
explicit VDecInnerCallback(std::shared_ptr<VDecInnerSignal> signal);
~VDecInnerCallback() = default;
void OnError(AVCodecErrorType errorType, int32_t errorCode) override;
void OnOutputFormatChanged(const Format& format) override;
void OnInputBufferAvailable(uint32_t index, std::shared_ptr<AVSharedMemory> buffer) override;
void OnOutputBufferAvailable(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag,
std::shared_ptr<AVSharedMemory> buffer) override;
private:
std::shared_ptr<VDecInnerSignal> innersignal_;
};
class VDecNdkInnerSample : public NoCopyable {
public:
VDecNdkInnerSample() = default;
~VDecNdkInnerSample();
int64_t GetSystemTimeUs();
int32_t CreateByMime(const std::string &mime);
int32_t CreateByName(const std::string &name);
int32_t CreateVideoDecoder(const std::string &name);
int32_t Configure();
int32_t Prepare();
int32_t Start();
int32_t Stop();
int32_t Flush();
int32_t Reset();
int32_t Release();
int32_t QueueInputBuffer(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag);
int32_t GetOutputFormat(Format &format);
int32_t ReleaseOutputBuffer(uint32_t index);
int32_t SetParameter(const Format &format);
int32_t SetCallback();
int32_t StartVideoDecoder();
int32_t RunVideoDecoder(const std::string &codeName);
int32_t ReadData(std::shared_ptr<AVSharedMemory> buffer, uint32_t index);
int32_t SendData(uint32_t bufferSize, uint32_t index, std::shared_ptr<AVSharedMemory> buffer);
int32_t StateEOS();
void CopyStartCode(uint8_t *frameBuffer, uint32_t bufferSize, AVCodecBufferInfo &info, AVCodecBufferFlag &flag);
void RepeatStartBeforeEOS();
void SetEOS(uint32_t index);
void WaitForEOS();
void OpenFileFail();
void InputFunc();
void OutputFunc();
void ReleaseProcess();
void ProcessOutputData(uint32_t index, AVCodecBufferInfo info, std::shared_ptr<AVSharedMemory> buffer, FILE *file);
void FlushBuffer();
void StopInloop();
void StopOutloop();
void ReleaseInFile();
bool MdCompare(unsigned char *buffer, int len, const char *source[]);
const char *INP_DIR = "/data/test/media/1920_1080_10_30Mb.h264";
const char *OUT_DIR = "/data/test/media/VDecTest.yuv";
uint32_t DEFAULT_WIDTH = 1920;
uint32_t DEFAULT_HEIGHT = 1080;
uint32_t DEFAULT_FRAME_RATE = 30;
uint32_t DEFAULT_ROTATION = 0;
uint32_t DEFAULT_PIXEL_FORMAT = 1;
uint32_t REPEAT_START_STOP_BEFORE_EOS = 0;
uint32_t REPEAT_START_FLUSH_BEFORE_EOS = 0;
bool SF_OUTPUT = false;
bool BEFORE_EOS_INPUT = false;
bool BEFORE_EOS_INPUT_INPUT = false;
bool AFTER_EOS_DESTORY_CODEC = true;
uint32_t errCount = 0;
uint32_t outCount = 0;
uint32_t frameCount = 0;
bool sleepOnFPS = false;
bool repeatRun = false;
const char *fileSourcesha256[64] = {"27", "6D", "A2", "D4", "18", "21", "A5", "CD", "50", "F6", "DD", "CA", "46",
"32", "C3", "FE", "58", "FC", "BC", "51", "FD", "70", "C7", "D4", "E7", "4D",
"5C", "76", "E7", "71", "8A", "B3", "C0", "51", "84", "0A", "FA", "AF", "FA",
"DC", "7B", "C5", "26", "D1", "9A", "CA", "00", "DE", "FC", "C8", "4E", "34",
"C5", "9A", "43", "59", "85", "DC", "AC", "97", "A3", "FB", "23", "51"};
private:
std::atomic<bool> isRunning_ { false };
std::unique_ptr<std::ifstream> inFile_;
std::unique_ptr<std::thread> inputLoop_;
std::unique_ptr<std::thread> outputLoop_;
std::shared_ptr<AVCodecVideoDecoder> vdec_;
std::shared_ptr<VDecInnerSignal> signal_;
std::shared_ptr<VDecInnerCallback> cb_;
};
}
}
#endif