ZLMediaKit/src/Extension/Factory.h

121 lines
3.8 KiB
C++
Raw Normal View History

2018-10-25 10:00:17 +08:00
/*
2023-12-09 16:23:51 +08:00
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
2018-10-25 10:00:17 +08:00
*
2023-12-09 16:23:51 +08:00
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
2018-10-25 10:00:17 +08:00
*
2023-12-09 16:23:51 +08:00
* Use of this source code is governed by MIT-like license that can be found in the
2020-04-04 20:30:09 +08:00
* LICENSE file in the root of the source tree. All contributing project authors
* may be found in the AUTHORS file in the root of the source tree.
2018-10-25 10:00:17 +08:00
*/
2018-10-24 09:23:57 +08:00
#ifndef ZLMEDIAKIT_FACTORY_H
#define ZLMEDIAKIT_FACTORY_H
#include <string>
2018-10-25 10:00:17 +08:00
#include "Rtmp/amf.h"
2018-10-30 14:59:42 +08:00
#include "Extension/Track.h"
2023-12-09 16:23:51 +08:00
#include "Extension/Frame.h"
2019-06-28 17:30:13 +08:00
#include "Rtsp/RtpCodec.h"
#include "Rtmp/RtmpCodec.h"
2023-12-10 10:21:40 +08:00
#include "Util/onceToken.h"
2018-10-24 09:23:57 +08:00
2023-12-10 10:21:40 +08:00
#define REGISTER_STATIC_VAR_INNER(var_name, line) var_name##_##line##__
#define REGISTER_STATIC_VAR(var_name, line) REGISTER_STATIC_VAR_INNER(var_name, line)
#define REGISTER_CODEC(plugin) \
static toolkit::onceToken REGISTER_STATIC_VAR(s_token, __LINE__) ([]() { \
Factory::registerPlugin(plugin); \
});
namespace mediakit {
struct CodecPlugin {
CodecId (*getCodec)();
Track::Ptr (*getTrackByCodecId)(int sample_rate, int channels, int sample_bit);
Track::Ptr (*getTrackBySdp)(const SdpTrack::Ptr &track);
RtpCodec::Ptr (*getRtpEncoderByCodecId)(uint8_t pt);
RtpCodec::Ptr (*getRtpDecoderByCodecId)();
RtmpCodec::Ptr (*getRtmpEncoderByTrack)(const Track::Ptr &track);
RtmpCodec::Ptr (*getRtmpDecoderByTrack)(const Track::Ptr &track);
Frame::Ptr (*getFrameFromPtr)(const char *data, size_t bytes, uint64_t dts, uint64_t pts);
};
2018-10-24 09:23:57 +08:00
class Factory {
public:
2023-12-10 10:21:40 +08:00
/**
* 线
*/
static void registerPlugin(const CodecPlugin &plugin);
/**
* codec_id track
* @param codecId id
* @param sample_rate 90000
* @param channels
* @param sample_bit
*/
static Track::Ptr getTrackByCodecId(CodecId codecId, int sample_rate = 0, int channels = 0, int sample_bit = 0);
2018-10-25 09:15:46 +08:00
////////////////////////////////rtsp相关//////////////////////////////////
/**
* sdp生成Track对象
*/
2018-10-26 09:56:29 +08:00
static Track::Ptr getTrackBySdp(const SdpTrack::Ptr &track);
2018-10-24 09:23:57 +08:00
/**
* c api Track生成具体Track对象
*/
static Track::Ptr getTrackByAbstractTrack(const Track::Ptr& track);
/**
* codec id生成rtp编码器
* @param codec_id id
* @param pt rtp payload type
*/
2023-12-09 16:23:51 +08:00
static RtpCodec::Ptr getRtpEncoderByCodecId(CodecId codec_id, uint8_t pt);
2018-10-24 09:23:57 +08:00
/**
2019-01-24 12:21:29 +08:00
* Track生成Rtp解包器
2018-10-24 09:23:57 +08:00
*/
2023-12-10 10:21:40 +08:00
static RtpCodec::Ptr getRtpDecoderByCodecId(CodecId codec);
2018-10-24 22:03:17 +08:00
2018-10-25 09:15:46 +08:00
////////////////////////////////rtmp相关//////////////////////////////////
2018-10-24 22:03:17 +08:00
2018-10-25 09:15:46 +08:00
/**
* amf对象获取视频相应的Track
* @param amf rtmp metadata中的videocodecid的值
2018-10-25 09:15:46 +08:00
*/
static Track::Ptr getVideoTrackByAmf(const AMFValue &amf);
/**
* amf对象获取音频相应的Track
* @param amf rtmp metadata中的audiocodecid的值
*/
2020-04-18 22:13:11 +08:00
static Track::Ptr getAudioTrackByAmf(const AMFValue& amf, int sample_rate, int channels, int sample_bit);
2018-10-25 09:15:46 +08:00
/**
2023-12-09 16:23:51 +08:00
* Track获取Rtmp的编码器
* @param track
2018-10-25 09:15:46 +08:00
*/
2023-12-09 16:23:51 +08:00
static RtmpCodec::Ptr getRtmpEncoderByTrack(const Track::Ptr &track);
/**
* Track获取Rtmp的解码器
* @param track
*/
static RtmpCodec::Ptr getRtmpDecoderByTrack(const Track::Ptr &track);
2018-10-25 14:49:47 +08:00
/**
* codecId获取rtmp的codec描述
*/
static AMFValue getAmfByCodecId(CodecId codecId);
2023-12-09 16:23:51 +08:00
static Frame::Ptr getFrameFromPtr(CodecId codec, const char *data, size_t size, uint64_t dts, uint64_t pts);
static Frame::Ptr getFrameFromBuffer(CodecId codec, toolkit::Buffer::Ptr data, uint64_t dts, uint64_t pts);
2018-10-24 09:23:57 +08:00
};
2018-10-24 17:17:55 +08:00
}//namespace mediakit
2018-10-24 09:23:57 +08:00
#endif //ZLMEDIAKIT_FACTORY_H