Factory.h 2.01 KB
Newer Older
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
xiongziliang committed
6 7 8
 * Use of this source code is governed by MIT license that can be found in the
 * 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.
9
 */
10 11 12 13 14

#ifndef ZLMEDIAKIT_FACTORY_H
#define ZLMEDIAKIT_FACTORY_H

#include <string>
15
#include "Rtmp/amf.h"
16
#include "Extension/Track.h"
xiongziliang committed
17 18
#include "Rtsp/RtpCodec.h"
#include "Rtmp/RtmpCodec.h"
19 20

using namespace std;
xiongziliang committed
21 22 23
using namespace toolkit;

namespace mediakit{
24 25 26

class Factory {
public:
xiongziliang committed
27 28 29 30
    ////////////////////////////////rtsp相关//////////////////////////////////
    /**
     * 根据sdp生成Track对象
     */
xiongziliang committed
31
    static Track::Ptr getTrackBySdp(const SdpTrack::Ptr &track);
32 33

    /**
xiongziliang committed
34 35
     * 根据sdp生成rtp编码器
     * @param sdp sdp对象
36
     */
xiongziliang committed
37
    static RtpCodec::Ptr getRtpEncoderBySdp(const Sdp::Ptr &sdp);
38 39

    /**
40
     * 根据Track生成Rtp解包器
41
     */
42
    static RtpCodec::Ptr getRtpDecoderByTrack(const Track::Ptr &track);
xiongziliang committed
43 44


xiongziliang committed
45
    ////////////////////////////////rtmp相关//////////////////////////////////
xiongziliang committed
46

xiongziliang committed
47
    /**
48 49
     * 根据amf对象获取视频相应的Track
     * @param amf rtmp metadata中的videocodecid的值
xiongziliang committed
50
     */
51 52 53 54 55 56
    static Track::Ptr getVideoTrackByAmf(const AMFValue &amf);

    /**
     * 根据amf对象获取音频相应的Track
     * @param amf rtmp metadata中的audiocodecid的值
     */
xiongziliang committed
57
    static Track::Ptr getAudioTrackByAmf(const AMFValue& amf, int sample_rate, int channels, int sample_bit);
xiongziliang committed
58 59

    /**
60 61
     * 根据Track获取Rtmp的编解码器
     * @param track 媒体描述对象
62
     * @param is_encode 是否为编码器还是解码器
xiongziliang committed
63
     */
64
    static RtmpCodec::Ptr getRtmpCodecByTrack(const Track::Ptr &track, bool is_encode);
65 66 67 68 69

    /**
     * 根据codecId获取rtmp的codec描述
     */
    static AMFValue getAmfByCodecId(CodecId codecId);
70 71
};

xiongziliang committed
72
}//namespace mediakit
73 74

#endif //ZLMEDIAKIT_FACTORY_H