MediaInfAi.hpp
1
//
2
// Created by xiong on 2023/9/12.
3
//
4
5
#ifndef EMX_MediaInfAi_HPP
6
#define EMX_MediaInfAi_HPP
7
8
#include "media/common/MediaTypedef.hpp"
9
namespace
Emx
{
13
class
MediaInfAi
{
14
public
:
20
virtual
ErrCodeE
GetVersion
(std::string &version) = 0;
27
virtual
ErrCodeE
Ctrl
(
const
Json::Value &in, Json::Value &out) = 0;
28
};
30
}
// namespace Emx
31
32
#endif
//EMX_MediaInfAi_HPP
Emx::MediaInfAi
Definition:
MediaInfAi.hpp:13
Emx::MediaInfAi::GetVersion
virtual ErrCodeE GetVersion(std::string &version)=0
获取Ai插件版本
Emx::MediaInfAi::Ctrl
virtual ErrCodeE Ctrl(const Json::Value &in, Json::Value &out)=0
通用算法控制接口
Emx::ErrCodeE
ErrCodeE
错误码定义
Definition:
EmxTypeDef.hpp:29
Emx
Definition:
EmxGpio.hpp:10