♻️ cleanup aac code

Removes unsupported codecs from our liquidsoap code
This commit is contained in:
Lucas Bickel 2019-01-20 15:37:21 +01:00
parent 87b8ef4f91
commit a526a59ef4
3 changed files with 2 additions and 158 deletions

View file

@ -154,20 +154,6 @@ def output_to(output_type, type, bitrate, host, port, pass, mount_point, url, de
end
%endif
# FDK-AAC is the only good AAC encoder. libvoaac is deprecated and aacplus is subpar.
# The difference in compression quality is clearly audible. -- Albert
# %ifencoder %aac
# if type == "aac" then
# %include "aac.liq"
# end
# %endif
# %ifencoder %aacplus
# if type == "aacplus" then
# %include "aacplus.liq"
# end
# %endif
%ifencoder %fdkaac
if type == "aac" then
%include "fdkaac.liq"
@ -207,15 +193,9 @@ def output_to(output_type, type, bitrate, host, port, pass, mount_point, url, de
%include "mp3.liq"
end
%ifencoder %aac
%ifencoder %fdkaac
if type == "aac" then
%include "aac.liq"
end
%endif
%ifencoder %aacplus
if type == "aacplus" then
%include "aacplus.liq"
%include "fdkaac.liq"
end
%endif
end