HomeSort by relevance Sort by last modified time
    Searched full:current_frame (Results 1 - 14 of 14) sorted by null

  /external/flac/libFLAC/
ogg_encoder_aspect.c 111 FLAC__StreamEncoderWriteStatus FLAC__ogg_encoder_aspect_write_callback_wrapper(FLAC__OggEncoderAspect *aspect, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, FLAC__bool is_last_block, FLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data)
197 if(write_callback(encoder, aspect->page.header, aspect->page.header_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
199 if(write_callback(encoder, aspect->page.body, aspect->page.body_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
205 if(write_callback(encoder, aspect->page.header, aspect->page.header_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
207 if(write_callback(encoder, aspect->page.body, aspect->page.body_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
212 else if(is_metadata && current_frame == 0 && samples == 0 && bytes == 4 && 0 == memcmp(buffer, FLAC__STREAM_SYNC_STRING, sizeof(FLAC__STREAM_SYNC_STRING))) {
stream_encoder.c 322 static FLAC__StreamEncoderWriteStatus file_write_callback_(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
    [all...]
  /external/flac/libFLAC/include/private/
ogg_encoder_aspect.h 59 typedef FLAC__StreamEncoderWriteStatus (*FLAC__OggEncoderAspectWriteCallbackProxy)(const void *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
61 FLAC__StreamEncoderWriteStatus FLAC__ogg_encoder_aspect_write_callback_wrapper(FLAC__OggEncoderAspect *aspect, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, FLAC__bool is_last_block, FLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data);
  /build/tools/droiddoc/templates-pdk/assets/
carousel.js 187 var current_frame = 0;
195 var left = (ease(current_frame/animation.frames) * Math.abs(animation.goal - animation.origin)) - cp;
202 current_frame += 1;
203 if (current_frame == animation.frames) {
  /build/tools/droiddoc/templates-sdk/assets/
carousel.js 187 var current_frame = 0;
195 var left = (ease(current_frame/animation.frames) * Math.abs(animation.goal - animation.origin)) - cp;
202 current_frame += 1;
203 if (current_frame == animation.frames) {
  /external/chromium/webkit/glue/
dom_operations.cc 105 void GetAllSavableResourceLinksForFrame(WebFrame* current_frame,
110 GURL current_frame_url = current_frame->url();
132 WebDocument current_doc = current_frame->document();
dom_serializer_unittest.cc 59 WebFrame* current_frame = stack.back(); local
61 if (GURL(current_frame->url()) == url)
62 return current_frame;
63 WebNodeCollection all = current_frame->document().all();
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
lt_prediction.h 65 Real current_frame[]);
long_term_synthesis.cpp 96 current_frame = channel buffer (Int32) containing the dequantized
99 input current_frame.
120 current_frame contents are the dequantized spectrum with a prediction
124 scalefactor band of output current_frame buffer.
200 pCurrent_frame = &current_frame[sfb_offset];
324 pCurrent_frame_start = &current_frame[0];
552 Int32 current_frame[],
664 pCurrent_frame = &current_frame[sfb_offset];
    [all...]
long_term_synthesis.h 92 Int32 current_frame[],
  /external/chromium/net/spdy/
spdy_framer.cc 591 SpdyFrame current_frame(current_frame_buffer_, false);
604 !current_frame.is_control_frame() &&
605 current_frame.length() == 0) {
606 if (current_frame.flags() & CONTROL_FLAG_FIN) {
614 remaining_payload_ = current_frame.length();
623 if (!current_frame.is_control_frame())
    [all...]
  /external/flac/include/FLAC/
stream_encoder.h 530 * \a samples and \a current_frame are purely informational. If \a samples
531 * is greater than \c 0, then \a current_frame will hold the current frame
550 * \param current_frame The number of the current frame being encoded.
556 typedef FLAC__StreamEncoderWriteStatus (*FLAC__StreamEncoderWriteCallback)(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
    [all...]
  /external/srec/srec/crec/
srec.c 654 static void reset_cost_offsets(multi_srec* rec, frameID current_frame,
657 rec->cost_offset_for_frame[current_frame] = current_best_cost;
658 if (current_frame == 0)
659 rec->accumulated_cost_offset[current_frame] = current_best_cost;
661 rec->accumulated_cost_offset[current_frame] = rec->accumulated_cost_offset[current_frame-1] + current_best_cost;
    [all...]
  /external/opencv/cvaux/include/
cvaux.h     [all...]

Completed in 4283 milliseconds