Factory.h 2.23 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
    /**
xiongziliang committed
29 30 31
     * 根据CodecId获取Track,该Track的ready()状态一般都为false
     * @param codecId 编解码器id
     * @return
32
     */
33 34
    static Track::Ptr getTrackByCodecId(CodecId codecId);

xiongziliang committed
35 36 37 38
    ////////////////////////////////rtsp相关//////////////////////////////////
    /**
     * 根据sdp生成Track对象
     */
xiongziliang committed
39
    static Track::Ptr getTrackBySdp(const SdpTrack::Ptr &track);
40 41

    /**
xiongziliang committed
42 43
     * 根据sdp生成rtp编码器
     * @param sdp sdp对象
44 45
     * @return
     */
xiongziliang committed
46
    static RtpCodec::Ptr getRtpEncoderBySdp(const Sdp::Ptr &sdp);
47 48

    /**
49 50
     * 根据Track生成Rtp解包器
     * @param track
51 52
     * @return
     */
53
    static RtpCodec::Ptr getRtpDecoderByTrack(const Track::Ptr &track);
xiongziliang committed
54 55


xiongziliang committed
56
    ////////////////////////////////rtmp相关//////////////////////////////////
xiongziliang committed
57

xiongziliang committed
58 59
    /**
     * 根据amf对象获取响应的Track
60
     * @param amf rtmp metadata中的videocodecid或audiocodecid的值
xiongziliang committed
61 62
     * @return
     */
xiongziliang committed
63
    static Track::Ptr getTrackByAmf(const AMFValue &amf);
xiongziliang committed
64 65 66

    /**
     * 根据amf对象获取相应的CodecId
67
     * @param val rtmp metadata中的videocodecid或audiocodecid的值
xiongziliang committed
68 69
     * @return
     */
xiongziliang committed
70
    static CodecId getCodecIdByAmf(const AMFValue &val);
xiongziliang committed
71 72

    /**
73 74
     * 根据Track获取Rtmp的编解码器
     * @param track 媒体描述对象
xiongziliang committed
75 76
     * @return
     */
77
    static RtmpCodec::Ptr getRtmpCodecByTrack(const Track::Ptr &track);
78 79 80 81 82 83 84 85


    /**
     * 根据codecId获取rtmp的codec描述
     * @param codecId
     * @return
     */
    static AMFValue getAmfByCodecId(CodecId codecId);
86 87
};

xiongziliang committed
88
}//namespace mediakit
89 90

#endif //ZLMEDIAKIT_FACTORY_H