search for: libopusurl

Displaying 12 results from an estimated 12 matches for "libopusurl".

2013 Aug 21
1
opusfile 0.4 release
On 20/08/13 08:38 PM, alpha thinktink wrote: > However, if I try to load the new libopusurl-0.dll from the same folder > as I have always done as with the other libraries, I get a NULL HMODULE > handle from LoadLibraryW and GetLastError() return error code 126 - "The > specified module could not be found." In addition to what Tim said, do you get the same error loading...
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 *
2013 Aug 21
0
opusfile 0.4 release
On 13-08-21 12:35 AM, alpha thinktink wrote: > I just had a thought and tested it out and it seemed correct. By > loading the libeay32.dll and ssleay32.dll libraries myself before > loading libopusurl-0.dll then libopusurl-0.dll loads and I can use it. > Before I was just trying to load libopusurl-0.dll without loading its > support DLLs at all assuming it would pick them up on it's own. I don't know anything about this, but msdn says the default search path is the directory cont...
2013 Aug 26
1
Fwd: Re: opusfile 0.4 release
...set to -129 (OP_EFAULT). I am converting the wchar_t to a MBCS UTF-8 string (using ::WideCharToMultiByte(CP_UTF8,...) like I do for my old stream thread) before passing it on to op_open_url with the thinking that it would process it the same way I do. Am I doing it wrong or is it a limitation in libopusurl?
2019 Aug 27
4
Opus Todo
Hi, I had found a Opus TODO list in https://wiki.xiph.org/index.php?title=OpusTodo&mobileaction=toggle_view_desktop . The item "Opus-tools" interest me. And here is my question about "Port opusdec to libopusfile/libopusurl": 1. Does this function have achieved? On one hand, I think not literally. On the other hand, after briefly reviewing opusdec.c of opus-tools, I found that opusdec can decode by calling libopusfile's decode function. So does the function "opusdec" have been realized? 2. If the...
2013 Aug 21
0
opusfile 0.4 release
...e developed the unofficial Opus codec support plugin for Winamp and I have been able to keep the libopusfile libraries inside a folder inside the application's install path - "%PROGRAMFILES%\WinampNarf\opusfile" - and all seemed to be fine and dandy. However, if I try to load the new libopusurl-0.dll from the same folder as I have always done as with the other libraries, I get a NULL HMODULE handle from LoadLibraryW and GetLastError() return error code 126 - "The specified module could not be found." I then redid my code to load the libraries from the same folder as the applica...
2017 Jan 02
1
[PATCH] Use ASN1_STRING_get0_data for openssl-1.1.0
This fixes a build failure from undefined references to ASN1_STRING_data in libopusurl.so. ASN1_STRING_data is deprecated in openssl-1.1.0. The new ASN1_STRING_get0_data is identical, except the returned string may not be modified, which we don't do anyway. Also include missing asn1.h header to silence compiler warnings. X-Gentoo-Bug: 592456 X-Gentoo-Bug-URL: https://bugs.gent...
2016 Nov 14
1
Help with Opus Streaming
...4 6:09 AM, Deepak K wrote: > I am using Http Progressive download technique to download the opus > audio in chunks. So I am not sure if the Opusfile seek API will work in > this case. Please correct me if I am wrong. If you don't want to use opusfile's http client implementation (libopusurl) you can still use its seeking implementation. Just provide the `op_read_func`, `op_seek_func`, and `op_tell_func` callbacks on top of your current fetch framework. The library will call your seek implementation with the necessary byte offsets to find and resume decoding at the requested position w...
2017 Jul 26
1
Building opusfile as a shared library
Dear Opus community, I'm trying to build opusfile as a shared (.dll) library on Windows 10 using Visual Studio 2017. I know there are prebuilt libraries, but those are depending on a whole bunch of other libraries and x86 (32 bit) only. Whenever I try to build opusfile, it generates opusfile.dll, which is basically empty (no functions), which makes it unuseable. This is most likely because
2019 Aug 27
0
Opus Todo
...7 8:15 a.m., 陈伟旭 wrote: <br> <br>> I had found a Opus TODO list in <br>> https://wiki.xiph.org/index.php?title=OpusTodo <br>> <br>> The item "Opus-tools" interest me. And here is my question about "Port <br>> opusdec to libopusfile/libopusurl": <br> <br>It looks like this was done a couple of years ago, primarily in commit <br>e9bbfacf0a1bbade70005fa730cc50e838baaa32, and part of the 0.2 release. <br>I don't know if there's any useful follow-up work to be done. <br> <br>If you're inte...
2019 Aug 27
0
Opus Todo
On 2019-08-27 8:15 a.m., 陈伟旭 wrote: > I had found a Opus TODO list in > https://wiki.xiph.org/index.php?title=OpusTodo > > The item "Opus-tools" interest me. And here is my question about "Port > opusdec to libopusfile/libopusurl": It looks like this was done a couple of years ago, primarily in commit e9bbfacf0a1bbade70005fa730cc50e838baaa32, and part of the 0.2 release. I don't know if there's any useful follow-up work to be done. If you're interested in working on opus-tools, there are some outstanding...
2016 Nov 08
2
Help with Opus Streaming
On 2016-11-08 1:59 AM, Philipp Schafft wrote: > Some notes: > * libvorbisfile has a nice implementation of that, it also takes > care of matching the signal at the very point of the jump. I would recommend the opusfile library, which implements seeking specifically for Opus streams. https://archive.mozilla.org/pub/opus/opusfile-0.8.zip