2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
2020-04-04 20:30:09 +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.
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*/
|
|
|
|
|
|
2018-10-24 18:16:08 +08:00
|
|
|
|
#ifndef SRC_RTMP_RTMPDEMUXER_H_
|
|
|
|
|
#define SRC_RTMP_RTMPDEMUXER_H_
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include <functional>
|
|
|
|
|
#include <unordered_map>
|
2018-10-24 18:09:54 +08:00
|
|
|
|
#include "Rtmp/amf.h"
|
|
|
|
|
#include "Rtmp/Rtmp.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include "Player/PlayerBase.h"
|
2018-10-24 22:03:17 +08:00
|
|
|
|
#include "Util/TimeTicker.h"
|
|
|
|
|
#include "RtmpCodec.h"
|
2017-04-25 11:35:41 +08:00
|
|
|
|
|
2018-10-24 22:03:17 +08:00
|
|
|
|
using namespace toolkit;
|
2018-03-01 14:32:11 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-11-15 15:14:05 +08:00
|
|
|
|
class RtmpDemuxer : public Demuxer{
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
2020-03-20 11:51:24 +08:00
|
|
|
|
typedef std::shared_ptr<RtmpDemuxer> Ptr;
|
2018-10-24 22:29:19 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
RtmpDemuxer() = default;
|
|
|
|
|
virtual ~RtmpDemuxer() = default;
|
2019-12-26 12:10:54 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
void loadMetaData(const AMFValue &metadata);
|
2018-10-24 22:29:19 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
|
|
|
|
* 开始解复用
|
|
|
|
|
* @param pkt rtmp包
|
|
|
|
|
* @return true 代表是i帧
|
|
|
|
|
*/
|
|
|
|
|
bool inputRtmp(const RtmpPacket::Ptr &pkt);
|
2018-10-24 22:03:17 +08:00
|
|
|
|
private:
|
2020-03-20 11:51:24 +08:00
|
|
|
|
void makeVideoTrack(const AMFValue &val);
|
|
|
|
|
void makeAudioTrack(const AMFValue &val);
|
2018-10-24 22:03:17 +08:00
|
|
|
|
private:
|
2020-03-20 11:51:24 +08:00
|
|
|
|
bool _tryedGetVideoTrack = false;
|
|
|
|
|
bool _tryedGetAudioTrack = false;
|
|
|
|
|
RtmpCodec::Ptr _audioRtmpDecoder;
|
|
|
|
|
RtmpCodec::Ptr _videoRtmpDecoder;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
};
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 18:16:08 +08:00
|
|
|
|
#endif /* SRC_RTMP_RTMPDEMUXER_H_ */
|