Displaying 5 results from an estimated 5 matches for "encoder_wrapp".
Did you mean:
encoder_wrapper
2004 Sep 10
1
Serious bug in FLAC
...it is usually
appropriate to assume that the compiler is working.
> I'd try recompiling with GCC 3 or GCC 2.95 (available as "kgcc").
No. Rather than trying voodoo magic first, let's find the bug...
In metadata_callback() in encode.c you should not be examining the
variable encoder_wrapper->use_ogg unless you have compiled in OGG
support (I have not). So this code block needs to be wrapped up
something like this...
#ifdef FLAC__HAS_OGG
if(encoder_wrapper->use_ogg)
return;
#endif
Every user who has flac installed but did not configure OGG support
will...
2004 Sep 10
3
1.0 source candidate
...artition_order=3,
max_residual_partition_order=3, rice_parameter_search_dist=0,
max_lpc_order=8, blocksize=4608, qlp_coeff_precision=0, channels=1,
bps=16, sample_rate=44100, padding=0,
requested_seek_points=0x60000000002ab138 "100x",
num_requested_seek_points=-1, encoder_wrapper=0x80000fffffffa5c0)
at encode.c:711
#6 0x2000000000123dc0 in stream_decoder_read_metadata_ (
decoder=0x60000000002b7dd0) at stream_decoder.c:633
---Type <return> to continue, or q <return> to quit---
#7 0x80000fffffffa5e4 in ?? ()
#8 0x2000000000123dc0 in stream_decoder_rea...
2004 Sep 10
0
1.0 source candidate
...x_residual_partition_order=3, rice_parameter_search_dist=0,
> max_lpc_order=8, blocksize=4608, qlp_coeff_precision=0,
> channels=1,
> bps=16, sample_rate=44100, padding=0,
> requested_seek_points=0x60000000002ab138 "100x",
> num_requested_seek_points=-1, encoder_wrapper=0x80000fffffffa5c0)
> at encode.c:711
> #6 0x2000000000123dc0 in stream_decoder_read_metadata_ (
> decoder=0x60000000002b7dd0) at stream_decoder.c:633
> ---Type <return> to continue, or q <return> to quit---
> #7 0x80000fffffffa5e4 in ?? ()
> #8 0x20000000...
2004 Sep 10
2
1.0 source candidate
On Fri, Jul 20, 2001 at 10:51:11PM -0400, Matt Zimmerman wrote:
> This version seems to work at least partially on ia64. I am able to encode my
> usual test WAV file now, but I still get a segfault during the self-tests.
Interestingly enough, when I recompiled with --enable-debug to get a stack
trace, it worked. Any ideas how to track down the problem?
--
- mdz
2004 Sep 10
5
Bug with FLAC raw encoding
...99 ****
--- 394,400 ----
}
}
}
+ else fseek (fin, 0, SEEK_SET);
if(!init_encoder(lax, do_mid_side, loose_mid_side, do_exhaustive_model_search, do_qlp_coeff_prec_search, rice_optimization_level, max_lpc_order, blocksize, qlp_coeff_precision, channels, bps, sample_rate, &encoder_wrapper))
goto raw_abort_;