ZLMediaKit/src/Rtmp/RtmpDemuxer.h

63 lines
1.6 KiB
C++
Raw Normal View History

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/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"
#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
class RtmpDemuxer : public Demuxer {
2017-04-01 16:35:56 +08:00
public:
using Ptr = std::shared_ptr<RtmpDemuxer>;
2020-03-20 11:51:24 +08:00
RtmpDemuxer() = default;
2020-08-30 10:48:34 +08:00
~RtmpDemuxer() override = default;
2021-11-10 15:25:24 +08:00
static size_t trackCount(const AMFValue &metadata);
bool loadMetaData(const AMFValue &metadata);
2020-03-20 11:51:24 +08:00
/**
*
* @param pkt rtmp包
*/
void inputRtmp(const RtmpPacket::Ptr &pkt);
2020-08-30 10:48:34 +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;
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_ */