search for: number_type

Displaying 6 results from an estimated 6 matches for "number_type".

Did you mean: member_type
2004 Sep 10
2
better seeking
...decoder->protected_->state != FLAC__SEEKABLE_STREAM_DECODER_SEEKING) { break; } - else { /* we need to narrow the search */ - FLAC__uint64 this_frame_sample = decoder->private_->last_frame.header.number.sample_number; - FLAC__ASSERT(decoder->private_->last_frame.header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER); - if(this_frame_sample == last_frame_sample && pos < last_pos) { - /* our last move backwards wasn't big enough, double it */ - pos -= (last_pos - pos); - needs_seek = true; + /* we need to narrow the search */ + this_frame_samp...
2006 Oct 28
3
better seeking
...@@ -3113,45 +3049,43 @@ if(!decoder->private_->is_seeking) { break; } - else { /* we need to narrow the search */ - const FLAC__uint64 this_frame_sample = decoder->private_->last_frame.header.number.sample_number; - FLAC__ASSERT(decoder->private_->last_frame.header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER); - if(this_frame_sample == last_frame_sample && pos < last_pos) { - /* our last move backwards wasn't big enough, double it */ - pos -= (last_pos - pos); - needs_seek = true; + /* we need to narrow the search */ + this_frame_samp...
2005 Jan 25
0
bitbuffer optimizations
...r->protected_->state != FLAC__SEEKABLE_STREAM_DECODER_SEEKING) { break; } - else { /* we need to narrow the search */ - const FLAC__uint64 this_frame_sample = decoder->private_->last_frame.header.number.sample_number; - FLAC__ASSERT(decoder->private_->last_frame.header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER); - if(this_frame_sample == last_frame_sample && pos < last_pos) { - /* our last move backwards wasn't big enough, double it */ - pos -= (last_pos - pos); - needs_seek = true; + /* we need to narrow the search */ + this_frame_samp...
2006 Nov 03
2
better seeking
...@@ -3113,44 +3048,50 @@ if(!decoder->private_->is_seeking) { break; } - else { /* we need to narrow the search */ - const FLAC__uint64 this_frame_sample = decoder->private_->last_frame.header.number.sample_number; - FLAC__ASSERT(decoder->private_->last_frame.header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER); - if(this_frame_sample == last_frame_sample && pos < last_pos) { - /* our last move backwards wasn't big enough, double it */ - pos -= (last_pos - pos); - needs_seek = true; + this_frame_sample = decoder->private_->last_fra...
2006 Jun 22
0
xml rpc client
I am doing a xml rpc client. Is there a way to display what I''m sending to the server??? This is the code: class OrderApi < ActionWebService::API::Base api_method :IPLWSNroDisponible, :expects => [{:app_key => :string}, {:number_type => :string}, {:number_sub_type => :string}, {:capcode_category_number => :string}, {:customer_id => :int}], :returns => [:int] end begin clientXmlRpc = ActionWebService::Clie...
2004 Sep 10
4
bitbuffer optimizations
Ok, here is a patch waiting for new CVS :). It works fine for me, but please check it before commiting... -- Miroslav Lichvar -------------- next part -------------- --- src/libFLAC/bitbuffer.c.orig 2003-01-30 17:36:01.000000000 +0100 +++ src/libFLAC/bitbuffer.c 2003-01-30 21:53:18.000000000 +0100 @@ -51,6 +51,25 @@ */ static const unsigned FLAC__BITBUFFER_DEFAULT_CAPACITY = ((65536 - 64) *