From 831d7c3c400b554484561bf912c1f9657f8192cd Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 16 Jun 2015 20:57:43 +0200 Subject: audio: remove S8, U16, U24, U32 formats They are useless. Not only are they actually rarely in use; but libavcodec doesn't even output them, as libavcodec has no such sample formats for decoded audio. Even if it should happen that we actually still need them (e.g. if doing direct hardware output), there are better solutions. Swapping the sign is a fast and lossless operation and can be done inplace, so AO actually needing it could do this directly. If you wonder why we keep U8 instead of S8: because libavcodec does it. --- wscript_build.py | 1 - 1 file changed, 1 deletion(-) (limited to 'wscript_build.py') diff --git a/wscript_build.py b/wscript_build.py index 26d622a9d9..76be30cde8 100644 --- a/wscript_build.py +++ b/wscript_build.py @@ -104,7 +104,6 @@ def build(ctx): ( "audio/filter/af_center.c" ), ( "audio/filter/af_channels.c" ), ( "audio/filter/af_convert24.c" ), - ( "audio/filter/af_convertsignendian.c" ), ( "audio/filter/af_delay.c" ), ( "audio/filter/af_drc.c" ), ( "audio/filter/af_dummy.c" ), -- cgit v1.2.3