2017-03-25 09:21:39 +00:00
|
|
|
/**
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2019-01-01 13:37:28 +00:00
|
|
|
* Copyright (c) 2013-2019 Winlin
|
2017-03-25 09:21:39 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
|
|
* the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
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
|
|
|
|
2014-03-02 13:49:09 +00:00
|
|
|
#include <srs_app_thread.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();
|
2015-05-23 01:20:16 +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
|
|
|
|