2021-05-31 05:42:20 +00:00
|
|
|
//
|
|
|
|
// Copyright (c) 2013-2021 Winlin
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//
|
2013-11-30 10:31:07 +00:00
|
|
|
|
2014-03-02 13:49:09 +00:00
|
|
|
#ifndef SRS_APP_ENCODER_HPP
|
|
|
|
#define SRS_APP_ENCODER_HPP
|
2013-11-30 10:31:07 +00:00
|
|
|
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
|
|
|
|
#include <string>
|
2013-11-30 13:02:21 +00:00
|
|
|
#include <vector>
|
2013-11-30 10:31:07 +00:00
|
|
|
|
2020-09-11 08:44:40 +00:00
|
|
|
#include <srs_app_st.hpp>
|
2013-11-30 11:14:19 +00:00
|
|
|
|
2013-11-30 13:02:21 +00:00
|
|
|
class SrsConfDirective;
|
2013-12-01 09:32:06 +00:00
|
|
|
class SrsRequest;
|
2013-12-05 15:34:26 +00:00
|
|
|
class SrsPithyPrint;
|
2014-04-07 01:34:36 +00:00
|
|
|
class SrsFFMPEG;
|
2013-11-30 13:02:21 +00:00
|
|
|
|
2019-04-30 00:24:52 +00:00
|
|
|
// The encoder for a stream, may use multiple
|
|
|
|
// ffmpegs to transcode the specified stream.
|
2017-05-29 12:33:32 +00:00
|
|
|
class SrsEncoder : public ISrsCoroutineHandler
|
2013-11-30 10:31:07 +00:00
|
|
|
{
|
2013-11-30 13:02:21 +00:00
|
|
|
private:
|
2014-04-07 03:20:03 +00:00
|
|
|
std::string input_stream_name;
|
2014-03-18 03:32:58 +00:00
|
|
|
std::vector<SrsFFMPEG*> ffmpegs;
|
2013-11-30 11:14:19 +00:00
|
|
|
private:
|
2017-05-29 12:33:32 +00:00
|
|
|
SrsCoroutine* trd;
|
2015-02-19 10:56:21 +00:00
|
|
|
SrsPithyPrint* pprint;
|
2013-11-30 10:31:07 +00:00
|
|
|
public:
|
2014-03-18 03:32:58 +00:00
|
|
|
SrsEncoder();
|
|
|
|
virtual ~SrsEncoder();
|
2013-11-30 10:31:07 +00:00
|
|
|
public:
|
2018-01-01 11:39:57 +00:00
|
|
|
virtual srs_error_t on_publish(SrsRequest* req);
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual void on_unpublish();
|
2019-04-30 00:30:13 +00:00
|
|
|
// Interface ISrsReusableThreadHandler.
|
2013-12-14 06:06:32 +00:00
|
|
|
public:
|
2017-06-11 10:44:20 +00:00
|
|
|
virtual srs_error_t cycle();
|
2017-05-29 10:42:36 +00:00
|
|
|
private:
|
2017-06-11 10:44:20 +00:00
|
|
|
virtual srs_error_t do_cycle();
|
2013-11-30 11:14:19 +00:00
|
|
|
private:
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual void clear_engines();
|
|
|
|
virtual SrsFFMPEG* at(int index);
|
2018-01-01 11:39:57 +00:00
|
|
|
virtual srs_error_t parse_scope_engines(SrsRequest* req);
|
|
|
|
virtual srs_error_t parse_ffmpeg(SrsRequest* req, SrsConfDirective* conf);
|
|
|
|
virtual srs_error_t initialize_ffmpeg(SrsFFMPEG* ffmpeg, SrsRequest* req, SrsConfDirective* engine);
|
2015-02-19 10:56:21 +00:00
|
|
|
virtual void show_encode_log_message();
|
2013-11-30 10:31:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2013-12-01 09:32:06 +00:00
|
|
|
|