similar to: [Xiph] #2027: multistream_encode(_float) fails on hard cbr encodes in libopus v1.1

Displaying 20 results from an estimated 3000 matches similar to: "[Xiph] #2027: multistream_encode(_float) fails on hard cbr encodes in libopus v1.1"

2014 Sep 04
0
[Xiph] #2027: multistream_encode(_float) fails on hard cbr encodes in libopus v1.1
#2027: multistream_encode(_float) fails on hard cbr encodes in libopus v1.1 -----------------------------------------+------------------------------ Reporter: thinktink | Owner: jmvalin@? Type: defect | Status: closed Priority: P3 | Milestone: Component: Opus |
2014 Jun 05
0
opus_multistream_encode_float not working in libopus 1.1
On Wed, Jun 4, 2014 at 4:41 PM, Alpha Thinktink <alphathinktink at gmail.com> wrote: > > >> max_data_bytes=-11 > This can happen with multistream cbr if the bitrate is set too low, to a value that would allow less than 4 bytes per stream, per packet. What bitrate are you using? Perhaps you set it to a value in kb/s instead of b/s. -------------- next part -------------- An
2014 Jun 04
4
opus_multistream_encode_float not working in libopus 1.1
On Wed, Jun 4, 2014 at 4:31 PM, Timothy B. Terriberry <tterribe at xiph.org> wrote: > Alpha Thinktink wrote: >> max_data_bytes=-11 > > That value is passed in by you. I also don't think passing such a value > would have worked in earlier releases. It indicates the size of the > buffer you are passing to the encoder to receive the encoded output. Actually, I'm
2014 Jun 04
0
opus_multistream_encode_float not working in libopus 1.1
On 2014-06-04 1:25 PM, Alpha Thinktink wrote: > Ok, this seems contradictory to the output that the build log is > telling me. The log is showing a fatal error and the build doesn't > succeed. You're right. Doesn't work on the libopus-1.1 source tarball. Sorry about that! -r
2014 Jun 03
0
opus_multistream_encode_float not working in libopus 1.1
On 2014-06-02 11:51 PM, Alpha Thinktink wrote: > Have there been changes to the meaning or handling of the parameters > for either of the mentioned functions? Hmm. There shouldn't have been between 1.1-beta and release. I guess you can't tell us which argument is bad because the win32 binary is stipped. Have you tried compiling it yourself? -r
2014 Jun 04
0
opus_multistream_encode_float not working in libopus 1.1
On 2014-06-04 12:47 PM, Alpha Thinktink wrote: > 1>------ Build started: Project: opus, Configuration: Release Win32 ------ > 1> fatal: Not a git repository: 'C:\My Documents\Opus\win32\..\.git' > 1> The syntax of the command is incorrect. > 1> The system cannot find the path specified. > 1>C:\Program
2014 Jun 04
0
opus_multistream_encode_float not working in libopus 1.1
Alpha Thinktink wrote: > max_data_bytes=-11 That value is passed in by you. I also don't think passing such a value would have worked in earlier releases. It indicates the size of the buffer you are passing to the encoder to receive the encoded output.
2014 Jun 21
1
opus_multistream_encode_float not working in libopus 1.1
Hi, I just checked in a fix for the bug you reported. Let me know if it works. Cheers, Jean-Marc On 05/06/14 12:41 AM, Alpha Thinktink wrote: > In debugging I saw: > opus_multistream_encoder.c > line 760 > if(!vbr) > max_data_bytes = IMIN(max_data_bytes, > 3*st->bitrate_bps/(3*8*Fs/frame_size)); > > max_data_bytes after this code becomes -2 where as
2014 Jun 03
3
opus_multistream_encode_float not working in libopus 1.1
I just recently found that opus_multistream_encode_float is returning -1 (OPUS_BAD_ARG) with the libopus 1.1 build but works just fine with the libopus 1.0.1 and libopus 1.1-beta builds. I tried using opus_multistream_encoder_create and opus_multistream_surround_encoder_create. Tried with coupled and uncoupled quadraphonic and uncoupled stereo encodes. I'm dynamically loading the libopus
2003 Mar 07
0
problem with encoding cbr (updated)
Hi, Regarding to my previous question, I think I have found out from oggenc source code that the correct way to initialize encoding is: vorbis_encode_init_vbr (or vorbis_encode_setup_managed for cbr etc.) vorbis_encode_ctl (to turn off or use avg bitrate management) vorbis_encode_setup_init By this way, there is no problem with encoded stream. However, there is no documentation of the three
2001 Jul 03
2
ABR or CBR?
Just in case my quotation causeed misunderstnaing... Forget about what I quoted before. Probably, by CBR, Monty meant ABR since CBR is stupidly patented and this is the reason why Vorbis has no CBR option. If you know this, it cannot be a problem but I see there is a question asking what is ABR in the mailing list. >On Thu 28 Jun 2001, 23:27:41 PDT, Monty (xiphmont@xiph.org)Wrote: >then
2002 Aug 03
1
vbr / cbr / abr API calls
Hi, Maybe this is documented somewhere, if so, please send me a link to the documentation. My question is: how to set up different (VBR, CBR, ABR) modes when calling the Ogg Vorbis API? Currently I do: CBR: ret = vorbis_encode_setup_managed( &vorbisInfo, getInChannel(), getOutSampleRate(),
2015 Jan 23
0
Opus for speech: VBR vs CBR
On 01/21/2015 07:51 PM, Daniel K wrote: > Hi guys, > > I'm using Opus for speech in wide-band mode (sampling rate 16000) and > 20ms frames with signal type set to SIGNAL_VOICE. > > I have a few questions here: > > 1. > When I choose VBR mode, the codec seems to choose the bitrate on its own. > However, that seems to be an issue on mobile devices. In some cases,
2003 Mar 07
0
problem with encoding cbr
Hi, I am trying to encode PCM to OGG based on example code in OggVorbis SDK Win 1.0. There is no problem with "vorbis_encode_init_vbr(&vi, 1, 44100, 0.4f);" setting. However, using "vorbis_encode_init(&vi, 1, 44100, 96000, 96000, 96000);" setting gives such a warning by ogginfo: "Warning: EOS not set on stream 1" I have modified ogginfo to display exact
2010 Feb 26
2
Are two passes useful in CBR mode ?
Hi, I try to use the video tag to post videos on my blog I'm using ffmeg2theora to transcode videos in theora Resolution of 320x240 pixels and constant bitrate (CBR) of ~400 kbps seems to be ok for publishing on my blog. I've read that CBR is a better choice than VBR for web publishing regarding the way TCP/IP works. ("In TCP it takes a while for a connection to increase its
2014 Jun 04
3
opus_multistream_encode_float not working in libopus 1.1
Finally got it to compile and attach the MSVC debugger. It fails at the following: if ((!st->variable_duration && 400*frame_size != st->Fs && 200*frame_size != st->Fs && 100*frame_size != st->Fs && 50*frame_size != st->Fs && 25*frame_size != st->Fs && 50*frame_size != 3*st->Fs) || (400*frame_size <
2015 Jan 22
2
Opus for speech: VBR vs CBR
Hi guys, I'm using Opus for speech in wide-band mode (sampling rate 16000) and 20ms frames with signal type set to SIGNAL_VOICE. I have a few questions here: 1. When I choose VBR mode, the codec seems to choose the bitrate on its own. However, that seems to be an issue on mobile devices. In some cases, when I configure the bitrate to say 20kbps, I see that the outgoing codec bitrate at
2003 Jan 29
1
AW: PlusV algorithm -> CBR
fwiw, there are definitely applications that would use Vorbis but can't until there is a _strict_ CBR mode. Meaning, architecturally the datarate simply cannot exceed X no matter what happens to the quality. Send silence if you have to, but limit the datarate. -dbm -------------- next part -------------- A non-text attachment was scrubbed... Name: winmail.dat Type: application/ms-tnef
2003 Mar 07
1
cbr/vbr decoding - supported sample rates
Hi, Is there any difference between decoding of CBR or VBR streams in realtime in terms of CPU usage/cost? Are sample rates other than 44100Hz supported by Vorbis officially ? If it is supported, is it efficient to use them or is Vorbis specifically (or at the moment) optimized for 44100Hz ? Thanks in advance. --- Mete BALCI Senior Game Programmer Momentum DMT Istanbul, TURKEY
2008 Mar 02
1
Speex: complexity, VBR, ABR, CBR, quality
Hi All; If someone used speex and has experience with its settings, then who can help to explain the following: 1) When it is recommended to use VBR (vbr => true)? 2) If there relation between setting the vbr => true and the abr value (for example to be 0 or 1 or 10) and the relation between this value and abr (true / false). 3) Any relation between the quality value and the abr value?