test_rtp.cpp 2.81 KB
Newer Older
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
3
 *
4
 * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
5
 *
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 15 16 17 18 19 20 21 22
 */

#include <map>
#include <iostream>
#include "Util/MD5.h"
#include "Util/File.h"
#include "Util/logger.h"
#include "Util/SSLBox.h"
#include "Util/util.h"
#include "Network/TcpServer.h"
#include "Common/config.h"
#include "Rtsp/RtspSession.h"
#include "Rtmp/RtmpSession.h"
#include "Http/HttpSession.h"
23
#include "Rtp/RtpSelector.h"
24 25 26 27 28

using namespace std;
using namespace toolkit;
using namespace mediakit;

29 30
#if defined(ENABLE_RTPPROXY)
static bool loadFile(const char *path){
xiongziliang committed
31
    FILE *fp = fopen(path, "rb");
32 33 34
    if (!fp) {
        WarnL << "open file failed:" << path;
        return false;
35
    }
36 37

    uint32_t timeStamp_last = 0;
xiongziliang committed
38
    uint16_t len;
39
    char rtp[2 * 1024];
xiongziliang committed
40
    struct sockaddr addr = {0};
xia-chu committed
41
    auto sock = Socket::createSocket();
xiongziliang committed
42 43 44
    size_t total_size = 0;
    while (true) {
        if (2 != fread(&len, 1, 2, fp)) {
45
            WarnL;
xiongziliang committed
46
            break;
47 48 49 50
        }
        len = ntohs(len);
        if (len < 12 || len > sizeof(rtp)) {
            WarnL << len;
xiongziliang committed
51
            break;
52 53
        }

xiongziliang committed
54
        if (len != fread(rtp, 1, len, fp)) {
55
            WarnL;
xiongziliang committed
56
            break;
57
        }
xiongziliang committed
58
        total_size += len;
59
        uint32_t timeStamp;
xiongziliang committed
60

xia-chu committed
61
        RtpSelector::Instance().inputRtp(sock, rtp, len, &addr, &timeStamp);
xiongziliang committed
62 63 64 65 66
        auto diff = timeStamp - timeStamp_last;
        if (diff > 0 && diff < 500) {
            usleep(diff * 1000);
        } else {
            usleep(1 * 1000);
67 68
        }
        timeStamp_last = timeStamp;
xiongziliang committed
69 70 71
    }
    WarnL << total_size / 1024 << "KB";
    fclose(fp);
72
    return true;
73
}
74
#endif//#if defined(ENABLE_RTPPROXY)
75

76 77 78 79 80 81 82 83 84 85 86 87 88
int main(int argc,char *argv[]) {
    //设置日志
    Logger::Instance().add(std::make_shared<ConsoleChannel>("ConsoleChannel"));
#if defined(ENABLE_RTPPROXY)
    //启动异步日志线程
    Logger::Instance().setWriter(std::make_shared<AsyncLogWriter>());
    loadIniConfig((exeDir() + "config.ini").data());
    TcpServer::Ptr rtspSrv(new TcpServer());
    TcpServer::Ptr rtmpSrv(new TcpServer());
    TcpServer::Ptr httpSrv(new TcpServer());
    rtspSrv->start<RtspSession>(554);//默认554
    rtmpSrv->start<RtmpSession>(1935);//默认1935
    httpSrv->start<HttpSession>(80);//默认80
89 90 91
    //此处选择是否导出调试文件
//    mINI::Instance()[RtpProxy::kDumpDir] = "/Users/xzl/Desktop/";

xiongziliang committed
92 93 94 95
    if (argc == 2)
      loadFile(argv[1]);
    else
      ErrorL << "parameter error.";
96 97 98 99 100
#else
    ErrorL << "please ENABLE_RTPPROXY and then test";
#endif//#if defined(ENABLE_RTPPROXY)
    return 0;
}
101 102