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

  /external/flac/libFLAC/include/private/
ogg_encoder_aspect.h 60 typedef FLAC__StreamEncoderWriteStatus (*FLAC__OggEncoderAspectWriteCallbackProxy)(const void *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
62 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/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 302 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...]
  /frameworks/av/media/libstagefright/codecs/flac/enc/
SoftFlacEncoder.h 81 size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
85 size_t bytes, unsigned samples, unsigned current_frame);
SoftFlacEncoder.cpp 355 unsigned current_frame) {
356 UNUSED_UNLESS_VERBOSE(current_frame);
358 bytes, samples, current_frame);
457 unsigned current_frame,
460 buffer, bytes, samples, current_frame);
  /external/v8/src/arm64/
deoptimizer-arm64.cc 234 Register current_frame = x2; local
235 __ Ldr(current_frame, MemOperand(x0, 0));
236 __ Ldr(x3, MemOperand(current_frame, FrameDescription::frame_size_offset()));
241 __ Add(x6, current_frame, x3);
264 __ Ldr(x6, MemOperand(current_frame, FrameDescription::state_offset()));
282 __ Mov(last_output_frame, current_frame);
  /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) {
  /hardware/intel/common/libmix/mix_video/src/
mixvideoformat_h264.h 107 MixVideoFrame * current_frame);
mixvideoformat_mp42.h 109 enum _picture_type frame_type, MixVideoFrame * current_frame);
mixvideoformat_vc1.h 111 MixVideoFrame * current_frame);
mixvideoformat_mp42.c     [all...]
mixvideoformat_vc1.c     [all...]
mixvideoformat_h264.c     [all...]
  /art/runtime/
stack.cc 68 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != nullptr;
69 current_frame = current_frame->GetLink()) {
70 if (current_frame->GetMethod()->IsNative()) {
72 count += current_frame->NumberOfVRegs();
82 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != nullptr;
83 current_frame = current_frame->GetLink())
    [all...]
  /external/flac/include/FLAC/
stream_encoder.h 531 * \a samples and \a current_frame are purely informational. If \a samples
532 * is greater than \c 0, then \a current_frame will hold the current frame
551 * \param current_frame The number of the current frame being encoded.
557 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/opencv/cvaux/include/
cvaux.h     [all...]
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.cpp 1594 StackFrame *current_frame = thread.GetStackFrameAtIndex(0).get(); local
    [all...]

Completed in 1054 milliseconds