summaryrefslogtreecommitdiff
path: root/audio/libaudiofile/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* audio/libaudiofile: fix build with clang 19, enable testsDimitry Andric2024-09-286-0/+93
| | | | | | | | | | | | | | | | | | | | | | | | | Clang 19 has become more strict about initialization with undefined behavior, resulting in errors similar to: ./SimpleModule.h:126:40: error: in-class initializer for static data member is not a constant expression 126 | static const int kMinSignedValue = -1 << kScaleBits; | ~~~^~~~~~~~~~~~~ ./SimpleModule.h:176:22: note: in instantiation of template class 'signConverter<kInt8>' requested here 176 | transform<typename signConverter<Format>::signedToUnsigned>(src, dst, count); | ^ ./SimpleModule.h:183:5: note: in instantiation of function template specialization 'ConvertSign::convertSignedToUnsigned<kInt8>' requested here 183 | convertSignedToUnsigned<kInt8>(src, dst, count); | ^ This is because left-shifting negative values is undefined. Replace -1 with ~0u which results in the expected value. While here, add a few other patches to remove warnings about undefined left-shifts, and add support for the "make test" target. PR: 281477 Approved by: maintainer timeout (2 weeks) MFH: 2024Q3
* Update to 0.3.6.Koop Mast2013-11-081-45/+0
| | | | | | | | | | This update supports a number of new codecs. Remove indiffently argument from COMMENT Update pkg-descr to supported codec list. Stageify. Notes: svn path=/head/; revision=333231
* Update to 0.2.7.Joe Marcus Clarke2010-05-221-14/+0
| | | | Notes: svn path=/head/; revision=254790
* Quote first argument to AC_DEFUN() to shut up aclocal warning.Christian Weisgerber2009-09-161-0/+14
| | | | | | | | Submitted by: Grzegorz Blach <magik@roorback.net> Feature safe: yes Notes: svn path=/head/; revision=241544
* Update to 0.2.3.Maxim Sobolev2002-02-201-0/+45
| | | | Notes: svn path=/head/; revision=54995
* remove obsolete patch.Vanilla I. Shu2001-03-061-11/+0
| | | | | | | Submitted by: Anders Andersson <anders@codefactory.se>, Joshua Coombs <jcoombs@gwi.net> Notes: svn path=/head/; revision=39148
* Upgrade to 0.2.0Vanilla I. Shu2001-01-081-8/+8
| | | | | | | Submitted by: sobomax Notes: svn path=/head/; revision=36958
* Don't hack CFLAGS support. Do it the right way.Jeremy Lea2000-10-021-0/+11
Notes: svn path=/head/; revision=33334