2019-08-08 19:01:45 +08:00
|
|
|
|
/*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
|
2019-08-01 18:49:04 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
|
2019-08-01 18:49:04 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Use of this source code is governed by MIT-like license that can be found in the
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* 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.
|
2019-08-01 18:49:04 +08:00
|
|
|
|
*/
|
|
|
|
|
|
2023-12-09 16:23:51 +08:00
|
|
|
|
#if defined(ENABLE_MP4)
|
2021-12-16 17:46:03 +08:00
|
|
|
|
|
2019-08-01 18:49:04 +08:00
|
|
|
|
#include "MP4Muxer.h"
|
2022-11-29 11:07:13 +08:00
|
|
|
|
#include "Common/config.h"
|
2021-12-16 17:46:03 +08:00
|
|
|
|
|
2022-02-02 20:34:50 +08:00
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace toolkit;
|
|
|
|
|
|
2021-12-16 17:46:03 +08:00
|
|
|
|
namespace mediakit {
|
2019-08-01 18:49:04 +08:00
|
|
|
|
|
2020-04-03 20:45:58 +08:00
|
|
|
|
MP4Muxer::~MP4Muxer() {
|
|
|
|
|
closeMP4();
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 17:46:03 +08:00
|
|
|
|
void MP4Muxer::openMP4(const string &file) {
|
2020-04-03 20:45:58 +08:00
|
|
|
|
closeMP4();
|
2020-09-20 19:45:37 +08:00
|
|
|
|
_file_name = file;
|
|
|
|
|
_mp4_file = std::make_shared<MP4FileDisk>();
|
|
|
|
|
_mp4_file->openFile(_file_name.data(), "wb+");
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 17:46:03 +08:00
|
|
|
|
MP4FileIO::Writer MP4Muxer::createWriter() {
|
2020-09-20 19:44:20 +08:00
|
|
|
|
GET_CONFIG(bool, mp4FastStart, Record::kFastStart);
|
2020-09-20 19:45:37 +08:00
|
|
|
|
return _mp4_file->createWriter(mp4FastStart ? MOV_FLAG_FASTSTART : 0, false);
|
2020-04-03 20:45:58 +08:00
|
|
|
|
}
|
2020-09-20 19:45:04 +08:00
|
|
|
|
|
2021-12-16 17:46:03 +08:00
|
|
|
|
void MP4Muxer::closeMP4() {
|
2020-09-20 19:45:37 +08:00
|
|
|
|
MP4MuxerInterface::resetTracks();
|
|
|
|
|
_mp4_file = nullptr;
|
2019-08-01 18:49:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-03 12:32:57 +08:00
|
|
|
|
void MP4Muxer::resetTracks() {
|
2020-09-20 19:45:37 +08:00
|
|
|
|
MP4MuxerInterface::resetTracks();
|
|
|
|
|
openMP4(_file_name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////// MP4MuxerInterface /////////////////////////////////////////////
|
|
|
|
|
|
2021-12-16 17:46:03 +08:00
|
|
|
|
void MP4MuxerInterface::saveSegment() {
|
2020-09-20 19:45:37 +08:00
|
|
|
|
mp4_writer_save_segment(_mov_writter.get());
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 17:46:03 +08:00
|
|
|
|
void MP4MuxerInterface::initSegment() {
|
2020-09-20 19:45:37 +08:00
|
|
|
|
mp4_writer_init_segment(_mov_writter.get());
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 17:46:03 +08:00
|
|
|
|
bool MP4MuxerInterface::haveVideo() const {
|
2020-09-20 19:45:37 +08:00
|
|
|
|
return _have_video;
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-16 16:40:21 +08:00
|
|
|
|
uint64_t MP4MuxerInterface::getDuration() const {
|
|
|
|
|
uint64_t ret = 0;
|
2023-12-09 22:34:22 +08:00
|
|
|
|
for (auto &pr : _tracks) {
|
2022-11-12 21:59:48 +08:00
|
|
|
|
if (pr.second.stamp.getRelativeStamp() > (int64_t)ret) {
|
2022-10-16 16:40:21 +08:00
|
|
|
|
ret = pr.second.stamp.getRelativeStamp();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-20 19:45:37 +08:00
|
|
|
|
void MP4MuxerInterface::resetTracks() {
|
2019-12-03 12:32:57 +08:00
|
|
|
|
_started = false;
|
2020-01-24 21:09:47 +08:00
|
|
|
|
_have_video = false;
|
2020-09-20 19:45:37 +08:00
|
|
|
|
_mov_writter = nullptr;
|
2023-12-09 22:34:22 +08:00
|
|
|
|
_tracks.clear();
|
2019-12-03 12:32:57 +08:00
|
|
|
|
}
|
2019-08-01 18:49:04 +08:00
|
|
|
|
|
2022-10-16 19:49:56 +08:00
|
|
|
|
void MP4MuxerInterface::flush() {
|
2023-12-09 22:34:22 +08:00
|
|
|
|
for (auto &pr : _tracks) {
|
|
|
|
|
pr.second.merger.flush();
|
|
|
|
|
}
|
2022-10-16 19:49:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-27 13:12:53 +08:00
|
|
|
|
bool MP4MuxerInterface::inputFrame(const Frame::Ptr &frame) {
|
2023-12-09 22:34:22 +08:00
|
|
|
|
auto it = _tracks.find(frame->getIndex());
|
|
|
|
|
if (it == _tracks.end()) {
|
|
|
|
|
// 该Track不存在或初始化失败
|
2021-09-27 13:12:53 +08:00
|
|
|
|
return false;
|
2019-08-01 18:49:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-24 21:09:47 +08:00
|
|
|
|
if (!_started) {
|
2023-12-09 22:34:22 +08:00
|
|
|
|
// 该逻辑确保含有视频时,第一帧为关键帧
|
2020-08-30 09:15:02 +08:00
|
|
|
|
if (_have_video && !frame->keyFrame()) {
|
2023-12-09 22:34:22 +08:00
|
|
|
|
// 含有视频,但是不是关键帧,那么前面的帧丢弃
|
2021-09-27 13:12:53 +08:00
|
|
|
|
return false;
|
2019-08-02 10:53:00 +08:00
|
|
|
|
}
|
2023-12-09 22:34:22 +08:00
|
|
|
|
// 开始写文件
|
2020-08-30 09:15:02 +08:00
|
|
|
|
_started = true;
|
2019-08-02 10:53:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-09 22:34:22 +08:00
|
|
|
|
// mp4文件时间戳需要从0开始
|
|
|
|
|
auto &track = it->second;
|
2020-01-03 14:27:26 +08:00
|
|
|
|
switch (frame->getCodecId()) {
|
2021-07-07 11:37:22 +08:00
|
|
|
|
case CodecH264:
|
2020-01-03 14:27:26 +08:00
|
|
|
|
case CodecH265: {
|
2023-12-09 22:34:22 +08:00
|
|
|
|
// 这里的代码逻辑是让SPS、PPS、IDR这些时间戳相同的帧打包到一起当做一个帧处理,
|
|
|
|
|
track.merger.inputFrame(frame, [&](uint64_t dts, uint64_t pts, const Buffer::Ptr &buffer, bool have_idr) {
|
2022-10-16 19:49:56 +08:00
|
|
|
|
int64_t dts_out, pts_out;
|
2023-12-09 22:34:22 +08:00
|
|
|
|
track.stamp.revise(dts, pts, dts_out, pts_out);
|
|
|
|
|
mp4_writer_write(_mov_writter.get(), track.track_id, buffer->data(), buffer->size(), pts_out, dts_out, have_idr ? MOV_AV_FLAG_KEYFREAME : 0);
|
2021-04-26 18:26:07 +08:00
|
|
|
|
});
|
2020-01-03 14:27:26 +08:00
|
|
|
|
break;
|
2021-04-26 18:26:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 14:27:26 +08:00
|
|
|
|
default: {
|
2022-10-16 19:49:56 +08:00
|
|
|
|
int64_t dts_out, pts_out;
|
2023-12-09 22:34:22 +08:00
|
|
|
|
track.stamp.revise(frame->dts(), frame->pts(), dts_out, pts_out);
|
|
|
|
|
mp4_writer_write(_mov_writter.get(), track.track_id, frame->data() + frame->prefixSize(), frame->size() - frame->prefixSize(), pts_out, dts_out, frame->keyFrame() ? MOV_AV_FLAG_KEYFREAME : 0);
|
2020-01-03 14:27:26 +08:00
|
|
|
|
break;
|
2021-04-26 18:26:07 +08:00
|
|
|
|
}
|
2020-01-03 14:27:26 +08:00
|
|
|
|
}
|
2021-09-27 13:12:53 +08:00
|
|
|
|
return true;
|
2019-08-01 18:49:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 17:46:03 +08:00
|
|
|
|
void MP4MuxerInterface::stampSync() {
|
2023-12-09 22:34:22 +08:00
|
|
|
|
Stamp *first = nullptr;
|
|
|
|
|
for (auto &pr : _tracks) {
|
|
|
|
|
if (!first) {
|
|
|
|
|
first = &pr.second.stamp;
|
|
|
|
|
} else {
|
|
|
|
|
pr.second.stamp.syncTo(*first);
|
2020-05-15 18:08:54 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-27 13:12:53 +08:00
|
|
|
|
bool MP4MuxerInterface::addTrack(const Track::Ptr &track) {
|
2020-09-20 19:45:37 +08:00
|
|
|
|
if (!_mov_writter) {
|
|
|
|
|
_mov_writter = createWriter();
|
|
|
|
|
}
|
2023-12-09 16:23:51 +08:00
|
|
|
|
auto mp4_object = getMovIdByCodec(track->getCodecId());
|
|
|
|
|
if (mp4_object == MOV_OBJECT_NONE) {
|
|
|
|
|
WarnL << "Unsupported codec: " << track->getCodecName();
|
2021-09-27 13:12:53 +08:00
|
|
|
|
return false;
|
2020-05-12 11:48:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!track->ready()) {
|
2023-12-09 22:34:22 +08:00
|
|
|
|
WarnL << "Track " << track->getCodecName() << " unready";
|
2021-09-27 13:12:53 +08:00
|
|
|
|
return false;
|
2020-05-12 11:48:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-11-07 23:36:41 +08:00
|
|
|
|
track->update();
|
2020-04-23 15:19:20 +08:00
|
|
|
|
|
2023-12-09 16:23:51 +08:00
|
|
|
|
auto extra = track->getExtraData();
|
|
|
|
|
auto extra_data = extra ? extra->data() : nullptr;
|
|
|
|
|
auto extra_size = extra ? extra->size() : 0;
|
|
|
|
|
if (track->getTrackType() == TrackVideo) {
|
|
|
|
|
auto video_track = dynamic_pointer_cast<VideoTrack>(track);
|
2023-12-09 22:34:22 +08:00
|
|
|
|
CHECK(video_track);
|
2023-12-09 16:23:51 +08:00
|
|
|
|
auto track_id = mp4_writer_add_video(_mov_writter.get(), mp4_object, video_track->getVideoWidth(), video_track->getVideoHeight(), extra_data, extra_size);
|
|
|
|
|
if (track_id < 0) {
|
2023-12-09 22:34:22 +08:00
|
|
|
|
WarnL << "mp4_writer_add_video failed: " << video_track->getCodecName();
|
2023-12-09 16:23:51 +08:00
|
|
|
|
return false;
|
2021-09-27 13:12:53 +08:00
|
|
|
|
}
|
2023-12-09 22:34:22 +08:00
|
|
|
|
_tracks[track->getIndex()].track_id = track_id;
|
2023-12-09 16:23:51 +08:00
|
|
|
|
_have_video = true;
|
|
|
|
|
} else if (track->getTrackType() == TrackAudio) {
|
|
|
|
|
auto audio_track = dynamic_pointer_cast<AudioTrack>(track);
|
2023-12-09 22:34:22 +08:00
|
|
|
|
CHECK(audio_track);
|
|
|
|
|
auto track_id = mp4_writer_add_audio(_mov_writter.get(), mp4_object, audio_track->getAudioChannel(), audio_track->getAudioSampleBit() * audio_track->getAudioChannel(), audio_track->getAudioSampleRate(), extra_data, extra_size);
|
2023-12-09 16:23:51 +08:00
|
|
|
|
if (track_id < 0) {
|
2023-12-09 22:34:22 +08:00
|
|
|
|
WarnL << "mp4_writer_add_audio failed: " << audio_track->getCodecName();
|
2023-12-09 16:23:51 +08:00
|
|
|
|
return false;
|
2022-12-30 13:56:57 +08:00
|
|
|
|
}
|
2023-12-09 22:34:22 +08:00
|
|
|
|
_tracks[track->getIndex()].track_id = track_id;
|
2019-08-01 18:49:04 +08:00
|
|
|
|
}
|
2020-05-15 18:08:54 +08:00
|
|
|
|
|
2023-12-09 22:34:22 +08:00
|
|
|
|
// 尝试音视频同步
|
2020-05-15 18:08:54 +08:00
|
|
|
|
stampSync();
|
2021-09-27 13:12:53 +08:00
|
|
|
|
return true;
|
2019-08-01 18:49:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-20 19:45:37 +08:00
|
|
|
|
/////////////////////////////////////////// MP4MuxerMemory /////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
MP4MuxerMemory::MP4MuxerMemory() {
|
|
|
|
|
_memory_file = std::make_shared<MP4FileMemory>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MP4FileIO::Writer MP4MuxerMemory::createWriter() {
|
|
|
|
|
return _memory_file->createWriter(MOV_FLAG_SEGMENT, true);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 17:46:03 +08:00
|
|
|
|
const string &MP4MuxerMemory::getInitSegment() {
|
2020-09-20 19:45:37 +08:00
|
|
|
|
if (_init_segment.empty()) {
|
|
|
|
|
initSegment();
|
|
|
|
|
saveSegment();
|
|
|
|
|
_init_segment = _memory_file->getAndClearMemory();
|
|
|
|
|
}
|
|
|
|
|
return _init_segment;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 17:46:03 +08:00
|
|
|
|
void MP4MuxerMemory::resetTracks() {
|
2020-09-20 19:45:37 +08:00
|
|
|
|
MP4MuxerInterface::resetTracks();
|
|
|
|
|
_memory_file = std::make_shared<MP4FileMemory>();
|
|
|
|
|
_init_segment.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 17:46:03 +08:00
|
|
|
|
bool MP4MuxerMemory::inputFrame(const Frame::Ptr &frame) {
|
2020-09-20 19:45:37 +08:00
|
|
|
|
if (_init_segment.empty()) {
|
2023-12-09 22:34:22 +08:00
|
|
|
|
// 尚未生成init segment
|
2021-09-27 13:12:53 +08:00
|
|
|
|
return false;
|
2020-09-20 19:45:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-07-02 12:02:33 +08:00
|
|
|
|
// flush切片
|
2021-12-16 17:46:03 +08:00
|
|
|
|
saveSegment();
|
|
|
|
|
|
2021-12-16 12:09:49 +08:00
|
|
|
|
auto data = _memory_file->getAndClearMemory();
|
|
|
|
|
if (!data.empty()) {
|
2023-07-02 12:02:33 +08:00
|
|
|
|
// 输出切片数据
|
|
|
|
|
onSegmentData(std::move(data), _last_dst, _key_frame);
|
2020-09-20 19:45:37 +08:00
|
|
|
|
_key_frame = false;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-02 12:02:33 +08:00
|
|
|
|
if (frame->keyFrame()) {
|
2020-09-20 19:45:37 +08:00
|
|
|
|
_key_frame = true;
|
|
|
|
|
}
|
2023-07-02 12:02:33 +08:00
|
|
|
|
if (frame->getTrackType() == TrackVideo || !haveVideo()) {
|
|
|
|
|
_last_dst = frame->dts();
|
|
|
|
|
}
|
2021-09-27 13:12:53 +08:00
|
|
|
|
return MP4MuxerInterface::inputFrame(frame);
|
2020-09-20 19:45:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-09 22:34:22 +08:00
|
|
|
|
} // namespace mediakit
|
|
|
|
|
#endif // defined(ENABLE_MP4)
|