1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-24 06:54:22 +00:00
srs/trunk/src/app/srs_app_encoder.hpp

73 lines
2.3 KiB
C++
Raw Normal View History

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
#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
#include <srs_app_thread.hpp>
2013-11-30 11:14:19 +00:00
2013-11-30 13:02:21 +00:00
class SrsConfDirective;
class SrsRequest;
2013-12-05 15:34:26 +00:00
class SrsPithyPrint;
class SrsFFMPEG;
2013-11-30 13:02:21 +00:00
/**
2017-03-25 09:21:39 +00:00
* the encoder for a stream,
* may use multiple ffmpegs to transcode the specified stream.
*/
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:
SrsCoroutine* trd;
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.
public:
virtual srs_error_t cycle();
private:
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);
virtual void show_encode_log_message();
2013-11-30 10:31:07 +00:00
};
#endif