mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
FLV: Support set default has_av and disable guessing. v5.0.110 (#3311)
* FLV: Support set default has_av and disable guessing. v5.0.110 1. Support config default has_audio and has_video. 2. Support disable guessing has_audio or has_video. * FLV: Reset to false if start to guess has_av. * FLV: Add regression test for FLV header av metadata.
This commit is contained in:
parent
4551200e95
commit
a36cb57949
11 changed files with 624 additions and 84 deletions
|
@ -2600,7 +2600,8 @@ srs_error_t SrsConfig::check_normal_config()
|
|||
} else if (n == "http_remux") {
|
||||
for (int j = 0; j < (int)conf->directives.size(); j++) {
|
||||
string m = conf->at(j)->name;
|
||||
if (m != "enabled" && m != "mount" && m != "fast_cache" && m != "drop_if_not_match") {
|
||||
if (m != "enabled" && m != "mount" && m != "fast_cache" && m != "drop_if_not_match"
|
||||
&& m != "has_audio" && m != "has_video" && m != "guess_has_av") {
|
||||
return srs_error_new(ERROR_SYSTEM_CONFIG_INVALID, "illegal vhost.http_remux.%s of %s", m.c_str(), vhost->arg0().c_str());
|
||||
}
|
||||
}
|
||||
|
@ -8265,6 +8266,78 @@ bool SrsConfig::get_vhost_http_remux_drop_if_not_match(string vhost)
|
|||
return SRS_CONF_PERFER_TRUE(conf->arg0());
|
||||
}
|
||||
|
||||
bool SrsConfig::get_vhost_http_remux_has_audio(string vhost)
|
||||
{
|
||||
SRS_OVERWRITE_BY_ENV_BOOL2("srs.vhost.http_remux.has_audio"); // SRS_VHOST_HTTP_REMUX_HAS_AUDIO
|
||||
|
||||
static bool DEFAULT = true;
|
||||
|
||||
SrsConfDirective* conf = get_vhost(vhost);
|
||||
if (!conf) {
|
||||
return DEFAULT;
|
||||
}
|
||||
|
||||
conf = conf->get("http_remux");
|
||||
if (!conf) {
|
||||
return DEFAULT;
|
||||
}
|
||||
|
||||
conf = conf->get("has_audio");
|
||||
if (!conf || conf->arg0().empty()) {
|
||||
return DEFAULT;
|
||||
}
|
||||
|
||||
return SRS_CONF_PERFER_TRUE(conf->arg0());
|
||||
}
|
||||
|
||||
bool SrsConfig::get_vhost_http_remux_has_video(string vhost)
|
||||
{
|
||||
SRS_OVERWRITE_BY_ENV_BOOL2("srs.vhost.http_remux.has_video"); // SRS_VHOST_HTTP_REMUX_HAS_VIDEO
|
||||
|
||||
static bool DEFAULT = true;
|
||||
|
||||
SrsConfDirective* conf = get_vhost(vhost);
|
||||
if (!conf) {
|
||||
return DEFAULT;
|
||||
}
|
||||
|
||||
conf = conf->get("http_remux");
|
||||
if (!conf) {
|
||||
return DEFAULT;
|
||||
}
|
||||
|
||||
conf = conf->get("has_video");
|
||||
if (!conf || conf->arg0().empty()) {
|
||||
return DEFAULT;
|
||||
}
|
||||
|
||||
return SRS_CONF_PERFER_TRUE(conf->arg0());
|
||||
}
|
||||
|
||||
bool SrsConfig::get_vhost_http_remux_guess_has_av(string vhost)
|
||||
{
|
||||
SRS_OVERWRITE_BY_ENV_BOOL2("srs.vhost.http_remux.guess_has_av"); // SRS_VHOST_HTTP_REMUX_GUESS_HAS_AV
|
||||
|
||||
static bool DEFAULT = true;
|
||||
|
||||
SrsConfDirective* conf = get_vhost(vhost);
|
||||
if (!conf) {
|
||||
return DEFAULT;
|
||||
}
|
||||
|
||||
conf = conf->get("http_remux");
|
||||
if (!conf) {
|
||||
return DEFAULT;
|
||||
}
|
||||
|
||||
conf = conf->get("guess_has_av");
|
||||
if (!conf || conf->arg0().empty()) {
|
||||
return DEFAULT;
|
||||
}
|
||||
|
||||
return SRS_CONF_PERFER_TRUE(conf->arg0());
|
||||
}
|
||||
|
||||
string SrsConfig::get_vhost_http_remux_mount(string vhost)
|
||||
{
|
||||
SRS_OVERWRITE_BY_ENV_STRING("srs.vhost.http_remux.mount"); // SRS_VHOST_HTTP_REMUX_MOUNT
|
||||
|
|
|
@ -1066,6 +1066,12 @@ public:
|
|||
virtual srs_utime_t get_vhost_http_remux_fast_cache(std::string vhost);
|
||||
// Whether drop packet if not match header.
|
||||
bool get_vhost_http_remux_drop_if_not_match(std::string vhost);
|
||||
// Whether stream has audio track.
|
||||
bool get_vhost_http_remux_has_audio(std::string vhost);
|
||||
// Whether stream has video track.
|
||||
bool get_vhost_http_remux_has_video(std::string vhost);
|
||||
// Whether guessing stream about audio or video track
|
||||
bool get_vhost_http_remux_guess_has_av(std::string vhost);
|
||||
// Get the http flv live stream mount point for vhost.
|
||||
// used to generate the flv stream mount path.
|
||||
virtual std::string get_vhost_http_remux_mount(std::string vhost);
|
||||
|
|
|
@ -238,6 +238,9 @@ SrsFlvStreamEncoder::SrsFlvStreamEncoder()
|
|||
{
|
||||
header_written = false;
|
||||
enc = new SrsFlvTransmuxer();
|
||||
has_audio_ = true;
|
||||
has_video_ = true;
|
||||
guess_has_av_ = true;
|
||||
}
|
||||
|
||||
SrsFlvStreamEncoder::~SrsFlvStreamEncoder()
|
||||
|
@ -260,7 +263,7 @@ srs_error_t SrsFlvStreamEncoder::write_audio(int64_t timestamp, char* data, int
|
|||
{
|
||||
srs_error_t err = srs_success;
|
||||
|
||||
if ((err = write_header()) != srs_success) {
|
||||
if ((err = write_header(has_video_, has_audio_)) != srs_success) {
|
||||
return srs_error_wrap(err, "write header");
|
||||
}
|
||||
|
||||
|
@ -271,7 +274,7 @@ srs_error_t SrsFlvStreamEncoder::write_video(int64_t timestamp, char* data, int
|
|||
{
|
||||
srs_error_t err = srs_success;
|
||||
|
||||
if ((err = write_header()) != srs_success) {
|
||||
if ((err = write_header(has_video_, has_audio_)) != srs_success) {
|
||||
return srs_error_wrap(err, "write header");
|
||||
}
|
||||
|
||||
|
@ -282,7 +285,7 @@ srs_error_t SrsFlvStreamEncoder::write_metadata(int64_t timestamp, char* data, i
|
|||
{
|
||||
srs_error_t err = srs_success;
|
||||
|
||||
if ((err = write_header()) != srs_success) {
|
||||
if ((err = write_header(has_video_, has_audio_)) != srs_success) {
|
||||
return srs_error_wrap(err, "write header");
|
||||
}
|
||||
|
||||
|
@ -294,6 +297,21 @@ void SrsFlvStreamEncoder::set_drop_if_not_match(bool v)
|
|||
enc->set_drop_if_not_match(v);
|
||||
}
|
||||
|
||||
void SrsFlvStreamEncoder::set_has_audio(bool v)
|
||||
{
|
||||
has_audio_ = v;
|
||||
}
|
||||
|
||||
void SrsFlvStreamEncoder::set_has_video(bool v)
|
||||
{
|
||||
has_video_ = v;
|
||||
}
|
||||
|
||||
void SrsFlvStreamEncoder::set_guess_has_av(bool v)
|
||||
{
|
||||
guess_has_av_ = v;
|
||||
}
|
||||
|
||||
bool SrsFlvStreamEncoder::has_cache()
|
||||
{
|
||||
// for flv stream, use gop cache of SrsLiveSource is ok.
|
||||
|
@ -310,31 +328,39 @@ srs_error_t SrsFlvStreamEncoder::write_tags(SrsSharedPtrMessage** msgs, int coun
|
|||
{
|
||||
srs_error_t err = srs_success;
|
||||
|
||||
// Ignore if no messages.
|
||||
if (count <= 0) return err;
|
||||
|
||||
// For https://github.com/ossrs/srs/issues/939
|
||||
if (!header_written) {
|
||||
bool has_video = false; bool has_audio = false;
|
||||
int nn_video_frames = 0; int nn_audio_frames = 0;
|
||||
bool has_video = has_audio_; bool has_audio = has_video_;
|
||||
|
||||
// Note that we must iterate all messages to count the audio and video frames.
|
||||
for (int i = 0; i < count; i++) {
|
||||
SrsSharedPtrMessage* msg = msgs[i];
|
||||
if (msg->is_video()) {
|
||||
if (!SrsFlvVideo::sh(msg->payload, msg->size)) nn_video_frames++;
|
||||
has_video = true;
|
||||
} else if (msg->is_audio()) {
|
||||
if (!SrsFlvAudio::sh(msg->payload, msg->size)) nn_audio_frames++;
|
||||
has_audio = true;
|
||||
// See https://github.com/ossrs/srs/issues/939#issuecomment-1351385460
|
||||
if (guess_has_av_) {
|
||||
int nn_video_frames = 0; int nn_audio_frames = 0;
|
||||
has_audio = has_video = false;
|
||||
|
||||
// Note that we must iterate all messages to count the audio and video frames.
|
||||
for (int i = 0; i < count; i++) {
|
||||
SrsSharedPtrMessage* msg = msgs[i];
|
||||
if (msg->is_video()) {
|
||||
if (!SrsFlvVideo::sh(msg->payload, msg->size)) nn_video_frames++;
|
||||
has_video = true;
|
||||
} else if (msg->is_audio()) {
|
||||
if (!SrsFlvAudio::sh(msg->payload, msg->size)) nn_audio_frames++;
|
||||
has_audio = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// See https://github.com/ossrs/srs/issues/939#issuecomment-1348541733
|
||||
if (nn_video_frames > 0 && nn_audio_frames == 0) {
|
||||
if (has_audio) srs_trace("FLV: Reset has_audio for videos=%d and audios=%d", nn_video_frames, nn_audio_frames);
|
||||
has_audio = false;
|
||||
}
|
||||
if (nn_audio_frames > 0 && nn_video_frames == 0) {
|
||||
if (has_video) srs_trace("FLV: Reset has_video for videos=%d and audios=%d", nn_video_frames, nn_audio_frames);
|
||||
has_video = false;
|
||||
// See https://github.com/ossrs/srs/issues/939#issuecomment-1348541733
|
||||
if (nn_video_frames > 0 && nn_audio_frames == 0) {
|
||||
if (has_audio) srs_trace("FLV: Reset has_audio for videos=%d and audios=%d", nn_video_frames, nn_audio_frames);
|
||||
has_audio = false;
|
||||
}
|
||||
if (nn_audio_frames > 0 && nn_video_frames == 0) {
|
||||
if (has_video) srs_trace("FLV: Reset has_video for videos=%d and audios=%d", nn_video_frames, nn_audio_frames);
|
||||
has_video = false;
|
||||
}
|
||||
}
|
||||
|
||||
// Drop data if no A+V.
|
||||
|
@ -347,6 +373,7 @@ srs_error_t SrsFlvStreamEncoder::write_tags(SrsSharedPtrMessage** msgs, int coun
|
|||
}
|
||||
}
|
||||
|
||||
// Write tags after header is done.
|
||||
return enc->write_tags(msgs, count);
|
||||
}
|
||||
|
||||
|
@ -361,7 +388,8 @@ srs_error_t SrsFlvStreamEncoder::write_header(bool has_video, bool has_audio)
|
|||
return srs_error_wrap(err, "write header");
|
||||
}
|
||||
|
||||
srs_trace("FLV: write header audio=%d, video=%d, dinm=%d", has_audio, has_video, enc->drop_if_not_match());
|
||||
srs_trace("FLV: write header audio=%d, video=%d, dinm=%d, config=%d/%d/%d", has_audio, has_video,
|
||||
enc->drop_if_not_match(), has_audio_, has_video_, guess_has_av_);
|
||||
}
|
||||
|
||||
return err;
|
||||
|
@ -584,12 +612,18 @@ srs_error_t SrsLiveStream::do_serve_http(ISrsHttpResponseWriter* w, ISrsHttpMess
|
|||
|
||||
srs_assert(entry);
|
||||
bool drop_if_not_match = _srs_config->get_vhost_http_remux_drop_if_not_match(req->vhost);
|
||||
bool has_audio = _srs_config->get_vhost_http_remux_has_audio(req->vhost);
|
||||
bool has_video = _srs_config->get_vhost_http_remux_has_video(req->vhost);
|
||||
bool guess_has_av = _srs_config->get_vhost_http_remux_guess_has_av(req->vhost);
|
||||
|
||||
if (srs_string_ends_with(entry->pattern, ".flv")) {
|
||||
w->header()->set_content_type("video/x-flv");
|
||||
enc_desc = "FLV";
|
||||
enc = new SrsFlvStreamEncoder();
|
||||
((SrsFlvStreamEncoder*)enc)->set_drop_if_not_match(drop_if_not_match);
|
||||
((SrsFlvStreamEncoder*)enc)->set_has_audio(has_audio);
|
||||
((SrsFlvStreamEncoder*)enc)->set_has_video(has_video);
|
||||
((SrsFlvStreamEncoder*)enc)->set_guess_has_av(guess_has_av);
|
||||
} else if (srs_string_ends_with(entry->pattern, ".aac")) {
|
||||
w->header()->set_content_type("audio/x-aac");
|
||||
enc_desc = "AAC";
|
||||
|
@ -659,8 +693,9 @@ srs_error_t SrsLiveStream::do_serve_http(ISrsHttpResponseWriter* w, ISrsHttpMess
|
|||
}
|
||||
|
||||
srs_utime_t mw_sleep = _srs_config->get_mw_sleep(req->vhost);
|
||||
srs_trace("FLV %s, encoder=%s, mw_sleep=%dms, cache=%d, msgs=%d, dinm=%d", entry->pattern.c_str(), enc_desc.c_str(),
|
||||
srsu2msi(mw_sleep), enc->has_cache(), msgs.max, drop_if_not_match);
|
||||
srs_trace("FLV %s, encoder=%s, mw_sleep=%dms, cache=%d, msgs=%d, dinm=%d, guess_av=%d/%d/%d",
|
||||
entry->pattern.c_str(), enc_desc.c_str(), srsu2msi(mw_sleep), enc->has_cache(), msgs.max, drop_if_not_match,
|
||||
has_audio, has_video, guess_has_av);
|
||||
|
||||
// TODO: free and erase the disabled entry after all related connections is closed.
|
||||
// TODO: FXIME: Support timeout for player, quit infinite-loop.
|
||||
|
|
|
@ -68,6 +68,9 @@ class SrsFlvStreamEncoder : public ISrsBufferEncoder
|
|||
private:
|
||||
SrsFlvTransmuxer* enc;
|
||||
bool header_written;
|
||||
bool has_audio_;
|
||||
bool has_video_;
|
||||
bool guess_has_av_;
|
||||
public:
|
||||
SrsFlvStreamEncoder();
|
||||
virtual ~SrsFlvStreamEncoder();
|
||||
|
@ -78,13 +81,17 @@ public:
|
|||
virtual srs_error_t write_metadata(int64_t timestamp, char* data, int size);
|
||||
public:
|
||||
void set_drop_if_not_match(bool v);
|
||||
void set_has_audio(bool v);
|
||||
void set_has_video(bool v);
|
||||
void set_guess_has_av(bool v);
|
||||
public:
|
||||
virtual bool has_cache();
|
||||
virtual srs_error_t dump_cache(SrsLiveConsumer* consumer, SrsRtmpJitterAlgorithm jitter);
|
||||
public:
|
||||
// Write the tags in a time.
|
||||
virtual srs_error_t write_tags(SrsSharedPtrMessage** msgs, int count);
|
||||
private:
|
||||
virtual srs_error_t write_header(bool has_video = true, bool has_audio = true);
|
||||
virtual srs_error_t write_header(bool has_video, bool has_audio);
|
||||
};
|
||||
|
||||
// Transmux RTMP to HTTP TS Streaming.
|
||||
|
|
|
@ -9,6 +9,6 @@
|
|||
|
||||
#define VERSION_MAJOR 5
|
||||
#define VERSION_MINOR 0
|
||||
#define VERSION_REVISION 109
|
||||
#define VERSION_REVISION 110
|
||||
|
||||
#endif
|
||||
|
|
|
@ -4688,6 +4688,36 @@ VOID TEST(ConfigEnvTest, CheckEnvValuesHttpRemux)
|
|||
SrsSetEnvConfig(drop_if_not_match2, "SRS_VHOST_HTTP_REMUX_DROP_IF_NOT_MATCH", "on");
|
||||
EXPECT_TRUE(conf.get_vhost_http_remux_drop_if_not_match("__defaultVhost__"));
|
||||
}
|
||||
|
||||
if (true) {
|
||||
EXPECT_TRUE(conf.get_vhost_http_remux_has_audio("__defaultVhost__"));
|
||||
|
||||
SrsSetEnvConfig(has_audio, "SRS_VHOST_HTTP_REMUX_HAS_AUDIO", "off");
|
||||
EXPECT_FALSE(conf.get_vhost_http_remux_has_audio("__defaultVhost__"));
|
||||
|
||||
SrsSetEnvConfig(has_audio2, "SRS_VHOST_HTTP_REMUX_HAS_AUDIO", "on");
|
||||
EXPECT_TRUE(conf.get_vhost_http_remux_has_audio("__defaultVhost__"));
|
||||
}
|
||||
|
||||
if (true) {
|
||||
EXPECT_TRUE(conf.get_vhost_http_remux_has_video("__defaultVhost__"));
|
||||
|
||||
SrsSetEnvConfig(has_video, "SRS_VHOST_HTTP_REMUX_HAS_VIDEO", "off");
|
||||
EXPECT_FALSE(conf.get_vhost_http_remux_has_video("__defaultVhost__"));
|
||||
|
||||
SrsSetEnvConfig(has_video2, "SRS_VHOST_HTTP_REMUX_HAS_VIDEO", "on");
|
||||
EXPECT_TRUE(conf.get_vhost_http_remux_has_video("__defaultVhost__"));
|
||||
}
|
||||
|
||||
if (true) {
|
||||
EXPECT_TRUE(conf.get_vhost_http_remux_guess_has_av("__defaultVhost__"));
|
||||
|
||||
SrsSetEnvConfig(guess_has_av, "SRS_VHOST_HTTP_REMUX_GUESS_HAS_AV", "off");
|
||||
EXPECT_FALSE(conf.get_vhost_http_remux_guess_has_av("__defaultVhost__"));
|
||||
|
||||
SrsSetEnvConfig(guess_has_av2, "SRS_VHOST_HTTP_REMUX_GUESS_HAS_AV", "on");
|
||||
EXPECT_TRUE(conf.get_vhost_http_remux_guess_has_av("__defaultVhost__"));
|
||||
}
|
||||
}
|
||||
|
||||
VOID TEST(ConfigEnvTest, CheckEnvValuesDash)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue