2019-08-08 19:01:45 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2019-04-01 12:57:33 +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.
|
2019-04-01 12:57:33 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef TSMUXER_H
|
|
|
|
|
|
#define TSMUXER_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
#include "Extension/Frame.h"
|
|
|
|
|
|
#include "Extension/Track.h"
|
|
|
|
|
|
#include "Util/File.h"
|
2019-08-01 18:49:04 +08:00
|
|
|
|
#include "Common/MediaSink.h"
|
2019-12-04 10:45:38 +08:00
|
|
|
|
#include "Common/Stamp.h"
|
2019-08-02 18:06:37 +08:00
|
|
|
|
|
2019-04-01 12:57:33 +08:00
|
|
|
|
using namespace toolkit;
|
|
|
|
|
|
|
|
|
|
|
|
namespace mediakit {
|
|
|
|
|
|
|
2019-12-03 12:32:57 +08:00
|
|
|
|
class TsMuxer : public MediaSinkInterface {
|
2019-04-01 12:57:33 +08:00
|
|
|
|
public:
|
|
|
|
|
|
TsMuxer();
|
|
|
|
|
|
virtual ~TsMuxer();
|
2019-08-27 11:34:20 +08:00
|
|
|
|
void addTrack(const Track::Ptr &track) override;
|
2019-10-11 16:51:10 +08:00
|
|
|
|
void resetTracks() override;
|
|
|
|
|
|
void inputFrame(const Frame::Ptr &frame) override;
|
2019-04-01 12:57:33 +08:00
|
|
|
|
protected:
|
2020-01-24 22:00:55 +08:00
|
|
|
|
virtual void onTs(const void *packet, int bytes,uint32_t timestamp,bool is_idr_fast_packet) = 0;
|
2019-04-01 12:57:33 +08:00
|
|
|
|
private:
|
|
|
|
|
|
void init();
|
|
|
|
|
|
void uninit();
|
|
|
|
|
|
private:
|
|
|
|
|
|
void *_context = nullptr;
|
|
|
|
|
|
char *_tsbuf[188];
|
|
|
|
|
|
uint32_t _timestamp = 0;
|
2019-08-02 18:06:37 +08:00
|
|
|
|
|
|
|
|
|
|
struct track_info{
|
|
|
|
|
|
int track_id = -1;
|
|
|
|
|
|
Stamp stamp;
|
|
|
|
|
|
};
|
|
|
|
|
|
unordered_map<int,track_info> _codec_to_trackid;
|
2019-08-27 11:34:20 +08:00
|
|
|
|
List<Frame::Ptr> _frameCached;
|
2020-01-24 22:00:55 +08:00
|
|
|
|
bool _is_idr_fast_packet = false;
|
|
|
|
|
|
bool _have_video = false;
|
2019-04-01 12:57:33 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}//namespace mediakit
|
|
|
|
|
|
#endif //TSMUXER_H
|