ZLMediaKit/src/Common/Factory.h

61 lines
1.4 KiB
C
Raw Normal View History

2018-10-24 15:49:51 +08:00
//
2018-10-24 09:23:57 +08:00
// Created by xzl on 2018/10/24.
//
#ifndef ZLMEDIAKIT_FACTORY_H
#define ZLMEDIAKIT_FACTORY_H
#include <string>
#include "Player/Track.h"
2018-10-24 18:09:54 +08:00
#include "RtspMuxer/RtspSdp.h"
2018-10-24 09:23:57 +08:00
using namespace std;
2018-10-24 17:17:55 +08:00
using namespace toolkit;
namespace mediakit{
2018-10-24 09:23:57 +08:00
class Factory {
public:
/**
* sdp生成Track对象
*/
static Track::Ptr getTrackBySdp(const string &sdp);
/**
* Track生成SDP对象
* @param track
* @return sdp对象
*/
static Sdp::Ptr getSdpByTrack(const Track::Ptr &track);
/**
* CodecId生成Rtp打包器
* @param codecId
* @param ui32Ssrc
* @param ui32MtuSize
* @param ui32SampleRate
* @param ui8PlayloadType
* @param ui8Interleaved
* @return
*/
static RtpCodec::Ptr getRtpEncoderById(CodecId codecId,
uint32_t ui32Ssrc,
uint32_t ui32MtuSize,
uint32_t ui32SampleRate,
uint8_t ui8PlayloadType,
uint8_t ui8Interleaved);
/**
* CodecId生成Rtp解包器
* @param codecId
* @param ui32SampleRate
* @return
*/
static RtpCodec::Ptr getRtpDecoderById(CodecId codecId, uint32_t ui32SampleRate);
};
2018-10-24 17:17:55 +08:00
}//namespace mediakit
2018-10-24 09:23:57 +08:00
#endif //ZLMEDIAKIT_FACTORY_H