2020-05-18 15:31:49 +08:00
|
|
|
|
/*
|
2020-05-17 18:00:37 +08:00
|
|
|
|
* Copyright (c) 2020 The ZLMediaKit project authors. All Rights Reserved.
|
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* 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"
|
2021-12-24 13:29:16 +08:00
|
|
|
|
|
2020-05-17 18:00:37 +08:00
|
|
|
|
namespace mediakit {
|
|
|
|
|
|
|
|
|
|
//http-ts播发器,未实现ts解复用
|
2021-12-24 13:29:16 +08:00
|
|
|
|
class HttpTSPlayer : public HttpClientImp {
|
2020-05-17 18:00:37 +08:00
|
|
|
|
public:
|
2021-12-24 13:29:16 +08:00
|
|
|
|
using Ptr = std::shared_ptr<HttpTSPlayer>;
|
2022-02-02 20:34:50 +08:00
|
|
|
|
using onComplete = std::function<void(const toolkit::SockException &)>;
|
2020-05-17 18:00:37 +08:00
|
|
|
|
|
2022-02-02 20:34:50 +08:00
|
|
|
|
HttpTSPlayer(const toolkit::EventPoller::Ptr &poller = nullptr, bool split_ts = true);
|
2021-12-24 13:29:16 +08:00
|
|
|
|
~HttpTSPlayer() override = default;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设置下载完毕或异常断开回调
|
|
|
|
|
*/
|
|
|
|
|
void setOnComplete(onComplete cb);
|
2020-05-17 18:00:37 +08:00
|
|
|
|
|
2021-12-24 13:29:16 +08:00
|
|
|
|
/**
|
|
|
|
|
* 设置接收ts包回调
|
|
|
|
|
*/
|
|
|
|
|
void setOnPacket(TSSegment::onSegment cb);
|
2020-05-17 18:00:37 +08:00
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
///HttpClient override///
|
2022-02-02 20:34:50 +08:00
|
|
|
|
void onResponseHeader(const std::string &status, const HttpHeader &header) override;
|
2022-01-20 14:48:45 +08:00
|
|
|
|
void onResponseBody(const char *buf, size_t size) override;
|
2022-02-02 20:34:50 +08:00
|
|
|
|
void onResponseCompleted(const toolkit::SockException &ex) override;
|
2020-05-17 18:00:37 +08:00
|
|
|
|
|
2021-12-24 13:29:16 +08:00
|
|
|
|
protected:
|
|
|
|
|
/**
|
|
|
|
|
* 收到ts数据
|
|
|
|
|
*/
|
2021-01-17 18:31:50 +08:00
|
|
|
|
virtual void onPacket(const char *data, size_t len);
|
2020-05-17 18:00:37 +08:00
|
|
|
|
|
2021-12-24 13:29:16 +08:00
|
|
|
|
private:
|
2022-02-02 20:34:50 +08:00
|
|
|
|
void emitOnComplete(const toolkit::SockException &ex);
|
2021-12-24 13:29:16 +08:00
|
|
|
|
|
2020-05-17 18:00:37 +08:00
|
|
|
|
private:
|
|
|
|
|
bool _split_ts;
|
|
|
|
|
TSSegment _segment;
|
2021-12-24 13:29:16 +08:00
|
|
|
|
onComplete _on_complete;
|
2020-05-17 18:00:37 +08:00
|
|
|
|
TSSegment::onSegment _on_segment;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}//namespace mediakit
|
|
|
|
|
#endif //HTTP_HTTPTSPLAYER_H
|