1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

add dvr_plan hss to full.conf

This commit is contained in:
winlin 2014-04-30 11:56:19 +08:00
parent aebff659b6
commit 30bb3ff704
8 changed files with 48 additions and 45 deletions

View file

@ -124,19 +124,19 @@ public:
static void on_stop(std::string url, int client_id, std::string ip, SrsRequest* req);
public:
/**
* on_dvr_reap_flv_header hook, when dvr write flv file header.
* on_dvr_hss_reap_flv_header hook, when dvr write flv file header.
* @param url the api server url, to process the event.
* ignore if empty.
* @param header_file the flv header file.
*/
static void on_dvr_reap_flv_header(std::string url, SrsRequest* req, std::string header_file);
static void on_dvr_hss_reap_flv_header(std::string url, SrsRequest* req, std::string header_file);
/**
* on_dvr_reap_flv hook, when dvr close flv file.
* on_dvr_hss_reap_flv hook, when dvr close flv file.
* @param url the api server url, to process the event.
* ignore if empty.
* @param segment the current flv segment.
*/
static void on_dvr_reap_flv(std::string url, SrsRequest* req, SrsFlvSegment* segment);
static void on_dvr_hss_reap_flv(std::string url, SrsRequest* req, SrsFlvSegment* segment);
};
#endif