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
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
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"
|
2022-11-29 11:07:13 +08:00
|
|
|
|
#include "Common/MediaSink.h"
|
2022-12-02 14:43:06 +08:00
|
|
|
|
#include "RtmpCodec.h"
|
2017-04-25 11:35:41 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2022-12-02 14:43:06 +08:00
|
|
|
|
|
2021-11-10 10:58:43 +08:00
|
|
|
|
class RtmpDemuxer : public Demuxer {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
2021-11-10 10:58:43 +08:00
|
|
|
|
using Ptr = std::shared_ptr<RtmpDemuxer>;
|
2018-10-24 22:29:19 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
RtmpDemuxer() = default;
|
2020-08-30 10:48:34 +08:00
|
|
|
|
~RtmpDemuxer() override = default;
|
2019-12-26 12:10:54 +08:00
|
|
|
|
|
2021-11-10 15:25:24 +08:00
|
|
|
|
static size_t trackCount(const AMFValue &metadata);
|
|
|
|
|
|
2020-05-28 17:03:12 +08:00
|
|
|
|
bool loadMetaData(const AMFValue &metadata);
|
2018-10-24 22:29:19 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
|
|
|
|
* 开始解复用
|
|
|
|
|
* @param pkt rtmp包
|
|
|
|
|
*/
|
2020-09-06 18:22:04 +08:00
|
|
|
|
void inputRtmp(const RtmpPacket::Ptr &pkt);
|
2020-08-30 10:48:34 +08:00
|
|
|
|
|
2021-11-10 10:58:43 +08:00
|
|
|
|
/**
|
|
|
|
|
* 获取节目总时长
|
|
|
|
|
* @return 节目总时长,单位秒
|
|
|
|
|
*/
|
|
|
|
|
float getDuration() const;
|
|
|
|
|
|
2018-10-24 22:03:17 +08:00
|
|
|
|
private:
|
2020-12-05 12:22:17 +08:00
|
|
|
|
void makeVideoTrack(const AMFValue &val, int bit_rate);
|
|
|
|
|
void makeAudioTrack(const AMFValue &val, int sample_rate, int channels, int sample_bit, int bit_rate);
|
2020-08-30 10:48:34 +08:00
|
|
|
|
|
2018-10-24 22:03:17 +08:00
|
|
|
|
private:
|
2020-08-30 10:48:34 +08:00
|
|
|
|
bool _try_get_video_track = false;
|
|
|
|
|
bool _try_get_audio_track = false;
|
2021-11-10 10:58:43 +08:00
|
|
|
|
float _duration = 0;
|
|
|
|
|
AudioTrack::Ptr _audio_track;
|
|
|
|
|
VideoTrack::Ptr _video_track;
|
2022-12-02 14:43:06 +08:00
|
|
|
|
RtmpCodec::Ptr _audio_rtmp_decoder;
|
|
|
|
|
RtmpCodec::Ptr _video_rtmp_decoder;
|
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_ */
|