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

For #913, APP support complex error.

This commit is contained in:
winlin 2018-01-01 19:39:57 +08:00
parent aebbbadf42
commit 6eae93258a
47 changed files with 1098 additions and 1432 deletions

View file

@ -41,15 +41,15 @@ public:
SrsHds();
virtual ~SrsHds();
int on_publish(SrsRequest* req);
int on_unpublish();
srs_error_t on_publish(SrsRequest* req);
srs_error_t on_unpublish();
int on_video(SrsSharedPtrMessage* msg);
int on_audio(SrsSharedPtrMessage* msg);
srs_error_t on_video(SrsSharedPtrMessage* msg);
srs_error_t on_audio(SrsSharedPtrMessage* msg);
private:
int flush_mainfest();
int flush_bootstrap();
srs_error_t flush_mainfest();
srs_error_t flush_bootstrap();
void adjust_windows();
private: