search for: do_escape_coding

Displaying 9 results from an estimated 9 matches for "do_escape_coding".

2007 Apr 08
0
FLAC 24 bit test results
...amp;min/max_partition_order (and maybe predictor order) */ ok = ok && FLAC__memory_alloc_aligned_uint64_array(new_blocksize * 2, &encoder->private_->abs_residual_partition_sums_unaligned, &encoder->private_->abs_residual_partition_sums); - if(encoder->protected_->do_escape_coding) - ok = ok && FLAC__memory_alloc_aligned_unsigned_array(new_blocksize * 2, &encoder->private_->raw_bits_per_partition_unaligned, &encoder->private_->raw_bits_per_partition); + ok = ok && FLAC__memory_alloc_aligned_unsigned_array(new_blocksize * 2, &encoder-&...
2007 Apr 05
2
FLAC 24 bit test results
On Thu, 2007-04-05 at 02:27 -0700, Brian Willoughby wrote: > Josh (Green), > > Seems like the longest example in your list is a 15-second file. I > would like to see the same problem exhibited in a file that is of a > normal length. I have been recording full performances lasting > hours, and flac always compresses the files below 70% of the original > size. >
2004 Sep 10
3
1.0 source candidate
...s=0, current_frame=0, client_data=0x80000fffffffa5c0) at encode.c:964 #4 0x200000000012bc60 in FLAC__stream_encoder_init ( encoder=0x60000000002b8290) at stream_encoder.c:467 #5 0x400000000000d840 in init_encoder (lax=0, do_mid_side=0, loose_mid_side=0, do_exhaustive_model_search=0, do_escape_coding=0, do_qlp_coeff_prec_search=0, min_residual_partition_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 &q...
2013 Jul 21
3
exhaustive-model-search issue results in multi-gigabyte FLAC file
Miroslav Lichvar wrote: > On Wed, Jul 17, 2013 at 07:45:53PM +1000, Erik de Castro Lopo wrote: > > The fix was changing one local variable from FLAC_uint32 to FLAC_uint64 > > in function precompute_partition_info_sums_(). > > > > https://git.xiph.org/?p=flac.git;a=commit;h=6f7ec60c7e7f05f5ab0b1cf6b7b0945e44afcd4b > > I don't like this fix. It will
2004 Sep 10
0
1.0 source candidate
...client_data=0x80000fffffffa5c0) at encode.c:964 > #4 0x200000000012bc60 in FLAC__stream_encoder_init ( > encoder=0x60000000002b8290) at stream_encoder.c:467 > #5 0x400000000000d840 in init_encoder (lax=0, do_mid_side=0, > loose_mid_side=0, do_exhaustive_model_search=0, > do_escape_coding=0, > do_qlp_coeff_prec_search=0, min_residual_partition_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_see...
2006 Jun 04
0
Re: flac with >4GB raw still does not work (CVS)
...ative = 0, value_is_samples = 1, value = {seconds = 0, samples = 0}}, until_specification = {is_relative = 0, value_is_samples = 1, value = {seconds = 0, samples = 0}}, verify = 0, use_ogg = 0, serial_number = 1139381067, lax = 0, do_mid_side = 0, loose_mid_side = 0, do_exhaustive_model_search = 0, do_escape_coding = 0, do_qlp_coeff_prec_search = 0, min_residual_partition_order = 2, max_residual_partition_order = 2, rice_parameter_search_dist = 0, apodizations = 0x8311d6c "", max_lpc_order = 0, blocksize = 1152, qlp_coeff_precision = 0, padding = 4096, requested_seek_points = 0x8312194 "",...
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
2006 Jun 03
2
flac with >4GB raw still does not work (CVS)
I'm attempting to flac a 18GB raw file, and as per 1328191 I compiled CVS, when it gets to 4GB it doesn't continue. I've tried stracing and get no output after a certain point. I also have tried oggflac and it is no different. I configured with no options or special CFLAGS and this is on a x86 machine. Is there anything special I need to do to get this to work? I have also tried with
2012 Apr 05
2
[PATCH 2/2] V2: Use a single definition of MIN and MAX in sources
...ion_order)); + FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(prc, flac_max(6u, best_partition_order)); memcpy(prc->parameters, private_->partitioned_rice_contents_extra[best_parameters_index].parameters, sizeof(unsigned)*(1<<(best_partition_order))); if(do_escape_coding) memcpy(prc->raw_bits, private_->partitioned_rice_contents_extra[best_parameters_index].raw_bits, sizeof(unsigned)*(1<<(best_partition_order))); @@ -3887,7 +3878,7 @@ void precompute_partition_info_escapes_( for(i = 0; i < partitions; i++) { m = raw_bits_per_partition[from...