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

h264 packet done, chrome play well

This commit is contained in:
HuyaJohn 2020-03-11 04:21:44 -07:00
parent e831f3254a
commit da72caf8b9
6 changed files with 169 additions and 297 deletions

View file

@ -30,6 +30,7 @@
#include <string>
#include <sstream>
#include <limits.h>
#include <arpa/inet.h>
#include <sys/resource.h>
@ -649,5 +650,8 @@ extern bool srs_is_boolean(std::string str);
// Dump summaries for /api/v1/summaries.
extern void srs_api_dump_summaries(SrsJsonObject* obj);
extern std::string dump_string_hex(const std::string& str, const int& max_len = INT_MAX);
extern std::string dump_string_hex(const char* buf, const int nb_buf, const int& max_len = INT_MAX);
#endif