Here is an update to flac 1.4.3.
## FLAC 1.4.3 (23-Jun-2023)
As there have been additions to the libFLAC interfaces, the libFLAC version number is incremented to 13. The libFLAC++ version number stays at 10.
* General
* All PowerPC-specific code has been removed, as it turned out those improvements didn't actually improve anything
* Large improvements in encoder speed for all presets. The largest change is for the fastest presets and for 24-bit and 32-bit inputs.
* Small improvement in decoder speed for BMI2-capable CPUs
* Various documentation fixes and cleanups (Mark Grassi, Jake Schmidt)
* Various fixes (Ozkan Sezer, Zhipeng Xue, orbea, Sam James, Harish Mahendrakar)
* Fix building on Universal Windows Platform (Dmitry KostjuÄenko)
* flac
* A lot of small fixes for bugs found by fuzzing
* Various improvements to the --keep-foreign-metadata and --keep-foreign-metadata-if-present options on decoding
* The output format (WAV/AIFF/RF64 etc.) is now automatically selected based on what kind of foreign metadata is stored
* Decoded file is checked afterwards, to see whether stored foreign format data agrees with FLAC audio properties
* AIFF-C sowt data can now be restored
* Add --force-legacy-wave-format option, to decode to WAV with WAVEFORMATPCM where WAVE_FORMAT_EXTENSIBLE would be more appropriate
* Add --force-aiff-c-none-format and --force-aiff-c-sowt-format to decode to AIFF-C
* The storage of WAVEFORMATEXTENSIBLE_CHANNEL_MASK is no longer restricted to known channel orderings
* Throw an error when WAV or AIFF files are over 4GiB in length and the --ignore-chunk-sizes option is not set
* Warn on testing files when ID3v2 tags are found
* Warn when data trails the audio data of a WAV/AIFF/RF64/W64 file
* Fix output file not being deleted after error on Windows
* Removal of the --sector--align option
* metaflac
* A lot of small fixes for bugs found by fuzzing
* Added options --append and --data-format, which makes it possible to copy metadata blocks from one FLAC file to another
* Added option --remove-all-tags-except
* Added option --show-all-tags (harridu, Martijn van Beurden)
* libFLAC
* No longer write seektables to Ogg, even when specifically asked for. Seektables in Ogg are not defined
* Add functions FLAC__metadata_object_set_raw and FLAC__metadata_object_get_raw to convert between blob and FLAC__StreamMetadata
* Build system
* Autoconf (configure)
* The option --enable-64-bit-words is now on by default
* CMake
* The option ENABLE_64_BIT_WORDS is now on by default
* Testing/validation
* Fuzzers were added for the flac and metaflac command line tools
* Fuzzer coverage was improved
Index: Makefile
===================================================================
RCS file: /home/cvs/ports/audio/flac/Makefile,v
retrieving revision 1.67
diff -u -p -u -p -r1.67 Makefile
--- Makefile 27 Oct 2022 16:56:13 -0000 1.67
+++ Makefile 23 Jun 2023 20:46:34 -0000
@@ -1,9 +1,9 @@
COMMENT= free lossless audio codec
-DISTNAME= flac-1.4.2
+DISTNAME= flac-1.4.3
CATEGORIES= audio archivers
HOMEPAGE= https://www.xiph.org/flac/
-SHARED_LIBS += FLAC 13.0 # 12.0
+SHARED_LIBS += FLAC 13.1 # 12.0
SHARED_LIBS += FLAC++ 11.0 # 10.0
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
@@ -18,17 +18,14 @@ WANTLIB= c iconv m ogg ${COMPILER_LIBCXX
COMPILER = base-clang ports-gcc base-gcc
-LIB_DEPENDS= audio/libogg converters/libiconv
+LIB_DEPENDS= audio/libogg \
+ converters/libiconv
CONFIGURE_STYLE=gnu
-CONFIGURE_ARGS= --disable-altivec \
- --disable-doxygen-docs \
+CONFIGURE_ARGS= --disable-doxygen-docs \
--disable-thorough-tests
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
-
-# powerpc64 doesn't support VSX yet
-CONFIGURE_ARGS += --disable-vsx
DEBUG_PACKAGES= ${BUILD_PACKAGES}
Index: distinfo
===================================================================
RCS file: /home/cvs/ports/audio/flac/distinfo,v
retrieving revision 1.16
diff -u -p -u -p -r1.16 distinfo
--- distinfo 27 Oct 2022 15:07:32 -0000 1.16
+++ distinfo 23 Jun 2023 20:39:18 -0000
@@ -1,2 +1,2 @@
-SHA256 (flac-1.4.2.tar.xz) = 4yLVih9I0j2d049DJnKGX2955zpvnMWl9X/KqD61qOQ=
-SIZE (flac-1.4.2.tar.xz) = 1013700
+SHA256 (flac-1.4.3.tar.xz) = bFjmnNIjSPRBuGEJK4JeWR0Lgi4QbebrDuTQXScgW3A=
+SIZE (flac-1.4.3.tar.xz) = 1006728
Index: patches/patch-configure
===================================================================
RCS file: /home/cvs/ports/audio/flac/patches/patch-configure,v
retrieving revision 1.18
diff -u -p -u -p -r1.18 patch-configure
--- patches/patch-configure 27 Oct 2022 15:07:32 -0000 1.18
+++ patches/patch-configure 23 Jun 2023 20:43:50 -0000
@@ -1,14 +1,14 @@
Index: configure
--- configure.orig
+++ configure
-@@ -21455,8 +21455,8 @@ fi
- if test "x${ax_enable_debug}" = "xno"
+@@ -21404,8 +21404,8 @@ if test x$ac_cv_c_compiler_gnu = xyes -o x$xiph_cv_c_c
+ if test "x${ax_enable_debug}" = "xno"
then :
-- CFLAGS="-O3 -funroll-loops $CFLAGS"
-- CXXFLAGS="-O3 $CXXFLAGS"
-+ #CFLAGS="-O3 -funroll-loops $CFLAGS"
-+ #CXXFLAGS="-O3 $CXXFLAGS"
+- CFLAGS="-O3 -funroll-loops $CFLAGS"
+- CXXFLAGS="-O3 $CXXFLAGS"
++ #CFLAGS="-O3 -funroll-loops $CFLAGS"
++ #CXXFLAGS="-O3 $CXXFLAGS"
fi
No comments:
Post a Comment