forked from pool/wavpack
This commit is contained in:
parent
0d3f604830
commit
7d664bc200
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7a40748e07a18f86438eb79ebbb0b6e321d0374f683c6cad91f04c5251e7203c
|
||||
size 329241
|
3
wavpack-4.50.1.tar.bz2
Normal file
3
wavpack-4.50.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:29c036d10fb8bcb6daa58718d112394291887fc0e9b108851017218184483954
|
||||
size 375792
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 4 13:35:36 CEST 2008 - sbrabec@suse.cz
|
||||
|
||||
- Updated to version 4.50.1:
|
||||
* added dynamic noise shaping for improved hybrid quality
|
||||
* added option to merge blocks of similar redundancy
|
||||
* added ability to store and retrieve extra mode level
|
||||
* improved bitrate calculation
|
||||
* improved decoding of corrupt and nonconforming files
|
||||
* added optimize storage of LossyWAV output files
|
||||
* added transcoding API
|
||||
* added metadata writing API
|
||||
* added full Unicode support
|
||||
* multichannel and 24-bit audio improvements
|
||||
* portability and crash fixes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 13 07:06:33 CEST 2007 - crrodriguez@suse.de
|
||||
|
||||
|
58
wavpack.spec
58
wavpack.spec
@ -1,22 +1,30 @@
|
||||
#
|
||||
# spec file for package wavpack (Version 4.41.0)
|
||||
# spec file for package wavpack (Version 4.50.1)
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
Name: wavpack
|
||||
License: BSD 3-Clause
|
||||
Group: Productivity/Multimedia/Sound/Editors and Convertors
|
||||
URL: http://www.wavpack.com/
|
||||
Url: http://www.wavpack.com/
|
||||
Summary: Free Hybrid Lossless Audio Compression Format
|
||||
Version: 4.41.0
|
||||
Release: 6
|
||||
Version: 4.50.1
|
||||
Release: 1
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
# Name used by third parties before openSUSE 10.3:
|
||||
Provides: WavPack = %{version}-%{release}
|
||||
@ -26,22 +34,22 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
WavPack is a completely open audio compression format providing
|
||||
lossless, high-quality lossy, and a unique hybrid compression mode.
|
||||
lossless, high-quality lossy, and unique hybrid compression modes.
|
||||
Although the technology is loosely based on previous versions of
|
||||
WavPack, the new version 4 format has been designed from the ground up
|
||||
to offer unparalleled performance and functionality.
|
||||
|
||||
In the default lossless mode WavPack acts just like a WinZip compressor
|
||||
By default, lossless mode WavPack acts just like a WinZip compressor
|
||||
for audio files. However, unlike MP3 or WMA encoding which can affect
|
||||
the sound quality, not a single bit of the original information is
|
||||
lost, so there's no chance of degradation. This makes lossless mode
|
||||
lost, so there is no chance of degradation. This makes lossless mode
|
||||
ideal for archiving audio material or any other situation where quality
|
||||
is paramount. The compression ratio depends on the source material, but
|
||||
generally is between 30% and 70%.
|
||||
|
||||
The hybrid mode provides all the advantages of lossless compression
|
||||
with an additional bonus. Instead of creating a single file, this mode
|
||||
creates both a relatively small, high-quality lossy file that can be
|
||||
creates both, a relatively small, high-quality lossy file that can be
|
||||
used all by itself, and a "correction" file that (when combined with
|
||||
the lossy file) provides full lossless restoration. For some users this
|
||||
means never having to choose between lossless and lossy compression!
|
||||
@ -53,6 +61,7 @@ Authors:
|
||||
David Bryant <david@wavpack.com>
|
||||
|
||||
%package -n libwavpack1
|
||||
License: BSD 3-Clause
|
||||
Summary: Free Hybrid Lossless Audio Compression Format
|
||||
Group: System/Libraries
|
||||
|
||||
@ -85,6 +94,7 @@ Authors:
|
||||
David Bryant <david@wavpack.com>
|
||||
|
||||
%package devel
|
||||
License: BSD 3-Clause
|
||||
Summary: Free Hybrid Lossless Audio Compression Format
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %{name} = %{version} glibc-devel
|
||||
@ -139,8 +149,8 @@ rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
# AUTHORS NEWS are empty
|
||||
%doc ChangeLog README doc/*.txt
|
||||
# AUTHORS NEWS are empty
|
||||
%doc ChangeLog README license.txt
|
||||
%{_bindir}/*
|
||||
|
||||
%files -n libwavpack1
|
||||
@ -149,14 +159,28 @@ rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%doc doc/*.*
|
||||
%{_includedir}/wavpack
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/pkgconfig/wavpack.pc
|
||||
|
||||
%changelog
|
||||
* Mon Aug 13 2007 - crrodriguez@suse.de
|
||||
* Thu Sep 04 2008 sbrabec@suse.cz
|
||||
- Updated to version 4.50.1:
|
||||
* added dynamic noise shaping for improved hybrid quality
|
||||
* added option to merge blocks of similar redundancy
|
||||
* added ability to store and retrieve extra mode level
|
||||
* improved bitrate calculation
|
||||
* improved decoding of corrupt and nonconforming files
|
||||
* added optimize storage of LossyWAV output files
|
||||
* added transcoding API
|
||||
* added metadata writing API
|
||||
* added full Unicode support
|
||||
* multichannel and 24-bit audio improvements
|
||||
* portability and crash fixes
|
||||
* Mon Aug 13 2007 crrodriguez@suse.de
|
||||
- remove static libraries and useless libtool archive
|
||||
* Fri Jul 27 2007 - sbrabec@suse.cz
|
||||
* Fri Jul 27 2007 sbrabec@suse.cz
|
||||
- Updated to version 4.41.0:
|
||||
* bug fixes
|
||||
* improvements
|
||||
@ -164,8 +188,8 @@ rm -rf $RPM_BUILD_ROOT
|
||||
* new optimization code
|
||||
* for complete list of changes see ChangeLog
|
||||
- Split package according to shared library packaging policy.
|
||||
* Thu Mar 29 2007 - sbrabec@suse.cz
|
||||
* Thu Mar 29 2007 sbrabec@suse.cz
|
||||
- "comparison is always false" warnings fix (David Bryant).
|
||||
* Wed Mar 28 2007 - sbrabec@suse.cz
|
||||
* Wed Mar 28 2007 sbrabec@suse.cz
|
||||
- New SuSE package, version 4.40.0, based on work of Toni Graffy
|
||||
<toni@links2linux.de>.
|
||||
|
Loading…
Reference in New Issue
Block a user