Displaying 20 results from an estimated 100000 matches similar to: "[PATCH] opusfile configury fixes"
2013 May 08
1
[PATCH] opusfile configury fixes.
[this time compeled the mail].
The autogen.sh of opusfile doesn't work for me:
Updating build configuration files for opusfile, please wait....
configure.ac:8: installing `./install-sh'
configure.ac:8: installing `./missing'
Makefile.am:10: Libtool library used but `LIBTOOL' is undefined
Makefile.am:10: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL'
2013 May 01
2
[PATCH] stream.c needs sys/types.h
For definition of off_t type, stream.c needs including sys/types.h. I
hit this requirement at least once when compiling against Mac OSX 10.4
SDK. Trivial patch inlined below.
--- opusfile/src/stream.c~
+++ opusfile/src/stream.c
@@ -14,6 +14,7 @@
last mod: $Id: vorbisfile.c 17573 2010-10-27 14:53:59Z xiphmont $
********************************************************************/
+#include
2014 May 25
1
make dllimport/dllexport attributes work with mingw (and others)
Ozkan Sezer wrote:
> flac.exe built with mingw with or without the dllimport/dllexport patch
> always requires libFLAC-8.dll (because flac/Makefile.am has libFLAC.la
> in flac_LDADD and not libFLAC-static.la), and the patch doesn't make it
> any more or any less dependent on any 'foreign' dlls: the patch doesn't
> change the existent situation in that regard. If
2016 Jan 24
1
Wextra in configury
flac configury does a XIPH_ADD_CFLAGS([-Wextra]) around line 426,
however it unconditionally adds -Wextra some lines before that too.
The attached patch removes that unconditional addition of -Wextra
which (i) removes duplicate addition, and (ii) allows older gcc
versions to compile the tree peacefully. Please consider applying.
--
O.S.
-------------- next part --------------
diff --git
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
Includes
- A make debug target that disables optimizations and enables
assertions,
- Proper ./configure switches for the optional features,
- A configuration summary,
- libtool versioning information,
- Visibility and warning flags,
- API documentation, and
- Support for out-of-tree builds.
Signed-off-by: Diego Elio Petten? <flameeyes at flameeyes.eu>
---
.gitignore | 29 +++++
2017 Jan 22
7
os/2 support using Watcom
The attached set of patches adds support for OS/2 using Watcom compiler
(tested with Open Watcom 1.9). My only interest was building a working
dll (the last patch in the set adds a makefile for it), therefore I did
not touch other places: If there is interest, I can do so.
Regards.
--
O.S.
-------------- next part --------------
A non-text attachment was scrubbed...
Name:
2015 Mar 03
0
Patch cleaning up Opus x86 intrinsics configury
Hello Jonathan,
I am unable to apply your patch cleanly on tip.
Timothy/opus-dev,
This patch has some conflicts with my ARM patch that does fft optimizations
http://lists.xiph.org/pipermail/opus/2015-March/002904.html
http://lists.xiph.org/pipermail/opus/2015-March/002905.html
One of us probably has to rebase depending on which patch goes into opus first.
Regards,
Vish
On 1 March 2015 at
2014 May 25
2
make dllimport/dllexport attributes work with mingw (and others)
Erik de Castro Lopo wrote:
> Ozkan Sezer wrote:
>
>> My apologies, obviously sent an old testing patch. Correct one is
>> attached (declspec2.diff). Compilation tested using MinGW (gcc-3.4.5,
>> binutils-2.20), and MinGW-w64 (gcc-4.5.4, binutils-2.21.90.)
>
> lvqcl,
>
> Can you please validate this new patch?
It works, but only if i call ./configure without
2015 Mar 04
0
Patch cleaning up Opus x86 intrinsics configury
On 3 March 2015 at 21:59, Jonathan Lennox <jonathan at vidyo.com> wrote:
> Viswenath,
>
> My patch should be against the tip, but it?s the very recent tip,
> including some changes this past Friday (27 Feb). I mentioned in the IRC
> room a problem I discovered in creating my patch, and then later improved
> the fix Tim had made for the problem. Where do you get conflicts
2017 Aug 31
3
opusfile Include fix
Hi all!
When compiling the program using opusfile the
#include <opus/opusfile.h>
generates error that
# include <opus_multistream.h>
is not found. Actually it should be included as
# include <opus/opus_multistream.h>
just like the ogg.h in the previous line.
A small patch attached.
--
Best regards,
Alexander
-------------- next part --------------
A non-text attachment
2017 Sep 18
1
Antw: Re: opusfile Include fix
>>> Jean-Marc Valin <jmvalin at jmvalin.ca> schrieb am 16.09.2017 um 08:12 in
Nachricht <29959506-9f3b-2ad1-fc02-2aea7c53c084 at jmvalin.ca>:
> Actually, you're supposed to add /usr/include/opus to your include path.
> That's why the includes don't have the "opus/" prefix.
Hi!
But that's uncommon: You also don't put /usr/include/sys into
2017 Sep 16
0
opusfile Include fix
Actually, you're supposed to add /usr/include/opus to your include path.
That's why the includes don't have the "opus/" prefix.
Cheers,
Jean-Marc
On 31/08/17 05:20 AM, Alexander Panchenko wrote:
> Hi all!
> When compiling the program using opusfile the
>
> #include <opus/opusfile.h>
>
> generates error that
>
> # include
2012 Sep 25
0
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v3)
This time it's complete with assertions on make debug, proper
./configure switches for the optional features, visibility and warning
flags, and summary at the end of the configuration.
Signed-off-by: Diego Elio Petten? <flameeyes at flameeyes.eu>
---
.gitignore | 29 +++++
Makefile.am | 24 +++++
autogen.sh | 3 +
configure.ac | 66 ++++++++++++
2015 Mar 04
0
Patch cleaning up Opus x86 intrinsics configury
On 3 March 2015 at 22:17, Jonathan Lennox <jonathan at vidyo.com> wrote:
>
> On Mar 3, 2015, at 11:08 PM, Viswanath Puttagunta
> <viswanath.puttagunta at linaro.org> wrote:
>
>
>
> On 3 March 2015 at 21:59, Jonathan Lennox <jonathan at vidyo.com> wrote:
>>
>> Viswenath,
>>
>> My patch should be against the tip, but it?s the very recent
2015 Aug 03
0
[PATCH 00/10] Patched cleaning up Opus x86 intrinsics configury
Thanks to Jean-Marc and Tim explaining 'git rebase -i' to me, I've factored my reorganization of
the Opus Intrinsics configury into a number of hopefully more comprehensible (and thus more
reviewable) pieces.
This applies to the current tip of Opus Master in git.
Viswanath's Ne10 changes require some slight modification to apply on top of these patches,
but nothing major.
2013 Mar 12
0
[PATCH] opusfile: Fix invalid pkg-config files on MinGW
Hi,
please find attached two patches for opusfile:
1. Fix invalid pkg-config files on MinGW.
2. (trivial) Add some files to .gitignore.
Two other random things I noticed:
- The API reference for libopusfile linked from
http://opus-codec.org/docs/ is for version 0.1.
- The pkg-config files say "Description: Opus playback library". Well,
the library doesn't do playback, does it?
2014 Jan 10
0
opusfile v0.5 release
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I'm pleased to announce the release of version 0.5 of Tim's opusfile
library for decoding and seeking inside .opus files and remote streams
over http(s). This release includes some new API calls and fixes a
number of mostly minor bugs from the previous release.
Programming documentation for this release is available from
2013 Aug 20
4
opusfile 0.4 release
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I'm pleased to announce the availability of opusfile v0.4.
The opusfile and opusurl libraries provide a high-level API for
decoding and seeking within .opus files on disk or over http(s).
* https://ftp.mozilla.org/pub/mozilla.org/opus/opusfile-0.4.tar.gz
* https://ftp.mozilla.org/pub/mozilla.org/opus/opusfile-0.4.zip
*
2015 Mar 04
2
Patch cleaning up Opus x86 intrinsics configury
Viswenath,
My patch should be against the tip, but it?s the very recent tip, including some changes this past Friday (27 Feb). I mentioned in the IRC room a problem I discovered in creating my patch, and then later improved the fix Tim had made for the problem. Where do you get conflicts merging it to tip?
In terms of merging, you posted your patch before I posted mine, so probably I should be
2012 Nov 13
0
opusfile 0.2 release
We've made a new release of Tim's opusfile library.
Like libvorbisfile for Vorbis files, libopusfile provides a high-level
API for decoding and seeking within .opus files.
Changes since the previous release:
- Accept valid SSL certificates.
- Various build and packaging fixes.
The library is functional, but there are likely issues
we didn't find in our own testing. Please give