commit c94817ffa4aa7f5055e5b69322789e5cff65d350c6cf8d062056d8e86bbffc38 Author: OBS User autobuild Date: Thu Aug 13 21:18:21 2009 +0000 Accepting request 17549 from multimedia:libs Copy from multimedia:libs/celt based on submit request 17549 from user sbrabec OBS-URL: https://build.opensuse.org/request/show/17549 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/celt?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/celt-0.6.1.tar.bz2 b/celt-0.6.1.tar.bz2 new file mode 100644 index 0000000..7991475 --- /dev/null +++ b/celt-0.6.1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e2965210a70933a90379e0be82f7c9dd233d6335cdfcbf507e4c8edb34e20cf +size 330109 diff --git a/celt.changes b/celt.changes new file mode 100644 index 0000000..7613045 --- /dev/null +++ b/celt.changes @@ -0,0 +1,21 @@ +------------------------------------------------------------------- +Wed Aug 12 11:31:22 CEST 2009 - sbrabec@suse.cz + +- Updated to version 0.6.1: + * Breaks bit-stream compatibility! + * Improves the stereo quality, especially at lower bit-rates. + * Many quality improvements, including better stereo coupling, + better handling of transients, and better handling of highly + tonal signals, packet loss robustness, larger dynamic range, + suitable for encoding 24-bit audio, VBR implementation. + * Pitch prediction improved and simplified. + * New bit allocation algorithm. + * VQ search has been improved, small CPU reduction. + * Fixing some quality problems with low frequency tones. + * Many bug fixes. + +------------------------------------------------------------------- +Mon Dec 1 04:09:13 CET 2008 - crrodriguez@suse.de + +- initial package version + diff --git a/celt.spec b/celt.spec new file mode 100644 index 0000000..db66f0f --- /dev/null +++ b/celt.spec @@ -0,0 +1,113 @@ +# +# spec file for package celt (Version 0.6.1) +# +# Copyright (c) 2009 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: celt +Version: 0.6.1 +Release: 1 +License: BSD +Group: Productivity/Multimedia/Other +Summary: Ultra-Low Delay Audio Codec +Url: http://www.celt-codec.org/ +Source: %{name}-%{version}.tar.bz2 +BuildRequires: libogg-devel +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +The CELT codec is an experimental audio codec for use in low-delay +speech and audio communication. + + + +Authors: +-------- + Jean-Marc Valin + Timothy B. Terriberry + +%package -n libcelt-devel +License: BSD 3-clause (or similar) +Summary: Ultra-Low Delay Audio Codec +Group: Development/Libraries/C and C++ +Requires: libcelt0 = %{version} glibc-devel + +%description -n libcelt-devel +The CELT codec is an experimental audio codec for use in low-delay +speech and audio communication. + + + +Authors: +-------- + Jean-Marc Valin + Timothy B. Terriberry + +%package -n libcelt0 +License: BSD 3-clause (or similar) +Summary: Ultra-Low Delay Audio Codec +Group: System/Libraries + +%description -n libcelt0 +The CELT codec is an experimental audio codec for use in low-delay +speech and audio communication. + + + +Authors: +-------- + Jean-Marc Valin + Timothy B. Terriberry + +%prep +%setup -q + +%build +autoreconf -f -i +%configure\ + --disable-static\ + --with-pic +%{__make} %{?jobs:-j%jobs} + +%install +make DESTDIR=%buildroot install +rm -f %{buildroot}%{_libdir}/*.la + +%clean +rm -rf %buildroot + +%post -n libcelt0 -p /sbin/ldconfig + +%postun -n libcelt0 -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%doc README COPYING TODO +%{_bindir}/celt* + +%files -n libcelt-devel +%defattr(-,root,root) +%dir %{_includedir}/%{name} +%{_includedir}/%{name}/*.h +%{_libdir}/*.so +%{_libdir}/pkgconfig/celt.pc + +%files -n libcelt0 +%defattr(-,root,root) +%{_libdir}/libcelt.so.0* + +%changelog diff --git a/ready b/ready new file mode 100644 index 0000000..473a0f4