search for: sonocent

Displaying 13 results from an estimated 13 matches for "sonocent".

Did you mean: innocent
2015 Nov 05
3
Opusfile seeking bug
...of 48K. int retcode = op_pcm_seek(opfile, failingSeekPoint-4800); if(retcode < 0) printf("Seek failed with OP_EBADLINK!\n"); op_free(opfile); } else { printf("No packets split over page boundaries in file."); } return 0; } Simon Jackson Software Developer Sonocent Ltd. Tel: 0113 815 0223 www.sonocent.com <http://www.sonocent.com/> @AudioNotetaker <https://twitter.com/AudioNotetaker> -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/opus/attachments/20151105/6828266d/attachment-0001...
2015 Nov 06
1
Opusfile seeking bug
Here is the file which should manifest the issue. Simon Jackson Software Developer Sonocent Ltd. Tel: 0113 815 0223 www.sonocent.com <http://www.sonocent.com/> @AudioNotetaker <https://twitter.com/AudioNotetaker> > On 5 Nov 2015, at 21:29, Timothy B. Terriberry <tterribe at xiph.org> wrote: > > Simon Jackson wrote: >> packets split over page boundaries....
2019 Dec 18
3
CMake patches
Hi all, With some downtime it's time for some CMake fixes. Most critically is the SSE fixes to avoid crashes that is described in 154 and 132 in github. Patch 5 should address this and also adding APPROX-FLOAT option. Hopefully this can give some gains for those of us running on Windows servers.j I went through the pull request and picked out a few that will ease up integration for
2020 Apr 14
1
Opus CMake build support for Apple frameworks
...ression for the internet. Contribute to xnorpx/opus development by creating an account on GitHub. github.com That way we can ensure the patch work as expected and doesn't break any exciting behavior. Best Regards Marcus ________________________________ From: Simon Jackson <simon.jackson at sonocent.com> Sent: Tuesday, April 14, 2020 02:12 To: Marcus Asteborg <xnorpx at outlook.com> Cc: opus at xiph.org <opus at xiph.org> Subject: Re: [opus] Opus CMake build support for Apple frameworks Hi Marcus, When building shared libraries for macOS / iOS /tvOS, by default `.dylib` shared...
2020 Apr 10
2
Opus CMake build support for Apple frameworks
...an "Re: Contents of opus digest..." Today's Topics: 1. Opus CMake build support for Apple frameworks (Simon Jackson) ---------------------------------------------------------------------- Message: 1 Date: Thu, 9 Apr 2020 16:59:54 +0100 From: Simon Jackson <simon.jackson at sonocent.com> To: opus at xiph.org Subject: [opus] Opus CMake build support for Apple frameworks Message-ID: <CAAZh+M2BzPMvB6=U-LcAOZmSK_1phySrTRWGG9UhcMDWjf5Txw at mail.gmail.com> Content-Type: text/plain; charset="utf-8" Hi, I've put together a patch which adds support to...
2020 Apr 07
0
CMake patches
...on patch 5 for you > too look at. > > //Marcus > ------------------------------ > *From:* Jean-Marc Valin <jmvalin at jmvalin.ca> > *Sent:* Tuesday, January 14, 2020 08:24 > *To:* Marcus Asteborg <xnorpx at outlook.com> > *Cc:* Simon Jackson <simon.jackson at sonocent.com> > *Subject:* Re: [opus] CMake patches > > Hi Marcus, > > So I looked at the patches and have no issue with patches 1-4. For > patches 5 I have a few comments/questions. > > - The patch should probably be split in 3 (alloca, fast-math, and > SSE/AVX) to be clearer...
2020 Apr 01
1
Opusfile CMake build
Hi, Would you be interested in a patch to add CMake support to Opusfile? Opus already seems to have it, but I had to roll my own for Opusfile. I've attached a patch if you're interested, I've been using for a while now and it does what I need, it may not be exhaustive enough for wider distribution though. Hope it helps, Simon -------------- next part -------------- An HTML attachment
2020 Apr 14
0
Opus CMake build support for Apple frameworks
...; > Today's Topics: > > 1. Opus CMake build support for Apple frameworks (Simon Jackson) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 9 Apr 2020 16:59:54 +0100 > From: Simon Jackson <simon.jackson at sonocent.com> > To: opus at xiph.org > Subject: [opus] Opus CMake build support for Apple frameworks > Message-ID: > <CAAZh+M2BzPMvB6= > U-LcAOZmSK_1phySrTRWGG9UhcMDWjf5Txw at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > Hi, > > I...
2015 May 27
1
Patch for Opusfile build system
Hi, I?d like to submit a patch to add an option to configure to stop the examples being built. They were causing me some issues when building static libraries for multiple architectures which were merged into a fat binary and I thought that rather than hack Makefile.am to stop them being built, I would add the option correctly and submit a patch. I hope it?s acceptable, Simon
2015 Nov 09
1
Opusfile seeking bug
Hi, I sent the file as an attachment, but received a message stating it was too large and was awaiting moderator approval. I?m just following up see it it was received. Thanks, Simon > On 5 Nov 2015, at 21:29, Timothy B. Terriberry <tterribe at xiph.org> wrote: > > Simon Jackson wrote: >> packets split over page boundaries. I can provide an opus file which has >>
2020 Apr 09
0
Opus CMake build support for Apple frameworks
Hi, I've put together a patch which adds support to the CMake build for building Apple frameworks, as much as I dislike them. Is this something you'd like to integrate? Thanks, Simon -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xiph.org/pipermail/opus/attachments/20200409/a281ca94/attachment.html> -------------- next part
2015 Jun 03
1
[PATCH 1/1] Updated opus_types.h to correctly support 8 and 64 bit types.
Jean-Marc, Clearly I haven't thought these changes through properly and was only really considering common desktop systems. I was originally fixing an issue when compiling my code as 64bit where my use of int64_t (defined as long on my platform) was conflicting with the opusfile stream callbacks (e.g. op_seek_func) which were using the opus_int64 type which was defined as long long. When I
2015 Jun 03
5
[PATCH 1/1] Updated opus_types.h to correctly support 8 and 64 bit types.
- Replaced blanket #define of 8 & 64 bit types with typedefs for each platform to match 16 & 32 bit types. - Updated existing typedefs for each platform to fix odd values and improve consistency. --- include/opus_types.h | 125 ++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 100 insertions(+), 25 deletions(-) diff --git a/include/opus_types.h