2019-12-05 19:20:12 +08:00
|
|
|
|
/*
|
2019-12-06 11:54:10 +08:00
|
|
|
|
* MIT License
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2019 Gemfield <gemfield@civilnet.cn>
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2019-12-05 19:20:12 +08:00
|
|
|
|
|
2019-12-06 11:54:10 +08:00
|
|
|
|
#ifndef ZLMEDIAKIT_RTPPROCESS_H
|
|
|
|
|
#define ZLMEDIAKIT_RTPPROCESS_H
|
|
|
|
|
|
|
|
|
|
#if defined(ENABLE_RTPPROXY)
|
2019-12-05 19:20:12 +08:00
|
|
|
|
|
|
|
|
|
#include "Rtsp/RtpReceiver.h"
|
|
|
|
|
#include "RtpDecoder.h"
|
|
|
|
|
#include "PSDecoder.h"
|
|
|
|
|
#include "Common/Device.h"
|
2019-12-13 15:42:12 +08:00
|
|
|
|
#include "Common/Stamp.h"
|
2019-12-05 19:20:12 +08:00
|
|
|
|
using namespace mediakit;
|
|
|
|
|
|
2019-12-06 11:54:10 +08:00
|
|
|
|
namespace mediakit{
|
|
|
|
|
|
2019-12-05 19:20:12 +08:00
|
|
|
|
string printSSRC(uint32_t ui32Ssrc);
|
2019-12-16 11:00:40 +08:00
|
|
|
|
class FrameMerger;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
class RtpProcess : public RtpReceiver , public RtpDecoder , public PSDecoder {
|
|
|
|
|
public:
|
|
|
|
|
typedef std::shared_ptr<RtpProcess> Ptr;
|
|
|
|
|
RtpProcess(uint32_t ssrc);
|
|
|
|
|
~RtpProcess();
|
2019-12-16 11:00:40 +08:00
|
|
|
|
bool inputRtp(const char *data,int data_len, const struct sockaddr *addr , uint32_t *dts_out = nullptr);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
bool alive();
|
|
|
|
|
string get_peer_ip();
|
|
|
|
|
uint16_t get_peer_port();
|
2020-02-28 16:25:14 +08:00
|
|
|
|
|
|
|
|
|
int totalReaderCount();
|
|
|
|
|
void setListener(const std::weak_ptr<MediaSourceEvent> &listener);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
protected:
|
|
|
|
|
void onRtpSorted(const RtpPacket::Ptr &rtp, int track_index) override ;
|
|
|
|
|
void onRtpDecode(const void *packet, int bytes, uint32_t timestamp, int flags) override;
|
|
|
|
|
void onPSDecode(int stream,
|
|
|
|
|
int codecid,
|
|
|
|
|
int flags,
|
|
|
|
|
int64_t pts,
|
|
|
|
|
int64_t dts,
|
|
|
|
|
const void *data,
|
2019-12-06 11:54:10 +08:00
|
|
|
|
int bytes) override ;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
private:
|
|
|
|
|
std::shared_ptr<FILE> _save_file_rtp;
|
|
|
|
|
std::shared_ptr<FILE> _save_file_ps;
|
|
|
|
|
std::shared_ptr<FILE> _save_file_video;
|
|
|
|
|
uint32_t _ssrc;
|
|
|
|
|
SdpTrack::Ptr _track;
|
|
|
|
|
struct sockaddr *_addr = nullptr;
|
|
|
|
|
uint16_t _sequence = 0;
|
|
|
|
|
int _codecid_video = 0;
|
|
|
|
|
int _codecid_audio = 0;
|
|
|
|
|
MultiMediaSourceMuxer::Ptr _muxer;
|
2019-12-16 11:00:40 +08:00
|
|
|
|
std::shared_ptr<FrameMerger> _merger;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
Ticker _last_rtp_time;
|
2019-12-13 15:42:12 +08:00
|
|
|
|
map<int,Stamp> _stamps;
|
2019-12-16 11:00:40 +08:00
|
|
|
|
uint32_t _dts = 0;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
};
|
|
|
|
|
|
2019-12-06 11:54:10 +08:00
|
|
|
|
}//namespace mediakit
|
|
|
|
|
#endif//defined(ENABLE_RTPPROXY)
|
|
|
|
|
#endif //ZLMEDIAKIT_RTPPROCESS_H
|