From 2d50fe7da9b13412db2f5b84575951624b413b2d Mon Sep 17 00:00:00 2001 From: Erik Zandvliet Date: Mon, 30 Sep 2013 09:47:42 +0200 Subject: [PATCH] Fixed H.263 and VP6 support in progressive flv --- src/connectors/conn_http_progressive_flv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connectors/conn_http_progressive_flv.cpp b/src/connectors/conn_http_progressive_flv.cpp index 61dec82a..2c20c4ff 100644 --- a/src/connectors/conn_http_progressive_flv.cpp +++ b/src/connectors/conn_http_progressive_flv.cpp @@ -171,7 +171,7 @@ namespace Connector_HTTP { } if (Strm.lastType() == DTSC::AUDIO || Strm.lastType() == DTSC::VIDEO){ std::string codec = Strm.getTrackById(Strm.getPacket()["trackid"].asInt())["codec"].asString(); - if (codec == "AAC" || codec == "MP3" || codec == "H264"){ + if (codec == "AAC" || codec == "MP3" || codec == "H264" || codec == "H263" || codec == "VP6"){ tag.DTSCLoader(Strm); conn.SendNow(tag.data, tag.len); //write the tag contents }