Home
last modified time | relevance | path

Searched refs:frame (Results 951 - 975 of 1514) sorted by relevance

1...<<31323334353637383940>>...61

/third_party/libunwind/libunwind/doc/
H A Dunw_init_local.tex23 \Var{ctxt} identifies the initial stack frame at which unwinding
40 If the unw_context_t is known to be a signal frame (i.e., from the
H A Dunw_init_remote.tex28 structure containing the machine-state of the initial stack frame.
31 stack-frame chain to be unwound. In other words, the interpretation
/third_party/skia/third_party/externals/dawn/examples/
H A DComputeBoids.cpp310 void frame() { in frame() function
329 frame(); in main()
H A DCppHelloTriangle.cpp146 void frame() { in frame() function
181 frame(); in main()
/third_party/skia/tools/debugger/
H A DDebugCanvas.h43 * Provide a frame number that will be passed to all layer manager functions to identify this
48 void setLayerManagerAndFrame(DebugLayerManager* lm, int frame) { in setLayerManagerAndFrame() argument
50 fFrame = frame; in setLayerManagerAndFrame()
/third_party/rust/crates/regex/src/
H A Dpikevm.rs65 /// A representation of an explicit stack frame when following epsilon
279 while let Some(frame) = self.stack.pop() { in add()
280 match frame { in add()
/third_party/ffmpeg/libavcodec/
H A Dv4l2_m2m.h57 /* null frame/packet received */
61 /* Reference to a frame. Only used during encoding */
62 AVFrame *frame; member
H A Daacenc.c111 put_bits(&pb, 1, 0); //frame length - 1024 samples in put_audio_specific_config()
535 static void copy_input_samples(AACEncContext *s, const AVFrame *frame) in copy_input_samples() argument
538 int end = 2048 + (frame ? frame->nb_samples : 0); in copy_input_samples()
543 /* copy last 1024 samples of previous frame to the start of the current frame */ in copy_input_samples()
547 if (frame) { in copy_input_samples()
549 frame->extended_data[channel_map[ch]], in copy_input_samples()
550 frame->nb_samples * sizeof(s->planar_samples[0][0])); in copy_input_samples()
558 const AVFrame *frame, in in aac_encode_frame()
557 aac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr) aac_encode_frame() argument
[all...]
H A Dwavpack.c111 AVFrame *frame; member
1102 av_log(avctx, AV_LOG_ERROR, "Error creating frame decode context\n"); in wavpack_decode_block()
1563 wc->frame = wc->curr_frame.f; in wavpack_decode_block()
1572 samples_l = wc->frame->extended_data[wc->ch_offset]; in wavpack_decode_block()
1574 samples_r = wc->frame->extended_data[wc->ch_offset + 1]; in wavpack_decode_block()
1624 AVFrame *frame = frmptr; in dsd_channel() local
1627 (uint8_t *)frame->extended_data[jobnr], 4, in dsd_channel()
1628 (float *)frame->extended_data[jobnr], 1); in dsd_channel()
1644 s->frame = NULL; in wavpack_decode_frame()
1687 avctx->execute2(avctx, dsd_channel, s->frame, NUL in wavpack_decode_frame()
[all...]
H A Dsanm.c277 AVFrame *frame; member
998 av_log(ctx->avctx, AV_LOG_ERROR, "Insufficient data for raw frame.\n"); in decode_0()
1282 av_log(ctx->avctx, AV_LOG_ERROR, "Insufficient data for frame.\n"); in decode_6()
1325 av_log(ctx->avctx, AV_LOG_ERROR, "Input frame too short (%d bytes).\n", in read_frame_header()
1375 if ((ret = ff_get_buffer(ctx->avctx, ctx->frame, 0)) < 0) in copy_output()
1378 dst = ctx->frame->data[0]; in copy_output()
1379 dstpitch = ctx->frame->linesize[0]; in copy_output()
1390 static int decode_frame(AVCodecContext *avctx, AVFrame *frame, in decode_frame() argument
1396 ctx->frame = frame; in decode_frame()
[all...]
H A Ddss_sp.c743 static int dss_sp_decode_frame(AVCodecContext *avctx, AVFrame *frame, in dss_sp_decode_frame() argument
762 frame->nb_samples = DSS_SP_SAMPLE_COUNT; in dss_sp_decode_frame()
763 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in dss_sp_decode_frame()
766 out = (int16_t *)frame->data[0]; in dss_sp_decode_frame()
H A Dflacdec.c56 GetBitContext gb; ///< GetBitContext initialized to start at the current frame
58 int blocksize; ///< number of samples in the current frame
60 int ch_mode; ///< channel decorrelation type in the current frame
104 frame data instead of extradata. */ in flac_decode_init()
479 av_log(s->avctx, AV_LOG_ERROR, "invalid frame header\n"); in decode_frame()
497 av_log(s->avctx, AV_LOG_ERROR, "bps not found in STREAMINFO or frame header\n"); in decode_frame()
524 " or frame header\n"); in decode_frame()
551 /* frame footer */ in decode_frame()
557 static int flac_decode_frame(AVCodecContext *avctx, AVFrame *frame, in flac_decode_frame() argument
585 this amount corresponds to the smallest valid FLAC frame possibl in flac_decode_frame()
[all...]
H A Dg729dec.c115 int16_t lsfq[10]; ///< (2.13) quantized LSF coefficients from previous frame
144 int16_t was_periodic; ///< whether previous frame was declared as periodic or not (4.4)
148 int ma_predictor_prev; ///< switched MA predictor of LSP quantizer from last good frame
235 * Restores past LSP quantizer output using LSF from previous frame
238 * @param ma_predictor_prev MA predictor from previous frame
239 * @param lsfq_prev (2.13) quantized LSF coefficients from previous frame
363 /* Both 8kbit/s and 6.4kbit/s modes uses two subframes per frame. */ in decoder_init()
404 static int decode_frame(AVCodecContext *avctx, AVFrame *frame, in decode_frame() argument
431 frame->nb_samples = SUBFRAME_SIZE<<1; in decode_frame()
432 if ((ret = ff_get_buffer(avctx, frame, in decode_frame()
[all...]
H A Dsipr.c523 static int sipr_decode_frame(AVCodecContext *avctx, AVFrame *frame, in sipr_decode_frame() argument
544 frame->nb_samples = mode_par->frames_per_packet * subframe_size * in sipr_decode_frame()
546 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in sipr_decode_frame()
548 samples = (float *)frame->data[0]; in sipr_decode_frame()
/third_party/ffmpeg/libavfilter/
H A Dvf_pullup.h62 PullupFrame frame; member
H A Dvmaf_motion.h55 double ff_vmafmotion_process(VMAFMotionData *data, AVFrame *frame);
H A Dyadif.h27 YADIF_MODE_SEND_FRAME = 0, ///< send 1 frame for each frame
28 YADIF_MODE_SEND_FIELD = 1, ///< send 1 frame for each field
29 YADIF_MODE_SEND_FRAME_NOSPATIAL = 2, ///< send 1 frame for each frame but skips spatial interlacing check
30 YADIF_MODE_SEND_FIELD_NOSPATIAL = 3, ///< send 1 frame for each field but skips spatial interlacing check
45 YADIF_FIELD_BACK_END = -1, ///< The last frame in a sequence
91 int ff_yadif_filter_frame(AVFilterLink *link, AVFrame *frame);
/third_party/ffmpeg/libavutil/
H A Dfilm_grain_params.h22 #include "frame.h"
210 * for specific codecs. Must be present on every frame where film grain is
252 * Allocate a complete AVFilmGrainParams and add it to the frame.
254 * @param frame The frame which side data is added to.
258 AVFilmGrainParams *av_film_grain_params_create_side_data(AVFrame *frame);
H A Dhdr_dynamic_vivid_metadata.h24 #include "frame.h"
277 * Allocate a complete AVDynamicHDRVivid and add it to the frame.
278 * @param frame The frame which side data is added to.
283 AVDynamicHDRVivid *av_dynamic_hdr_vivid_create_side_data(AVFrame *frame);
/third_party/curl/lib/
H A Dws.h36 /* a client-side WS frame decoder, parsing frame headers and
54 /* a client-side WS frame encoder, generating frame headers and
55 * converting payloads, tracking remaining data in current frame */
57 curl_off_t payload_len; /* payload length of current frame */
61 unsigned char firstbyte; /* first byte of frame we encode */
73 struct curl_ws_frame frame; /* the current WS FRAME received */ member
/third_party/libwebsockets/contrib/
H A DAndroid.mk19 $(LWS_LIB_PATH)/extension-deflate-frame.c \
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/
H A DSkottieAnimation.java30 * Returns the animation frame count. This is normally an integral value,
31 * but both the JSON encoding and Skottie's frame-based APIs support fractional frames.
60 * Update the animation state to match |f|, specified as a frame index
65 * 0.0 -> first frame
66 * 1.0 -> second frame
67 * 0.5 -> halfway between first and second frame
74 * Draw the current frame to the Canvas.
102 private static native void nSeekFrame(long nativeInstance, double frame); in nSeekFrame() argument
/third_party/skia/docs/examples/
H A Dshapes_with_motion.cpp6 //float p = 1 - fabs(2 * frame - 1); in REG_FIDDLE_ANIMATED()
7 float p = 0.5 * (1 - cos(6.28318548f * frame)); in REG_FIDDLE_ANIMATED()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderDebugger.cpp1345 // updateFrameLocals() updates the local variables in the frame with
1347 void updateFrameLocals(State *state, vk::dbg::Frame &frame, debug::LexicalBlock *block);
2169 // Enter the stack frame entry for the SPIR-V.
2170 thread->enter(state->debugger->spirvFile, "SPIR-V", [&](vk::dbg::Frame &frame) {
2174 frame.locals->variables->put(laneName(lane), laneLocals);
2175 frame.hovers->variables->extend(std::make_shared<HoversFromLocals>(frame.locals->variables));
2233 // Special care is taken for deviation in just the top most frame so we
2234 // don't end up reconstructing the top most stack frame every scope
2245 // Deviation is just a movement in the top most frame'
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dwasm-engine.cc1370 StackFrame* frame, std::unordered_set<wasm::WasmCode*>& live_wasm_code) { in ReportLiveCodeFromFrameForGC()
1371 if (frame->type() != StackFrame::WASM) return; in ReportLiveCodeFromFrameForGC()
1372 live_wasm_code.insert(WasmFrame::cast(frame)->wasm_code()); in ReportLiveCodeFromFrameForGC()
1374 if (WasmFrame::cast(frame)->wasm_code()->for_debugging()) { in ReportLiveCodeFromFrameForGC()
1375 Address osr_target = base::Memory<Address>(WasmFrame::cast(frame)->fp() - in ReportLiveCodeFromFrameForGC()
1401 StackFrame* const frame = it.frame(); in ReportLiveCodeFromStackForGC() local
1402 ReportLiveCodeFromFrameForGC(frame, live_wasm_code); in ReportLiveCodeFromStackForGC()
1408 StackFrame* const frame = it.frame(); in ReportLiveCodeFromStackForGC() local
1369 ReportLiveCodeFromFrameForGC( StackFrame* frame, std::unordered_set<wasm::WasmCode*>& live_wasm_code) ReportLiveCodeFromFrameForGC() argument
[all...]

Completed in 21 milliseconds

1...<<31323334353637383940>>...61