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
This commit is contained in:
OBS User autobuild 2009-08-13 21:18:21 +00:00 committed by Git OBS Bridge
commit c94817ffa4
6 changed files with 161 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
celt-0.6.1.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7e2965210a70933a90379e0be82f7c9dd233d6335cdfcbf507e4c8edb34e20cf
size 330109

21
celt.changes Normal file
View File

@ -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

113
celt.spec Normal file
View File

@ -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

0
ready Normal file
View File