2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2017-09-27 16:20:30 +08:00
|
|
|
|
* MIT License
|
|
|
|
|
*
|
2019-05-08 15:40:07 +08:00
|
|
|
|
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
2017-05-08 18:03:43 +08:00
|
|
|
|
#include <signal.h>
|
2019-07-09 14:53:23 +08:00
|
|
|
|
#include "Util/util.h"
|
2017-05-08 18:03:43 +08:00
|
|
|
|
#include "Util/logger.h"
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include "Poller/EventPoller.h"
|
|
|
|
|
#include "Rtsp/UDPServer.h"
|
2017-08-03 13:55:46 +08:00
|
|
|
|
#include "Player/MediaPlayer.h"
|
2017-05-08 18:03:43 +08:00
|
|
|
|
#include "Util/onceToken.h"
|
|
|
|
|
#include "H264Decoder.h"
|
|
|
|
|
#include "YuvDisplayer.h"
|
|
|
|
|
#include "Network/sockutil.h"
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
2018-10-24 17:17:55 +08:00
|
|
|
|
using namespace toolkit;
|
|
|
|
|
using namespace mediakit;
|
2017-05-08 18:03:43 +08:00
|
|
|
|
|
2019-07-26 22:56:17 +08:00
|
|
|
|
|
2019-09-05 11:15:30 +08:00
|
|
|
|
/**
|
|
|
|
|
* 合并一些时间戳相同的frame
|
|
|
|
|
*/
|
|
|
|
|
class FrameMerger {
|
|
|
|
|
public:
|
|
|
|
|
FrameMerger() = default;
|
|
|
|
|
virtual ~FrameMerger() = default;
|
|
|
|
|
|
|
|
|
|
void inputFrame(const Frame::Ptr &frame,const function<void(uint32_t dts,uint32_t pts,const Buffer::Ptr &buffer)> &cb){
|
|
|
|
|
if (!_frameCached.empty() && _frameCached.back()->dts() != frame->dts()) {
|
|
|
|
|
Frame::Ptr back = _frameCached.back();
|
|
|
|
|
Buffer::Ptr merged_frame = back;
|
|
|
|
|
if(_frameCached.size() != 1){
|
|
|
|
|
string merged;
|
|
|
|
|
_frameCached.for_each([&](const Frame::Ptr &frame){
|
|
|
|
|
if(frame->prefixSize()){
|
|
|
|
|
merged.append(frame->data(),frame->size());
|
|
|
|
|
} else{
|
|
|
|
|
merged.append("\x00\x00\x00\x01",4);
|
|
|
|
|
merged.append(frame->data(),frame->size());
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
merged_frame = std::make_shared<BufferString>(std::move(merged));
|
|
|
|
|
}
|
|
|
|
|
cb(back->dts(),back->pts(),merged_frame);
|
|
|
|
|
_frameCached.clear();
|
|
|
|
|
}
|
|
|
|
|
_frameCached.emplace_back(Frame::getCacheAbleFrame(frame));
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
List<Frame::Ptr> _frameCached;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2019-07-26 22:56:17 +08:00
|
|
|
|
#ifdef WIN32
|
|
|
|
|
#include <TCHAR.h>
|
|
|
|
|
|
|
|
|
|
extern int __argc;
|
|
|
|
|
extern TCHAR** __targv;
|
|
|
|
|
|
|
|
|
|
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstanc, LPSTR lpCmdLine, int nShowCmd) {
|
|
|
|
|
int argc = __argc;
|
|
|
|
|
char **argv = __targv;
|
|
|
|
|
|
|
|
|
|
//1. 首先调用AllocConsole创建一个控制台窗口
|
|
|
|
|
AllocConsole();
|
|
|
|
|
|
|
|
|
|
//2. 但此时调用cout或者printf都不能正常输出文字到窗口(包括输入流cin和scanf), 所以需要如下重定向输入输出流:
|
|
|
|
|
FILE* stream;
|
|
|
|
|
freopen_s(&stream, "CON", "r", stdin);//重定向输入流
|
|
|
|
|
freopen_s(&stream, "CON", "w", stdout);//重定向输入流
|
|
|
|
|
|
|
|
|
|
//3. 如果我们需要用到控制台窗口句柄,可以调用FindWindow取得:
|
|
|
|
|
HWND _consoleHwnd;
|
|
|
|
|
SetConsoleTitleA("test_player");//设置窗口名
|
|
|
|
|
#else
|
|
|
|
|
#include <unistd.h>
|
2018-04-17 21:38:13 +08:00
|
|
|
|
int main(int argc, char *argv[]) {
|
2019-07-26 22:56:17 +08:00
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-04-17 21:38:13 +08:00
|
|
|
|
//设置退出信号处理函数
|
2018-10-29 13:56:10 +08:00
|
|
|
|
signal(SIGINT, [](int) { SDLDisplayerHelper::Instance().shutdown(); });
|
2018-04-17 21:38:13 +08:00
|
|
|
|
//设置日志
|
2019-08-22 16:57:50 +08:00
|
|
|
|
Logger::Instance().add(std::make_shared<ConsoleChannel>());
|
2018-12-28 16:47:50 +08:00
|
|
|
|
Logger::Instance().setWriter(std::make_shared<AsyncLogWriter>());
|
2017-05-08 18:03:43 +08:00
|
|
|
|
|
2018-04-17 21:38:13 +08:00
|
|
|
|
if (argc != 3) {
|
|
|
|
|
ErrorL << "\r\n测试方法:./test_player rtxp_url rtp_type\r\n"
|
|
|
|
|
<< "例如:./test_player rtsp://admin:123456@127.0.0.1/live/0 0\r\n"
|
|
|
|
|
<< endl;
|
|
|
|
|
return 0;
|
2017-05-08 18:03:43 +08:00
|
|
|
|
|
2018-04-17 21:38:13 +08:00
|
|
|
|
}
|
2017-05-08 18:03:43 +08:00
|
|
|
|
|
2018-12-28 16:47:50 +08:00
|
|
|
|
MediaPlayer::Ptr player(new MediaPlayer());
|
|
|
|
|
weak_ptr<MediaPlayer> weakPlayer = player;
|
|
|
|
|
player->setOnPlayResult([weakPlayer](const SockException &ex) {
|
|
|
|
|
InfoL << "OnPlayResult:" << ex.what();
|
|
|
|
|
auto strongPlayer = weakPlayer.lock();
|
|
|
|
|
if (ex || !strongPlayer) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2017-05-08 18:03:43 +08:00
|
|
|
|
|
2018-12-28 16:47:50 +08:00
|
|
|
|
auto viedoTrack = strongPlayer->getTrack(TrackVideo);
|
|
|
|
|
if (!viedoTrack || viedoTrack->getCodecId() != CodecH264) {
|
|
|
|
|
WarnL << "没有视频或者视频不是264编码!";
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-07-09 14:53:23 +08:00
|
|
|
|
|
|
|
|
|
AnyStorage::Ptr storage(new AnyStorage);
|
|
|
|
|
viedoTrack->addDelegate(std::make_shared<FrameWriterInterfaceHelper>([storage](const Frame::Ptr &frame) {
|
|
|
|
|
SDLDisplayerHelper::Instance().doTask([frame,storage]() {
|
|
|
|
|
auto &decoder = (*storage)["decoder"];
|
|
|
|
|
auto &displayer = (*storage)["displayer"];
|
2019-09-05 11:15:30 +08:00
|
|
|
|
auto &merger = (*storage)["merger"];
|
2019-07-09 14:53:23 +08:00
|
|
|
|
if(!decoder){
|
|
|
|
|
decoder.set<H264Decoder>();
|
|
|
|
|
}
|
|
|
|
|
if(!displayer){
|
|
|
|
|
displayer.set<YuvDisplayer>();
|
|
|
|
|
}
|
2019-09-05 11:15:30 +08:00
|
|
|
|
if(!merger){
|
|
|
|
|
merger.set<FrameMerger>();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
merger.get<FrameMerger>().inputFrame(frame,[&](uint32_t dts,uint32_t pts,const Buffer::Ptr &buffer){
|
|
|
|
|
AVFrame *pFrame = nullptr;
|
|
|
|
|
bool flag = decoder.get<H264Decoder>().inputVideo((unsigned char *) buffer->data(), buffer->size(), dts, &pFrame);
|
|
|
|
|
if (flag) {
|
|
|
|
|
displayer.get<YuvDisplayer>().displayYUV(pFrame);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2019-07-09 14:53:23 +08:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
}));
|
2018-12-28 16:47:50 +08:00
|
|
|
|
});
|
2018-06-30 23:02:16 +08:00
|
|
|
|
|
2018-10-29 13:56:10 +08:00
|
|
|
|
|
2018-12-28 16:47:50 +08:00
|
|
|
|
player->setOnShutdown([](const SockException &ex) {
|
|
|
|
|
ErrorL << "OnShutdown:" << ex.what();
|
|
|
|
|
});
|
2019-03-27 18:58:43 +08:00
|
|
|
|
(*player)[kRtpType] = atoi(argv[2]);
|
2018-12-28 16:47:50 +08:00
|
|
|
|
player->play(argv[1]);
|
|
|
|
|
|
|
|
|
|
SDLDisplayerHelper::Instance().runLoop();
|
2018-04-17 21:38:13 +08:00
|
|
|
|
return 0;
|
2017-05-08 18:03:43 +08:00
|
|
|
|
}
|
|
|
|
|
|