Searched refs:current_frame (Results 1 - 10 of 10) sorted by relevance

/external/flac/libFLAC/include/private/
H A Dogg_encoder_aspect.h59 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);
/external/qemu/android/camera/
H A Dcamera-capture-mac.m86 CVImageBufferRef current_frame;
233 if (current_frame != nil) {
234 CVBufferRelease(current_frame);
235 current_frame = nil;
271 if (current_frame != nil) {
274 _QTtoFOURCC(CVPixelBufferGetPixelFormatType(current_frame));
275 const int frame_width = CVPixelBufferGetWidth(current_frame);
276 const int frame_height = CVPixelBufferGetHeight(current_frame);
278 CVPixelBufferGetBytesPerRow(current_frame) * frame_height;
281 CVPixelBufferLockBaseAddress(current_frame,
[all...]
/external/flac/libFLAC/
H A Dogg_encoder_aspect.c111 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) argument
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))) {
H A Dstream_encoder.c322 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);
2513 * when the encoder goes back to write metadata, 'current_frame'
4309 FLAC__StreamEncoderWriteStatus file_write_callback_(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data) argument
4311 (void)client_data, (void)current_frame;
/external/chromium/webkit/glue/
H A Ddom_operations.cc105 void GetAllSavableResourceLinksForFrame(WebFrame* current_frame, argument
110 GURL current_frame_url = current_frame->url();
132 WebDocument current_doc = current_frame->document();
H A Ddom_serializer_unittest.cc59 WebFrame* current_frame = stack.back(); local
61 if (GURL(current_frame->url()) == url)
62 return current_frame;
63 WebNodeCollection all = current_frame->document().all();
/external/flac/include/FLAC/
H A Dstream_encoder.h530 * \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);
/external/chromium/net/spdy/
H A Dspdy_framer.cc906 SpdyFrame current_frame(current_frame_buffer_, false);
914 !current_frame.is_control_frame() &&
915 current_frame.length() == 0) {
916 if (current_frame.flags() & CONTROL_FLAG_FIN) {
924 remaining_data_ = current_frame.length();
933 if (!current_frame.is_control_frame())
/external/srec/srec/crec/
H A Dsrec.c654 static void reset_cost_offsets(multi_srec* rec, frameID current_frame, argument
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;
/external/opencv/cvaux/include/
H A Dcvaux.h1186 CV_INLINE int cvUpdateBGStatModel( IplImage* current_frame, CvBGStatModel* bg_model ) argument
1188 return bg_model && bg_model->update ? bg_model->update( current_frame, bg_model ) : 0;

Completed in 294 milliseconds