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

refine librtmp, remove the ssl functoins, refine the type2string memory alloc to static

This commit is contained in:
winlin 2014-06-07 13:44:46 +08:00
parent 48adeeb1a5
commit 373f92551d
2 changed files with 12 additions and 21 deletions

View file

@ -239,14 +239,19 @@ int srs_publish_stream(srs_rtmp_t rtmp)
const char* srs_type2string(int type)
{
static const char* audio = "Audio";
static const char* video = "Video";
static const char* data = "Data";
static const char* unknown = "Unknown";
switch (type) {
case SRS_RTMP_TYPE_AUDIO: return "Audio";
case SRS_RTMP_TYPE_VIDEO: return "Video";
case SRS_RTMP_TYPE_SCRIPT: return "Data";
default: return "Unknown";
case SRS_RTMP_TYPE_AUDIO: return audio;
case SRS_RTMP_TYPE_VIDEO: return video;
case SRS_RTMP_TYPE_SCRIPT: return data;
default: return unknown;
}
return "Unknown";
return unknown;
}
int srs_read_packet(srs_rtmp_t rtmp, int* type, u_int32_t* timestamp, char** data, int* size)
@ -355,14 +360,6 @@ int srs_write_packet(srs_rtmp_t rtmp, int type, u_int32_t timestamp, char* data,
return ret;
}
int srs_ssl_enabled()
{
#ifndef SRS_AUTO_SSL
return false;
#endif
return true;
}
int srs_version_major()
{
return ::atoi(VERSION_MAJOR);