Merge branch 'development' into LTS_development

# Conflicts:
#	src/output/output_progressive_flv.cpp
#	src/output/output_rtmp.cpp
This commit is contained in:
Thulinma 2017-06-19 12:46:41 +02:00
commit de4fea643a
5 changed files with 134 additions and 71 deletions

View file

@ -182,7 +182,11 @@ const char * FLV::Tag::getVideoCodec() {
const char * FLV::Tag::getAudioCodec() {
switch (data[11] & 0xF0) {
case 0x00:
return "PCMPE";
if (data[11] & 0x02){
return "PCMPE";//unknown endianness
}else{
return "PCM";//8 bit is always regular PCM
}
case 0x10:
return "ADPCM";
case 0x20: