--- opus-tools-0.1.10.orig/debian/changelog +++ opus-tools-0.1.10/debian/changelog @@ -0,0 +1,49 @@ +opus-tools (0.1.10-1) unstable; urgency=medium + + * Improved handling of malformed input files to avoid crashes and other + troublesome behavior. Closes: #780160 + * Enable pcap support for opusrtp. + * Fix channel mask in mono float WAV output, it now uses 4 (front center) + instead of 1 (front left). There is no standard saying exactly what this + should be, but we're now more in line with what several other tools do in + this case. + * Fix support for files with more than 80 channels. + + -- Ron Lee Mon, 23 Jan 2017 15:57:22 +1030 + +opus-tools (0.1.9-1) unstable; urgency=medium + + * Add support for 32-bit float output from opusdec. + * Make opusenc --discard-comments discard album art, add --discard-pictures. + * Set correct lsb depth for WAV and AIFF input. + * Fix 8-bit AIFF input. + + -- Ron Lee Sat, 04 Oct 2014 13:37:31 +0930 + +opus-tools (0.1.8-1) unstable; urgency=low + + * Don't overlink everything with FLAC, only opusenc uses it at present. + * Fixes copying pictures from FLAC with a mimetype. + + -- Ron Lee Mon, 09 Dec 2013 00:59:41 +1030 + +opus-tools (0.1.6+20130713-1) unstable; urgency=low + + * Preview snapshot for use with opus 1.1-beta and the new + surround encoding improvements. + * Adds support for encoding directly from FLAC. + + -- Ron Lee Sat, 13 Jul 2013 19:56:45 +0930 + +opus-tools (0.1.2-1) unstable; urgency=low + + * Better error detection and reporting for a number of cases. + + -- Ron Lee Wed, 13 Jun 2012 10:05:07 +0930 + +opus-tools (0.1.0+20120529-1) unstable; urgency=low + + * Initial release. Closes: #674292 + + -- Ron Lee Tue, 22 May 2012 01:38:18 +0930 + --- opus-tools-0.1.10.orig/debian/compat +++ opus-tools-0.1.10/debian/compat @@ -0,0 +1 @@ +5 --- opus-tools-0.1.10.orig/debian/control +++ opus-tools-0.1.10/debian/control @@ -0,0 +1,27 @@ +Source: opus-tools +Section: sound +Priority: optional +Maintainer: Ron Lee +Build-Depends: debhelper (>= 5), libopus-dev (>= 1.1~beta), libogg-dev, + libflac-dev, libpcap0.8-dev, pkg-config +Standards-Version: 3.9.8.0 +Homepage: http://www.opus-codec.org +Vcs-Git: git://git.debian.org/users/ron/opus-tools.git +Vcs-Browser: http://git.debian.org/?p=users/ron/opus-tools.git + +Package: opus-tools +Architecture: any +Depends: ${shlibs:Depends} +Description: Opus codec command line tools + This package provides the reference implementations of encoder and decoder + utilities for libopus. People implementing their own support for Opus are + encouraged to check their code for interoperability with these tools. + +Package: opus-tools-dbg +Section: debug +Priority: extra +Architecture: any +Depends: opus-tools (= ${binary:Version}) +Description: debugging symbols for opus-tools + This package provides the detached debug symbols for opus-tools. + --- opus-tools-0.1.10.orig/debian/copyright +++ opus-tools-0.1.10/debian/copyright @@ -0,0 +1,47 @@ +This package was debianised by Ron on +Tue, 22 May 2012 01:38:18 +0930 + +Upstream source was cloned from http://git.xiph.org/opus-tools.git + + + The opusinfo tool is a fork of ogginfo from the vorbis-tools package. + It and the files opusinfo.[ch] are: + + Copyright 2002-2005 Michael Smith + Licensed under the GNU GPL. + + On Debian systems, the complete text of the GNU General + Public Licenses can be found in `/usr/share/common-licenses/'. + + + All other files are: + + Copyright 2000-2012 Xiph.Org, Jean-Marc Valin, Gregory Maxwell, + CSIRO, Thorvald Natvig, Michael Smith, John Edwards + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER + OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +The Debian packaging is Copyright 2012, Ron and +is licensed under the same terms as "All other files" above. --- opus-tools-0.1.10.orig/debian/rules +++ opus-tools-0.1.10/debian/rules @@ -0,0 +1,75 @@ +#!/usr/bin/make -f +# Ron Lee 2003 - 2013 + +#export DH_VERBOSE=1 +export DH_OPTIONS + +SHELL = /bin/bash + +NUM_CPUS = $(shell getconf _NPROCESSORS_ONLN 2>/dev/null) +PARALLEL = $(subst parallel=,,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) +NJOBS = -j$(or $(PARALLEL),$(NUM_CPUS),1) + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS = -g -O0 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + + +objdir := objs + + +clean: + dh_testdir + dh_testroot + $(RM) *-stamp + $(RM) -r $(objdir) + dh_clean + + +$(objdir)/config.status: configure + dh_testdir + mkdir -p $(objdir) + cd $(objdir) && ../configure --disable-maintainer-mode \ + --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr + +build: build-arch +build-arch: build-arch-stamp +build-indep: + +build-arch-stamp: $(objdir)/config.status + dh_testdir + $(MAKE) $(NJOBS) -C $(objdir) + touch $@ + + +binary: binary-arch + +binary-indep: + +binary-arch: DH_OPTIONS = -a +binary-arch: build-arch + dh_testdir + dh_testroot + dh_install $(objdir)/opus{dec,enc,info,rtp} usr/bin + dh_installman man/opus{dec,enc,info,rtp}.1 + dh_installdocs + dh_installchangelogs + dh_strip --dbg-package=opus-tools-dbg + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + + +.PHONY: clean build build-arch build-indep binary binary-arch binary-indep