Fix AC3 codecstring
This commit is contained in:
parent
b3eb7443f9
commit
6c66a4adb3
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ std::string Util::codecString(const std::string &codec, const std::string &initD
|
||||||
}
|
}
|
||||||
if (codec == "AAC"){return "mp4a.40.2";}
|
if (codec == "AAC"){return "mp4a.40.2";}
|
||||||
if (codec == "MP3"){return "mp4a.40.34";}
|
if (codec == "MP3"){return "mp4a.40.34";}
|
||||||
if (codec == "AC3"){return "ec-3";}
|
if (codec == "AC3"){return "mp4a.a5";}
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue