ZLMediaKit/src/Http/HttpTSPlayer.h

72 lines
1.9 KiB
C++
Raw Normal View History

/*
2020-05-17 18:00:37 +08:00
* Copyright (c) 2020 The ZLMediaKit project authors. All Rights Reserved.
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2020-05-17 18:00:37 +08:00
*
* 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.
*/
#ifndef HTTP_HTTPTSPLAYER_H
#define HTTP_HTTPTSPLAYER_H
#include "Http/HttpDownloader.h"
#include "Player/MediaPlayer.h"
#include "Rtp/TSDecoder.h"
2020-05-17 18:00:37 +08:00
using namespace toolkit;
2020-05-17 18:00:37 +08:00
namespace mediakit {
//http-ts播发器未实现ts解复用
class HttpTSPlayer : public HttpClientImp {
2020-05-17 18:00:37 +08:00
public:
using Ptr = std::shared_ptr<HttpTSPlayer>;
using onComplete = std::function<void(const SockException &)>;
2020-05-17 18:00:37 +08:00
HttpTSPlayer(const EventPoller::Ptr &poller = nullptr, bool split_ts = true);
~HttpTSPlayer() override = default;
/**
*
*/
void setOnComplete(onComplete cb);
2020-05-17 18:00:37 +08:00
/**
* ts包回调
*/
void setOnPacket(TSSegment::onSegment cb);
2020-05-17 18:00:37 +08:00
protected:
///HttpClient override///
ssize_t onResponseHeader(const string &status, const HttpHeader &header) override;
void onResponseBody(const char *buf, size_t size, size_t recved_size, size_t total_size) override;
2020-05-17 18:00:37 +08:00
void onResponseCompleted() override;
void onDisconnect(const SockException &ex) override;
2020-05-17 18:00:37 +08:00
protected:
/**
* ts数据
*/
virtual void onPacket(const char *data, size_t len);
2020-05-17 18:00:37 +08:00
private:
void emitOnComplete(const SockException &ex);
2020-05-17 18:00:37 +08:00
private:
//是否为mpegts负载
bool _is_ts_content = false;
//第一个包是否为ts包
bool _is_first_packet_ts = false;
//是否判断是否是ts并split
bool _split_ts;
2020-12-05 12:31:28 +08:00
string _status;
2020-05-17 18:00:37 +08:00
TSSegment _segment;
onComplete _on_complete;
2020-05-17 18:00:37 +08:00
TSSegment::onSegment _on_segment;
};
}//namespace mediakit
#endif //HTTP_HTTPTSPLAYER_H