Home
last modified time | relevance | path

Searched refs:frame (Results 801 - 825 of 1514) sorted by relevance

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

/third_party/ffmpeg/libavfilter/
H A Dvf_mestimate.c140 static int filter_frame(AVFilterLink *inlink, AVFrame *frame) in filter_frame() argument
151 if (frame->pts == AV_NOPTS_VALUE) { in filter_frame()
152 ret = ff_filter_frame(ctx->outputs[0], frame); in filter_frame()
159 s->next = frame; in filter_frame()
165 s->cur = av_frame_clone(frame); in filter_frame()
216 //left mb in current frame in filter_frame()
221 //top mb in current frame in filter_frame()
224 //top-right mb in current frame in filter_frame()
227 //top-left mb in current frame in filter_frame()
269 //left mb in current frame in filter_frame()
[all...]
H A Dvf_guided.c403 AVFrame *frame = NULL; in activate() local
412 if ((ret = ff_inlink_consume_frame(inlink, &frame)) > 0) { in activate()
414 return ff_filter_frame(outlink, frame); in activate()
416 ret = filter_frame(ctx, &out, frame, frame); in activate()
417 av_frame_free(&frame); in activate()
H A Dvf_perspective.c90 { "frame", "eval expressions per-frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
440 static int filter_frame(AVFilterLink *inlink, AVFrame *frame) in filter_frame() argument
451 av_frame_free(&frame); in filter_frame()
454 av_frame_copy_props(out, frame); in filter_frame()
468 .src = frame->data[plane], in filter_frame()
469 .src_linesize = frame->linesize[plane], in filter_frame()
478 av_frame_free(&frame); in filter_frame()
/third_party/ffmpeg/tests/fate/
H A Dhevc.mak233 fate-hevc-paired-fields: CMD = probeframes -show_entries frame=interlaced_frame,top_field_first $(TARGET_SAMPLES)/hevc/paired_fields.hevc
236 fate-hevc-monochrome-crop: CMD = probeframes -show_entries frame=width,height:stream=width,height $(TARGET_SAMPLES)/hevc/hevc-monochrome.hevc
239 fate-hevc-hdr10-plus-metadata: CMD = probeframes -show_entries frame=side_data_list $(TARGET_SAMPLES)/hevc/hdr10_plus_h265_sample.hevc
242 fate-hevc-hdr-vivid-metadata: CMD = probeframes -show_entries frame=side_data_list $(TARGET_SAMPLES)/hevc/hdr_vivid_h265_sample.hevc
245 fate-hevc-dv-rpu: CMD = probeframes -show_entries frame=side_data_list -select_streams 0 -read_intervals "%+\#2" $(TARGET_SAMPLES)/hevc/dv84.mov
/third_party/mesa3d/src/intel/vulkan/
H A Danv_measure.c139 const unsigned device_frame = measure_device->frame; in anv_measure_start_snapshot()
141 /* if the command buffer is not associated with a frame, associate it with in anv_measure_start_snapshot()
142 * the most recent acquired frame in anv_measure_start_snapshot()
144 if (measure->base.frame == 0) in anv_measure_start_snapshot()
145 measure->base.frame = device_frame; in anv_measure_start_snapshot()
332 measure->base.frame = 0; in anv_measure_reset()
422 * Hook for the start of a frame.
435 intel_measure_frame_transition(p_atomic_inc_return(&measure_device->frame)); in _anv_measure_acquire()
/third_party/node/deps/v8/src/compiler/backend/
H A Dcode-generator.h122 explicit CodeGenerator(Zone* codegen_zone, Frame* frame, Linkage* linkage,
144 const Frame* frame() const { return frame_access_state_->frame(); } in frame() function in v8::internal::compiler::final
183 // 1. The optimized frame is smaller than the corresponding deoptimized frames
186 // These are not accounted for by the initial frame setup.
199 void CreateFrameAccessState(Frame* frame);
201 // Architecture - specific frame finalization.
202 void FinishFrame(Frame* frame);
273 // to set up a stack frame.
277 // to tear down a stack frame
[all...]
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha512-s390x.pl111 $frame=$stdframe+16*$SZ;
265 lghi %r1,-$frame
294 l${g} $ctx,`$frame+2*$SIZE_T`($sp)
312 cl${g} $inp,`$frame+4*$SIZE_T`($sp)
315 lm${g} %r6,%r15,`$frame+6*$SIZE_T`($sp)
/third_party/openssl/crypto/sha/asm/
H A Dsha512-s390x.pl111 $frame=$stdframe+16*$SZ;
265 lghi %r1,-$frame
294 l${g} $ctx,`$frame+2*$SIZE_T`($sp)
312 cl${g} $inp,`$frame+4*$SIZE_T`($sp)
315 lm${g} %r6,%r15,`$frame+6*$SIZE_T`($sp)
/third_party/ffmpeg/libavcodec/
H A Dinterplayacm.c555 static int decode_frame(AVCodecContext *avctx, AVFrame *frame, in decode_frame() argument
588 frame->nb_samples = FFMIN(s->block_len / avctx->ch_layout.nb_channels, s->max_samples); in decode_frame()
589 s->max_samples -= FFMIN(frame->nb_samples, s->max_samples); in decode_frame()
590 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in decode_frame()
598 samples = (int16_t *)frame->data[0]; in decode_frame()
599 for (n = 0; n < frame->nb_samples * avctx->ch_layout.nb_channels; n++) { in decode_frame()
H A Dralf.c66 int num_blocks; ///< number of blocks inside the frame
159 av_log(avctx, AV_LOG_ERROR, "invalid frame size %d\n", in decode_init()
413 static int decode_frame(AVCodecContext *avctx, AVFrame *frame, in decode_frame() argument
454 frame->nb_samples = ctx->max_frame_size; in decode_frame()
455 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in decode_frame()
457 samples0 = (int16_t *)frame->data[0]; in decode_frame()
458 samples1 = (int16_t *)frame->data[1]; in decode_frame()
502 frame->nb_samples = ctx->sample_offset; in decode_frame()
H A Dlibgsmenc.c92 const AVFrame *frame, int *got_packet_ptr) in libgsm_encode_frame()
95 gsm_signal *samples = (gsm_signal *)frame->data[0]; in libgsm_encode_frame()
91 libgsm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr) libgsm_encode_frame() argument
H A Dvp9_metadata_bsf.c45 VP9RawFrame *frame = frag->units[i].content; in vp9_metadata_update_fragment() local
46 VP9RawFrameHeader *header = &frame->header; in vp9_metadata_update_fragment()
86 .unit_name = "frame",
H A Dvideotoolbox_vp9.c28 #include "libavutil/frame.h"
122 AVFrame *frame = h->frames[CUR_FRAME].tf.f; in videotoolbox_vp9_end_frame() local
124 return ff_videotoolbox_common_end_frame(avctx, frame); in videotoolbox_vp9_end_frame()
H A Dqsvenc_vp9.c50 const AVFrame *frame, int *got_packet) in qsv_enc_frame()
54 return ff_qsv_encode(avctx, &q->qsv, pkt, frame, got_packet); in qsv_enc_frame()
49 qsv_enc_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet) qsv_enc_frame() argument
/third_party/node/deps/v8/third_party/ittapi/include/legacy/
H A Dittnotify.h901 * @brief opaque structure for frame identification
906 * @brief Create a global frame with given domain
961 /** @brief Record a frame begin occurrence. */
962 void ITTAPI __itt_frame_begin(__itt_frame frame);
963 /** @brief Record a frame end occurrence. */
964 void ITTAPI __itt_frame_end (__itt_frame frame);
969 ITT_STUBV(ITTAPI, void, frame_begin, (__itt_frame frame))
970 ITT_STUBV(ITTAPI, void, frame_end, (__itt_frame frame))
976 #define __itt_frame_begin(frame)
978 #define __itt_frame_end(frame)
[all...]
/third_party/node/deps/openssl/openssl/crypto/modes/asm/
H A Dghash-sparcv9.pl58 $frame="STACK_FRAME";
107 save %sp,-$frame,%sp
248 save %sp,-$frame,%sp
371 save %sp,-$frame,%sp
404 save %sp,-$frame,%sp
458 save %sp,-$frame,%sp
/third_party/python/Tools/c-analyzer/c_common/
H A Dscriptutil.py52 frame = sys._getframe(2)
53 while frame.f_globals['__name__'] != '__main__':
54 frame = frame.f_back
57 filename = frame.f_globals['__file__']
59 spec = frame.f_globals['__spec__']
/third_party/openssl/crypto/modes/asm/
H A Dghash-sparcv9.pl58 $frame="STACK_FRAME";
107 save %sp,-$frame,%sp
248 save %sp,-$frame,%sp
371 save %sp,-$frame,%sp
404 save %sp,-$frame,%sp
458 save %sp,-$frame,%sp
/third_party/ffmpeg/libavformat/
H A Dmux.c726 AVFrame **frame = (AVFrame **)pkt->data; in write_packet() local
727 av_assert0(pkt->size == sizeof(*frame)); in write_packet()
728 ret = s->oformat->write_uncoded_frame(s, pkt->stream_index, frame, 0); in write_packet()
1392 AVFrame *frame, int interleaved) in write_uncoded_frame_internal()
1399 av_frame_free(&frame); in write_uncoded_frame_internal()
1403 if (!frame) { in write_uncoded_frame_internal()
1406 size_t bufsize = sizeof(frame) + AV_INPUT_BUFFER_PADDING_SIZE; in write_uncoded_frame_internal()
1416 av_frame_free(&frame); in write_uncoded_frame_internal()
1419 *framep = frame; in write_uncoded_frame_internal()
1422 pkt->size = sizeof(frame); in write_uncoded_frame_internal()
1391 write_uncoded_frame_internal(AVFormatContext *s, int stream_index, AVFrame *frame, int interleaved) write_uncoded_frame_internal() argument
1434 av_write_uncoded_frame(AVFormatContext *s, int stream_index, AVFrame *frame) av_write_uncoded_frame() argument
1440 av_interleaved_write_uncoded_frame(AVFormatContext *s, int stream_index, AVFrame *frame) av_interleaved_write_uncoded_frame() argument
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dscheduler.cc819 SpecialRPOStackFrame* frame = &stack_[current]; in ComputeAndInsertSpecialRPO() local
821 if (frame->block != end && in ComputeAndInsertSpecialRPO()
822 frame->index < frame->block->SuccessorCount()) { in ComputeAndInsertSpecialRPO()
824 BasicBlock* succ = frame->block->SuccessorAt(frame->index++); in ComputeAndInsertSpecialRPO()
828 backedges_.push_back(Backedge(frame->block, frame->index - 1)); in ComputeAndInsertSpecialRPO()
840 order = PushFront(order, frame->block); in ComputeAndInsertSpecialRPO()
841 frame in ComputeAndInsertSpecialRPO()
863 SpecialRPOStackFrame* frame = &stack_[stack_depth - 1]; ComputeAndInsertSpecialRPO() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dwpa_auth_ft.c61 * @src_addr: MAC address of the frame sender
62 * @type: Vendor-specific subtype of the RRB frame (FT_PACKET_*)
111 * two octet padding even if the frame is longer than in wpa_ft_rrb_decrypt()
112 * the minimum Ethernet frame. */ in wpa_ft_rrb_decrypt()
511 * @src_addr: MAC address of the frame sender
512 * @type: Vendor-specific subtype of the RRB frame (FT_PACKET_*)
548 "FT: Pad message to minimum Ethernet frame length (%d --> %d)", in wpa_ft_rrb_build()
576 wpa_hexdump(MSG_MSGDUMP, "FT: RRB frame payload", *packet, *packet_len); in wpa_ft_rrb_build()
2578 * (Re)Association Response frame during an FT initial mobility in wpa_sm_write_assoc_resp_ies()
3077 wpa_hexdump(MSG_DEBUG, "FT: Received authentication frame IE in wpa_ft_process_auth_req()
3559 struct ft_rrb_frame *frame; wpa_ft_action_rx() local
3686 struct ft_rrb_frame *frame; wpa_ft_send_rrb_auth_resp() local
4551 struct ft_rrb_frame *frame; wpa_ft_rrb_rx() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dwpa_auth_ft.c60 * @src_addr: MAC address of the frame sender
61 * @type: Vendor-specific subtype of the RRB frame (FT_PACKET_*)
110 * two octet padding even if the frame is longer than in wpa_ft_rrb_decrypt()
111 * the minimum Ethernet frame. */ in wpa_ft_rrb_decrypt()
510 * @src_addr: MAC address of the frame sender
511 * @type: Vendor-specific subtype of the RRB frame (FT_PACKET_*)
547 "FT: Pad message to minimum Ethernet frame length (%d --> %d)", in wpa_ft_rrb_build()
575 wpa_hexdump(MSG_MSGDUMP, "FT: RRB frame payload", *packet, *packet_len); in wpa_ft_rrb_build()
2459 * (Re)Association Response frame during an FT initial mobility in wpa_sm_write_assoc_resp_ies()
2886 wpa_hexdump(MSG_DEBUG, "FT: Received authentication frame IE in wpa_ft_process_auth_req()
3332 struct ft_rrb_frame *frame; wpa_ft_action_rx() local
3459 struct ft_rrb_frame *frame; wpa_ft_send_rrb_auth_resp() local
4319 struct ft_rrb_frame *frame; wpa_ft_rrb_rx() local
[all...]
/third_party/mbedtls/scripts/mbedtls_dev/
H A Dbuild_tree.py84 for frame in inspect.stack():
85 path = os.path.dirname(frame.filename)
/third_party/nghttp2/src/
H A Dshrpx_http2_upstream.h122 void on_start_request(const nghttp2_frame *frame);
123 int on_request_headers(Downstream *downstream, const nghttp2_frame *frame);
/third_party/node/deps/v8/src/heap/base/asm/x64/
H A Dpush_registers_masm.S20 ;; rbp is callee-saved. Maintain proper frame pointer for debugging.
53 ;; Restore rbp as it was used as frame pointer.

Completed in 27 milliseconds

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