test_rtcp_fci.cpp 666 Bytes
Newer Older
xia-chu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Copyright (c) 2016 The ZLToolKit project authors. All Rights Reserved.
 *
 * This file is part of ZLToolKit(https://github.com/xia-chu/ZLToolKit).
 *
 * 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.
 */

#include <iostream>
#include "Util/logger.h"
#include "Rtcp/RtcpFCI.h"
using namespace std;
using namespace toolkit;
using namespace mediakit;

xia-chu committed
18
extern void testFCI();
xia-chu committed
19

xia-chu committed
20 21
int main() {
    Logger::Instance().add(std::make_shared<ConsoleChannel>());
xia-chu committed
22

xia-chu committed
23
    testFCI();
xia-chu committed
24 25
    return 0;
}