Displaying 3 results from an estimated 3 matches for "vorbis_lpc_predict".
2001 Sep 28
0
Borland compiler issues
...) from:
zerobundle[0]=alloca(sizeof(int)*vi->channels);
to:
z=alloca(sizeof(int)*vi->channels); /* int *z; */
zerobundle[0]=z;
I'm considering that yet another Borland compiler bug.
Another problem I found is that in vorbis_analysis_wrote(), the line
vorbis_lpc_predict(lpc,v->pcm[i]+v->eofflag-order,order,
v->pcm[i]+v->eofflag,v->pcm_current-v->eofflag);
the final parameter "v->pcm_current-v->eofflag" evaluates to a huge
value (33MB+) at the end of a file, so that in vorbis_lpc_predict(),
alloca is trying to allo...
2002 Mar 12
7
alloca() problem with CodeWarrior
...code directly into my app.
The problem I am having now is that the CodeWarrior 5.0 compiler has a bug
with alloca(). It allocates the area on the stack but, under some
circumstances, it does not restore the stack pointer at the end of the
routine. You can imagine what happens next. This happens in
vorbis_lpc_predict(). I have tried different optimization levels, and tried
making arbitrary changes to the code to see if the compiler could be tricked
into compiling correct code but to no avail.
Question: does anyone have precompiled static libogg, libvorbis and
libvorbisenc for Mac OS 9 available?
My other alte...
2018 Apr 27
0
[RFC][PATCH] Remove private symbols from Vorbis shared libs
...s_block_alloc
_vorbis_block_ripcord
vorbis_book_clear
vorbis_book_codelen
vorbis_book_codeword
vorbis_book_decode
vorbis_book_decodev_add
vorbis_book_decodevs_add
vorbis_book_decodev_set
vorbis_book_decodevv_add
vorbis_book_encode
vorbis_book_init_decode
vorbis_book_init_encode
vorbis_lpc_from_data
vorbis_lpc_predict
vorbis_lpc_to_lsp
vorbis_lsp_to_curve
vorbis_staticbook_destroy
vorbis_staticbook_pack
vorbis_staticbook_unpack
vorbis_window
_vorbis_window_get
_vp_ampmax_decay
_vp_couple_quantize_normalize
_vp_global_free
_vp_global_look
_vp_noisemask
_vp_offset_and_mix
_vp_psy_clear
_vp_psy_init
_vp_tonemask
--...