Home
last modified time | relevance | path

Searched refs:frame (Results 851 - 875 of 3060) sorted by relevance

1...<<31323334353637383940>>...123

/third_party/ffmpeg/libavcodec/
H A Dqsv_internal.h44 #include "libavutil/frame.h"
78 AVFrame *frame; member
112 * from the frame allocator. */
149 int ff_qsv_find_surface_idx(QSVFramesContext *ctx, QSVFrame *frame);
151 void ff_qsv_frame_add_ext_param(AVCodecContext *avctx, QSVFrame *frame,
154 int ff_qsv_map_frame_to_surface(const AVFrame *frame, mfxFrameSurface1 *surface);
H A Dvima.c120 static int decode_frame(AVCodecContext *avctx, AVFrame *frame, in decode_frame() argument
158 frame->nb_samples = samples; in decode_frame()
159 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in decode_frame()
163 uint16_t *dest = (uint16_t *)frame->data[0] + chan; in decode_frame()
H A Dra144dec.c63 static int ra144_decode_frame(AVCodecContext * avctx, AVFrame *frame, in ra144_decode_frame() argument
71 unsigned int lpc_refl[LPC_ORDER]; // LPC reflection coefficients of the frame in ra144_decode_frame()
88 frame->nb_samples = NBLOCKS * BLOCKSIZE; in ra144_decode_frame()
89 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in ra144_decode_frame()
91 samples = (int16_t *)frame->data[0]; in ra144_decode_frame()
H A Dlibopenjpegenc.c360 av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n"); in libopenjpeg_copy_packed8()
401 av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n"); in libopenjpeg_copy_packed12()
442 av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n"); in libopenjpeg_copy_packed16()
484 av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n"); in libopenjpeg_copy_unpacked8()
526 av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n"); in libopenjpeg_copy_unpacked16()
556 const AVFrame *frame, int *got_packet) in libopenjpeg_encode_frame()
565 const uint8_t *data[4] = { frame->data[0], frame->data[1], in libopenjpeg_encode_frame()
566 frame->data[2], frame in libopenjpeg_encode_frame()
555 libopenjpeg_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet) libopenjpeg_encode_frame() argument
[all...]
/third_party/mesa3d/include/drm-uapi/
H A Dlima_drm.h72 /* frame used to setup GP for each task */
74 __u32 frame[LIMA_GP_FRAME_REG_NUM]; member
80 /* frame used to setup mali400 GPU PP for each task */
82 __u32 frame[LIMA_PP_FRAME_REG_NUM]; member
89 /* frame used to setup mali450 GPU PP for each task */
91 __u32 frame[LIMA_PP_FRAME_REG_NUM]; member
120 __u32 frame_size; /* in, size of frame field */
122 __u64 frame; /* in, GP/PP frame */ member
/third_party/jinja2/
H A Dnativetypes.py63 self, node: nodes.Expr, frame: Frame, finalize: CodeGenerator._FinalizeInfo
65 const = node.as_const(frame.eval_ctx)
76 self, node: nodes.Expr, frame: Frame, finalize: CodeGenerator._FinalizeInfo
82 self, node: nodes.Expr, frame: Frame, finalize: CodeGenerator._FinalizeInfo
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_conditionaljumptracker.cpp115 auto& frame = *impl->m_jump_stack.top(); in pop()
116 if (frame.type != type) in pop()
119 frame.fixup_pop(final); in pop()
120 if (frame.type == jt_loop) in pop()
/third_party/node/test/sequential/
H A Dtest-diagnostic-dir-heap-prof.js37 return { frame: first, roots: profile.head.children };
41 const { frame, roots } = findFirstFrame(file, func);
42 if (!frame) {
47 assert.notStrictEqual(frame, undefined);
/third_party/python/Lib/idlelib/
H A Dsearch.py145 frame = Frame(top)
146 frame.pack()
147 text = Text(frame, inactiveselectbackground='gray')
156 button = Button(frame, text="Search (selection ignored)", command=show_find)
/third_party/skia/third_party/externals/microhttpd/src/microspdy/
H A Dstream.c40 struct SPDYF_Control_Frame *frame; in SPDYF_stream_new() local
48 frame = (struct SPDYF_Control_Frame *)session->frame_handler_cls; in SPDYF_stream_new()
60 //ignore frame in SPDYF_stream_new()
67 //we MUST ignore the frame in SPDYF_stream_new()
103 stream->is_in_closed = (frame->flags & SPDY_SYN_STREAM_FLAG_FIN) != 0; in SPDYF_stream_new()
104 stream->flag_unidirectional = (frame->flags & SPDY_SYN_STREAM_FLAG_UNIDIRECTIONAL) != 0; in SPDYF_stream_new()
/device/soc/rockchip/common/sdk_linux/drivers/media/usb/uvc/
H A Duvc_driver.c459 /* Convert a fraction to a frame interval in 100ns multiples. The idea here is
591 struct uvc_frame *frame; in uvc_parse_format() local
716 /* Create a dummy frame descriptor. */ in uvc_parse_format()
717 frame = &format->frame[0]; in uvc_parse_format()
718 memset(&format->frame[0], 0, sizeof(format->frame[0])); in uvc_parse_format()
719 frame->bFrameIntervalType = 1; in uvc_parse_format()
720 frame->dwDefaultFrameInterval = 1; in uvc_parse_format()
721 frame in uvc_parse_format()
850 struct uvc_frame *frame; uvc_parse_streaming() local
[all...]
/kernel/linux/linux-6.6/drivers/media/usb/uvc/
H A Duvc_driver.c230 struct uvc_frame *frame; in uvc_parse_format() local
343 /* Create a dummy frame descriptor. */ in uvc_parse_format()
344 frame = &frames[0]; in uvc_parse_format()
345 memset(frame, 0, sizeof(*frame)); in uvc_parse_format()
346 frame->bFrameIntervalType = 1; in uvc_parse_format()
347 frame->dwDefaultFrameInterval = 1; in uvc_parse_format()
348 frame->dwFrameInterval = *intervals; in uvc_parse_format()
370 * Parse the frame descriptors. Only uncompressed, MJPEG and frame in uvc_parse_format()
514 struct uvc_frame *frame; uvc_parse_streaming() local
[all...]
/kernel/linux/linux-5.10/fs/ext4/
H A Dnamei.c305 struct dx_frame *frame);
314 static void dx_insert_block(struct dx_frame *frame,
317 struct dx_frame *frame,
788 struct dx_frame *frame = frame_in; in dx_probe() local
795 frame->bh = ext4_read_dirblock(dir, 0, INDEX); in dx_probe()
796 if (IS_ERR(frame->bh)) in dx_probe()
797 return (struct dx_frame *) frame->bh; in dx_probe()
799 root = (struct dx_root *) frame->bh->b_data; in dx_probe()
889 frame->entries = entries; in dx_probe()
890 frame in dx_probe()
970 ext4_htree_next_block(struct inode *dir, __u32 hash, struct dx_frame *frame, struct dx_frame *frames, __u32 *start_hash) ext4_htree_next_block() argument
1133 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame; ext4_htree_fill_tree() local
1313 dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block) dx_insert_block() argument
1683 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame; ext4_dx_find_entry() local
1873 do_split(handle_t *handle, struct inode *dir, struct buffer_head **bh,struct dx_frame *frame, struct dx_hash_info *hinfo) do_split() argument
2165 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame; make_indexed_dir() local
2410 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame; ext4_dx_add_entry() local
[all...]
/kernel/linux/linux-6.6/fs/ext4/
H A Dnamei.c306 struct dx_frame *frame);
317 static void dx_insert_block(struct dx_frame *frame,
320 struct dx_frame *frame,
815 struct dx_frame *frame = frame_in; in dx_probe() local
822 frame->bh = ext4_read_dirblock(dir, 0, INDEX); in dx_probe()
823 if (IS_ERR(frame->bh)) in dx_probe()
824 return (struct dx_frame *) frame->bh; in dx_probe()
826 root = (struct dx_root *) frame->bh->b_data; in dx_probe()
925 frame->entries = entries; in dx_probe()
926 frame in dx_probe()
1006 ext4_htree_next_block(struct inode *dir, __u32 hash, struct dx_frame *frame, struct dx_frame *frames, __u32 *start_hash) ext4_htree_next_block() argument
1187 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame; ext4_htree_fill_tree() local
1378 dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block) dx_insert_block() argument
1782 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame; ext4_dx_find_entry() local
1974 do_split(handle_t *handle, struct inode *dir, struct buffer_head **bh,struct dx_frame *frame, struct dx_hash_info *hinfo) do_split() argument
2231 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame; make_indexed_dir() local
2491 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame; ext4_dx_add_entry() local
[all...]
/kernel/linux/linux-5.10/arch/loongarch/kernel/
H A Dsignal.c837 struct rt_sigframe __user *frame; in SYSCALL_DEFINE0() local
840 frame = (struct rt_sigframe __user *)regs->regs[3]; in SYSCALL_DEFINE0()
841 if (!access_ok(frame, sizeof(*frame))) in SYSCALL_DEFINE0()
843 if (__copy_from_user(&set, &frame->rs_uctx.uc_sigmask, sizeof(set))) in SYSCALL_DEFINE0()
848 sig = restore_sigcontext(regs, &frame->rs_uctx.uc_mcontext); in SYSCALL_DEFINE0()
855 if (restore_altstack(&frame->rs_uctx.uc_stack)) in SYSCALL_DEFINE0()
870 struct rt_sigframe __user *frame; in setup_rt_frame() local
872 frame = get_sigframe(ksig, regs, &extctx); in setup_rt_frame()
873 if (!access_ok(frame, sizeo in setup_rt_frame()
[all...]
/kernel/linux/linux-6.6/arch/loongarch/kernel/
H A Dsignal.c931 struct rt_sigframe __user *frame; in SYSCALL_DEFINE0() local
934 frame = (struct rt_sigframe __user *)regs->regs[3]; in SYSCALL_DEFINE0()
935 if (!access_ok(frame, sizeof(*frame))) in SYSCALL_DEFINE0()
937 if (__copy_from_user(&set, &frame->rs_uctx.uc_sigmask, sizeof(set))) in SYSCALL_DEFINE0()
942 sig = restore_sigcontext(regs, &frame->rs_uctx.uc_mcontext); in SYSCALL_DEFINE0()
949 if (restore_altstack(&frame->rs_uctx.uc_stack)) in SYSCALL_DEFINE0()
964 struct rt_sigframe __user *frame; in setup_rt_frame() local
966 frame = get_sigframe(ksig, regs, &extctx); in setup_rt_frame()
967 if (!access_ok(frame, sizeo in setup_rt_frame()
[all...]
/test/xts/hats/hdf/audio/idl/common/capture/src/
H A Daudio_capture_common_test.cpp193 /* capture frame cases */
203 int8_t *frame = (int8_t *)calloc(1, frameLen); in HWTEST_F() local
204 EXPECT_NE(nullptr, frame); in HWTEST_F()
206 ret = capture_->CaptureFrame(capture_, frame, &frameLen, &requestBytes); in HWTEST_F()
210 if (frame != nullptr) { in HWTEST_F()
211 free(frame); in HWTEST_F()
212 frame = nullptr; in HWTEST_F()
225 int8_t *frame = (int8_t *)calloc(1, sizeof(int)); in HWTEST_F() local
226 EXPECT_NE(nullptr, frame); in HWTEST_F()
229 EXPECT_NE(HDF_SUCCESS, capture_->CaptureFrame(capture_, frame, nullpt in HWTEST_F()
254 int8_t *frame = (int8_t *)calloc(1, frameLen); HWTEST_F() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/bridge/synopsys/
H A Ddw-hdmi.c629 * bits in the IEC60958 frame. For the moment this configuration is only
1768 struct hdmi_avi_infoframe frame; in hdmi_config_AVI() local
1771 /* Initialise info frame from DRM mode */ in hdmi_config_AVI()
1772 drm_hdmi_avi_infoframe_from_display_mode(&frame, connector, mode); in hdmi_config_AVI()
1775 drm_hdmi_avi_infoframe_quant_range(&frame, connector, mode, in hdmi_config_AVI()
1780 frame.quantization_range = HDMI_QUANTIZATION_RANGE_DEFAULT; in hdmi_config_AVI()
1781 frame.ycc_quantization_range = in hdmi_config_AVI()
1786 frame.colorspace = HDMI_COLORSPACE_YUV444; in hdmi_config_AVI()
1788 frame.colorspace = HDMI_COLORSPACE_YUV422; in hdmi_config_AVI()
1790 frame in hdmi_config_AVI()
1895 struct hdmi_vendor_infoframe frame; hdmi_config_vendor_specific_infoframe() local
1949 struct hdmi_drm_infoframe frame; hdmi_config_drm_infoframe() local
[all...]
/device/soc/rockchip/rk3399/hardware/mpp/src/
H A Dmpi_enc_utils.c81 /* set 8 frame lt-ref gap */ in mpi_enc_gen_ref_cfg()
85 lt_ref[REF_NUM_0].lt_gap = 8; // 8:set 8 frame in mpi_enc_gen_ref_cfg()
262 /* set 8 frame lt-ref gap */ in mpi_enc_gen_smart_gop_ref_cfg()
420 /* fix input / output frame rate */ in test_mpp_enc_cfg_setup()
429 /* drop frame or not when bitrate overflow */ in test_mpp_enc_cfg_setup()
432 mpp_enc_cfg_set_u32(cfg, "rc:drop_gap", 1); /* Do not continuous drop frame */ in test_mpp_enc_cfg_setup()
616 static void test_mpp_frame_set_param(MppFrame frame, MpiEncTestData *p) in test_mpp_frame_set_param() argument
618 mpp_frame_set_width(frame, p->width); in test_mpp_frame_set_param()
619 mpp_frame_set_height(frame, p->height); in test_mpp_frame_set_param()
620 mpp_frame_set_hor_stride(frame, in test_mpp_frame_set_param()
727 MppFrame frame = NULL; hal_mpp_encode() local
[all...]
/device/soc/rockchip/rk3568/hardware/mpp/src/
H A Dmpi_enc_utils.c82 /* set 8 frame lt-ref gap */ in mpi_enc_gen_ref_cfg()
86 lt_ref[REF_NUM_0].lt_gap = 8; // 8:set 8 frame in mpi_enc_gen_ref_cfg()
263 /* set 8 frame lt-ref gap */ in mpi_enc_gen_smart_gop_ref_cfg()
418 /* fix input / output frame rate */ in test_mpp_enc_cfg_setup()
427 /* drop frame or not when bitrate overflow */ in test_mpp_enc_cfg_setup()
430 mpp_enc_cfg_set_u32(cfg, "rc:drop_gap", 1); /* Do not continuous drop frame */ in test_mpp_enc_cfg_setup()
608 static void test_mpp_frame_set_param(MppFrame frame, MpiEncTestData *p) in test_mpp_frame_set_param() argument
610 mpp_frame_set_width(frame, p->width); in test_mpp_frame_set_param()
611 mpp_frame_set_height(frame, p->height); in test_mpp_frame_set_param()
612 mpp_frame_set_hor_stride(frame, in test_mpp_frame_set_param()
719 MppFrame frame = NULL; hal_mpp_encode() local
[all...]
/device/soc/rockchip/common/hardware/mpp/src/
H A Dmpi_enc_utils.c61 /* set 8 frame lt-ref gap */ in mpi_enc_gen_ref_cfg()
65 lt_ref[0].lt_gap = 8; // 8:set 8 frame in mpi_enc_gen_ref_cfg()
244 /* set 8 frame lt-ref gap */ in mpi_enc_gen_smart_gop_ref_cfg()
404 /* fix input / output frame rate */ in test_mpp_enc_cfg_setup()
413 /* drop frame or not when bitrate overflow */ in test_mpp_enc_cfg_setup()
416 mpp_enc_cfg_set_u32(cfg, "rc:drop_gap", 0x1); /* Do not continuous drop frame */ in test_mpp_enc_cfg_setup()
594 static void test_mpp_frame_set_param(MppFrame frame, MpiEncTestData *p) in test_mpp_frame_set_param() argument
596 mpp_frame_set_width(frame, p->width); in test_mpp_frame_set_param()
597 mpp_frame_set_height(frame, p->height); in test_mpp_frame_set_param()
598 mpp_frame_set_hor_stride(frame, in test_mpp_frame_set_param()
704 MppFrame frame = NULL; hal_mpp_encode() local
[all...]
/third_party/ffmpeg/tests/fate/
H A Dmov.mak62 # Makes sure that we handle edit lists ending on a B-frame correctly.
63 # The last frame in decoding order which is B-frame should be output, but the last but-one P-frame shouldn't be
67 # Makes sure that we handle timestamps of packets in case of multiple edit lists with one of them ending on a B-frame correctly.
70 # Makes sure that if edit list ends on a B-frame but before the I-frame, then we output the B-frame but discard the I-frame.
79 # Makes sure that 1st key-frame i
[all...]
/third_party/node/deps/v8/src/runtime/
H A Druntime-wasm.cc11 #include "src/execution/frame-constants.h"
42 // We skip at least one frame.
46 DCHECK_EQ(type, frame_iterator_.frame()->type());
50 // Type check the frame where the iterator stopped now.
51 DCHECK_NOT_NULL(frame());
54 FrameType* frame() { return FrameType::cast(frame_iterator_.frame()); } in frame() function in v8::internal::__anon15054::FrameFinder
65 .frame()
219 DCHECK_EQ(*instance, frame_finder.frame()->wasm_instance()); in RUNTIME_FUNCTION()
316 int func_index = frame_finder.frame() in RUNTIME_FUNCTION()
561 WasmFrame* frame = frame_finder.frame(); RUNTIME_FUNCTION() local
[all...]
/third_party/vk-gl-cts/modules/egl/
H A DteglGetFrameTimestampsTests.cpp600 // Do extra rendering to allow frame pacing to stabilize. in executeForConfig()
601 // The frame timestamp validation below assumes there is no frame janking, in executeForConfig()
604 // to jank. This will cause frame timestamps read back not matching with in executeForConfig()
607 // and verifying frame timestamps. in executeForConfig()
628 FrameTimes& frame = frameTimes[i]; in executeForConfig() local
643 // Get the frame id. in executeForConfig()
646 frame.frameId = nextFrameId; in executeForConfig()
652 frame.compositeDeadline = compositorTimingValues[0]; in executeForConfig()
653 frame in executeForConfig()
[all...]
/kernel/linux/linux-5.10/drivers/net/can/spi/
H A Dmcp251x.c198 * frame)
637 static void mcp251x_hw_tx(struct spi_device *spi, struct can_frame *frame, in mcp251x_hw_tx() argument
644 exide = (frame->can_id & CAN_EFF_FLAG) ? 1 : 0; /* Extended ID Enable */ in mcp251x_hw_tx()
646 sid = (frame->can_id & CAN_EFF_MASK) >> 18; in mcp251x_hw_tx()
648 sid = frame->can_id & CAN_SFF_MASK; /* Standard ID */ in mcp251x_hw_tx()
649 eid = frame->can_id & CAN_EFF_MASK; /* Extended ID */ in mcp251x_hw_tx()
650 rtr = (frame->can_id & CAN_RTR_FLAG) ? 1 : 0; /* Remote transmission */ in mcp251x_hw_tx()
659 buf[TXBDLC_OFF] = (rtr << DLC_RTR_SHIFT) | frame->can_dlc; in mcp251x_hw_tx()
660 memcpy(buf + TXBDAT_OFF, frame->data, frame in mcp251x_hw_tx()
701 struct can_frame *frame; mcp251x_hw_rx() local
984 struct can_frame *frame; mcp251x_error_skb() local
1002 struct can_frame *frame; mcp251x_tx_work_handler() local
[all...]

Completed in 33 milliseconds

1...<<31323334353637383940>>...123