Home
last modified time | relevance | path

Searched full:frame (Results 1 – 25 of 5102) sorted by relevance

12345678910>>...205

/OK3568_Linux_fs/kernel/drivers/video/
H A Dhdmi.c55 * @frame: HDMI AVI infoframe
57 void hdmi_avi_infoframe_init(struct hdmi_avi_infoframe *frame) in hdmi_avi_infoframe_init() argument
59 memset(frame, 0, sizeof(*frame)); in hdmi_avi_infoframe_init()
61 frame->type = HDMI_INFOFRAME_TYPE_AVI; in hdmi_avi_infoframe_init()
62 frame->version = 2; in hdmi_avi_infoframe_init()
63 frame->length = HDMI_AVI_INFOFRAME_SIZE; in hdmi_avi_infoframe_init()
67 static int hdmi_avi_infoframe_check_only(const struct hdmi_avi_infoframe *frame) in hdmi_avi_infoframe_check_only() argument
69 if (frame->type != HDMI_INFOFRAME_TYPE_AVI || in hdmi_avi_infoframe_check_only()
70 frame->version != 2 || in hdmi_avi_infoframe_check_only()
71 frame->length != HDMI_AVI_INFOFRAME_SIZE) in hdmi_avi_infoframe_check_only()
[all …]
/OK3568_Linux_fs/kernel/net/hsr/
H A Dhsr_forward.c7 * Frame router for HSR and PRP.
25 * Or not - resetting the counter and bridging the frame would create a
29 * frame is received from a particular node, we know something is wrong.
79 struct hsr_frame_info *frame) in create_stripped_skb_hsr() argument
97 if (frame->is_vlan) in create_stripped_skb_hsr()
107 struct sk_buff *hsr_get_untagged_frame(struct hsr_frame_info *frame, in hsr_get_untagged_frame() argument
110 if (!frame->skb_std) { in hsr_get_untagged_frame()
111 if (frame->skb_hsr) in hsr_get_untagged_frame()
112 frame->skb_std = in hsr_get_untagged_frame()
113 create_stripped_skb_hsr(frame->skb_hsr, frame); in hsr_get_untagged_frame()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/
H A Dia_css_frame_public.h20 * This file contains structs to describe various frame-formats supported by the ISP.
42 /* Frame plane structure. This describes one plane in an image
43 * frame buffer.
52 unsigned int offset; /** offset in bytes to start of frame data.
108 /* Frame info struct. This describes the contents of an image frame buffer.
111 struct ia_css_resolution res; /** Frame resolution (valid data) */
113 enum ia_css_frame_format format; /** format of the frame data */
131 * Specifies the DVS loop delay in "frame periods"
134 IA_CSS_FRAME_DELAY_0, /** Frame delay = 0 */
135 IA_CSS_FRAME_DELAY_1, /** Frame delay = 1 */
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/gdb/python/gdb/
H A DFrameDecorator.py28 """Basic implementation of a Frame Decorator"""
30 """ This base frame decorator decorates a frame or another frame
32 wrapping a frame decorator, defer to that wrapped object's method
33 if it has one. This allows for frame decorators that have
34 sub-classed FrameDecorator object, but also wrap other frame
35 decorators on the same frame to correctly execute.
39 If the result of frame filters running means we have one gdb.Frame
40 wrapped by multiple frame decorators, all sub-classed from
46 -- (wraps) gdb.Frame
48 In this case we have two frame decorators, both of which are
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/gdb/python/gdb/
H A DFrameDecorator.py28 """Basic implementation of a Frame Decorator"""
30 """ This base frame decorator decorates a frame or another frame
32 wrapping a frame decorator, defer to that wrapped object's method
33 if it has one. This allows for frame decorators that have
34 sub-classed FrameDecorator object, but also wrap other frame
35 decorators on the same frame to correctly execute.
39 If the result of frame filters running means we have one gdb.Frame
40 wrapped by multiple frame decorators, all sub-classed from
46 -- (wraps) gdb.Frame
48 In this case we have two frame decorators, both of which are
[all …]
/OK3568_Linux_fs/external/mpp/mpp/codec/dec/h265/
H A Dh265d_refs.c37 void mpp_hevc_unref_frame(HEVCContext *s, HEVCFrame *frame, int flags) in mpp_hevc_unref_frame() argument
39 /* frame->frame can be NULL if context init failed */ in mpp_hevc_unref_frame()
40 if (!frame->frame || (frame->slot_index == 0xff)) in mpp_hevc_unref_frame()
43 frame->flags &= ~flags; in mpp_hevc_unref_frame()
44 if (!frame->flags) { in mpp_hevc_unref_frame()
45 frame->refPicList = NULL; in mpp_hevc_unref_frame()
46 frame->collocated_ref = NULL; in mpp_hevc_unref_frame()
47 if (frame->slot_index <= 0x7f) { in mpp_hevc_unref_frame()
48 h265d_dbg(H265D_DBG_REF, "poc %d clr ref index %d", frame->poc, frame->slot_index); in mpp_hevc_unref_frame()
49 mpp_buf_slot_clr_flag(s->slots, frame->slot_index, SLOT_CODEC_USE); in mpp_hevc_unref_frame()
[all …]
/OK3568_Linux_fs/kernel/net/lapb/
H A Dlapb_in.c40 struct lapb_frame *frame) in lapb_state0_machine() argument
42 switch (frame->type) { in lapb_state0_machine()
44 lapb_dbg(1, "(%p) S0 RX SABM(%d)\n", lapb->dev, frame->pf); in lapb_state0_machine()
47 lapb->dev, frame->pf); in lapb_state0_machine()
48 lapb_send_control(lapb, LAPB_DM, frame->pf, in lapb_state0_machine()
52 lapb->dev, frame->pf); in lapb_state0_machine()
54 lapb_send_control(lapb, LAPB_UA, frame->pf, in lapb_state0_machine()
69 lapb_dbg(1, "(%p) S0 RX SABME(%d)\n", lapb->dev, frame->pf); in lapb_state0_machine()
72 lapb->dev, frame->pf); in lapb_state0_machine()
74 lapb_send_control(lapb, LAPB_UA, frame->pf, in lapb_state0_machine()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/runtime/frame/src/
H A Dframe.c38 static void frame_init_single_plane(struct ia_css_frame *frame,
45 struct ia_css_frame *frame,
51 static void frame_init_mipi_plane(struct ia_css_frame *frame,
57 static void frame_init_nv_planes(struct ia_css_frame *frame,
62 static void frame_init_yuv_planes(struct ia_css_frame *frame,
68 static void frame_init_rgb_planes(struct ia_css_frame *frame,
71 static void frame_init_qplane6_planes(struct ia_css_frame *frame);
73 static int frame_allocate_buffer_data(struct ia_css_frame *frame);
75 static int frame_allocate_with_data(struct ia_css_frame **frame,
99 void ia_css_frame_zero(struct ia_css_frame *frame) in ia_css_frame_zero() argument
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/mpp/include/rockchip/
H A Drk_venc_ref.h25 * frame mangement.
27 * The reference frame is defined into two type: long-term reference frame and
28 * short-refernce frame (lt_ref and st_ref).
30 * The lt_ref can be only indexed by long-term reference frame index (lt_idx).
33 * MppEncRefMode defined the way for user to reference the required frame.
36 * REF_TO_PREV_REF_FRM - refer to previous reference frame in encode order (No matter Lt or St)
37 * REF_TO_PREV_ST_REF - refer to previous short-term reference frame
38 * REF_TO_PREV_LT_REF - refer to previous long-term reference frame
39 * REF_TO_PREV_INTRA - refer to previous Intra / IDR frame
40 * REF_TO_ST_REF_SETUP - refer to refernce frame defined in StRefSetup
[all …]
H A Dmpp_rc_defs.h33 * EncFrmStatus controls record the encoding frame status and also control
37 * bit 0 ~ 31 frame status
38 * 0 ~ 15 current frame status
39 * 16 ~ 31 reference frame status
45 * bit 0 ~ 31 frame status
50 * 0 - write the reconstructed frame pixel to memory
51 * 1 - do not write the reconstructed frame pixel to memory
56 * 0 - normal frame and normal dpb management
57 * 1 - save recon frame as first pass extra frame. Used in two pass mode
62 * 0 - use normal input source frame as input
[all …]
/OK3568_Linux_fs/external/mpp/inc/
H A Drk_venc_ref.h25 * frame mangement.
27 * The reference frame is defined into two type: long-term reference frame and
28 * short-refernce frame (lt_ref and st_ref).
30 * The lt_ref can be only indexed by long-term reference frame index (lt_idx).
33 * MppEncRefMode defined the way for user to reference the required frame.
36 * REF_TO_PREV_REF_FRM - refer to previous reference frame in encode order (No matter Lt or St)
37 * REF_TO_PREV_ST_REF - refer to previous short-term reference frame
38 * REF_TO_PREV_LT_REF - refer to previous long-term reference frame
39 * REF_TO_PREV_INTRA - refer to previous Intra / IDR frame
40 * REF_TO_ST_REF_SETUP - refer to refernce frame defined in StRefSetup
[all …]
H A Dmpp_rc_defs.h33 * EncFrmStatus controls record the encoding frame status and also control
37 * bit 0 ~ 31 frame status
38 * 0 ~ 15 current frame status
39 * 16 ~ 31 reference frame status
45 * bit 0 ~ 31 frame status
50 * 0 - write the reconstructed frame pixel to memory
51 * 1 - do not write the reconstructed frame pixel to memory
56 * 0 - normal frame and normal dpb management
57 * 1 - save recon frame as first pass extra frame. Used in two pass mode
62 * 0 - use normal input source frame as input
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/gdb/
H A DWriting-a-Frame-Filter.html17 <title>Debugging with GDB: Writing a Frame Filter</title>
19 <meta name="description" content="Debugging with GDB: Writing a Frame Filter">
20 <meta name="keywords" content="Debugging with GDB: Writing a Frame Filter">
30 <link href="Frame-Decorator-API.html#Frame-Decorator-API" rel="previous" title="Frame Decorator API…
64 <a name="Writing-a-Frame-Filter"></a>
67 …s in Python</a>, Previous: <a href="Frame-Decorator-API.html#Frame-Decorator-API" accesskey="p" re…
70 <a name="Writing-a-Frame-Filter-1"></a>
71 <h4 class="subsubsection">23.2.2.11 Writing a Frame Filter</h4>
72 <a name="index-writing-a-frame-filter"></a>
74 <p>There are three basic elements that a frame filter must implement: it
[all …]
H A DFrame-Filter-Management.html17 <title>Debugging with GDB: Frame Filter Management</title>
19 <meta name="description" content="Debugging with GDB: Frame Filter Management">
20 <meta name="keywords" content="Debugging with GDB: Frame Filter Management">
30 <link href="Frame-Apply.html#Frame-Apply" rel="previous" title="Frame Apply">
64 <a name="Frame-Filter-Management"></a>
67 Previous: <a href="Frame-Apply.html#Frame-Apply" accesskey="p" rel="previous">Frame Apply</a>, Up: …
70 <a name="Management-of-Frame-Filters"></a>
71 <h3 class="section">8.6 Management of Frame Filters</h3>
72 <a name="index-managing-frame-filters"></a>
74 <p>Frame filters are Python based utilities to manage and decorate the
[all …]
H A DFrame-Filter-API.html17 <title>Debugging with GDB: Frame Filter API</title>
19 <meta name="description" content="Debugging with GDB: Frame Filter API">
20 <meta name="keywords" content="Debugging with GDB: Frame Filter API">
29 <link href="Frame-Decorator-API.html#Frame-Decorator-API" rel="next" title="Frame Decorator API">
64 <a name="Frame-Filter-API"></a>
67 Next: <a href="Frame-Decorator-API.html#Frame-Decorator-API" accesskey="n" rel="next">Frame Decorat…
72 <a name="index-frame-filters-api"></a>
74 <p>Frame filters are Python objects that manipulate the visibility of a
75 frame or frames when a backtrace (see <a href="Backtrace.html#Backtrace">Backtrace</a>) is printed …
80 are affected. The commands that work with frame filters are:
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/gdb/
H A DWriting-a-Frame-Filter.html17 <title>Debugging with GDB: Writing a Frame Filter</title>
19 <meta name="description" content="Debugging with GDB: Writing a Frame Filter">
20 <meta name="keywords" content="Debugging with GDB: Writing a Frame Filter">
30 <link href="Frame-Decorator-API.html#Frame-Decorator-API" rel="previous" title="Frame Decorator API…
64 <a name="Writing-a-Frame-Filter"></a>
67 …s in Python</a>, Previous: <a href="Frame-Decorator-API.html#Frame-Decorator-API" accesskey="p" re…
70 <a name="Writing-a-Frame-Filter-1"></a>
71 <h4 class="subsubsection">23.2.2.11 Writing a Frame Filter</h4>
72 <a name="index-writing-a-frame-filter"></a>
74 <p>There are three basic elements that a frame filter must implement: it
[all …]
H A DFrame-Filter-Management.html17 <title>Debugging with GDB: Frame Filter Management</title>
19 <meta name="description" content="Debugging with GDB: Frame Filter Management">
20 <meta name="keywords" content="Debugging with GDB: Frame Filter Management">
30 <link href="Frame-Apply.html#Frame-Apply" rel="previous" title="Frame Apply">
64 <a name="Frame-Filter-Management"></a>
67 Previous: <a href="Frame-Apply.html#Frame-Apply" accesskey="p" rel="previous">Frame Apply</a>, Up: …
70 <a name="Management-of-Frame-Filters"></a>
71 <h3 class="section">8.6 Management of Frame Filters</h3>
72 <a name="index-managing-frame-filters"></a>
74 <p>Frame filters are Python based utilities to manage and decorate the
[all …]
H A DFrame-Filter-API.html17 <title>Debugging with GDB: Frame Filter API</title>
19 <meta name="description" content="Debugging with GDB: Frame Filter API">
20 <meta name="keywords" content="Debugging with GDB: Frame Filter API">
29 <link href="Frame-Decorator-API.html#Frame-Decorator-API" rel="next" title="Frame Decorator API">
64 <a name="Frame-Filter-API"></a>
67 Next: <a href="Frame-Decorator-API.html#Frame-Decorator-API" accesskey="n" rel="next">Frame Decorat…
72 <a name="index-frame-filters-api"></a>
74 <p>Frame filters are Python objects that manipulate the visibility of a
75 frame or frames when a backtrace (see <a href="Backtrace.html#Backtrace">Backtrace</a>) is printed …
80 are affected. The commands that work with frame filters are:
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/gdb/python/gdb/command/
H A Dframe_filters.py1 # Frame-filter commands.
17 """GDB commands for working with frame-filters."""
29 """Prefix command for 'set' frame-filter related operations."""
32 super(SetFilterPrefixCmd, self).__init__("set frame-filter",
37 """Prefix command for 'show' frame-filter related operations."""
39 super(ShowFilterPrefixCmd, self).__init__("show frame-filter",
43 """List all registered Python frame-filters.
45 Usage: info frame-filters"""
48 super(InfoFrameFilter, self).__init__("info frame-filter",
84 any_printed = self.print_list("global frame-filters:", gdb.frame_filters, True)
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/gdb/python/gdb/command/
H A Dframe_filters.py1 # Frame-filter commands.
17 """GDB commands for working with frame-filters."""
29 """Prefix command for 'set' frame-filter related operations."""
32 super(SetFilterPrefixCmd, self).__init__("set frame-filter",
37 """Prefix command for 'show' frame-filter related operations."""
39 super(ShowFilterPrefixCmd, self).__init__("show frame-filter",
43 """List all registered Python frame-filters.
45 Usage: info frame-filters"""
48 super(InfoFrameFilter, self).__init__("info frame-filter",
84 any_printed = self.print_list("global frame-filters:", gdb.frame_filters, True)
[all …]
/OK3568_Linux_fs/kernel/include/soc/fsl/
H A Ddpaa2-fd.h13 * DOC: DPAA2 FD - Frame Descriptor APIs for DPAA2
15 * Frame Descriptors (FDs) are used to describe frame data in the DPAA2.
16 * Frames can be enqueued and dequeued to Frame Queues (FQs) which are consumed
19 * There are three types of frames: single, scatter gather, and frame lists.
22 * query Frame Descriptors.
32 * @frc: frame context
36 * This structure represents the basic Frame Descriptor used in the system.
98 * dpaa2_fd_get_addr() - get the addr field of frame descriptor
99 * @fd: the given frame descriptor
101 * Return the address in the frame descriptor.
[all …]
/OK3568_Linux_fs/external/xserver/miext/rootless/
H A DREADME.txt33 is referred to as a "frame". The generic rootless layer associates each
34 mapped top-level X11 window with a frame. An X11 window may be said
35 to be "framed" if it or its top-level parent is represented by a frame.
37 The generic rootless layer models each frame as being backed at
44 will be called when the drawing is concluded. The address of the frame's
48 Because each frame is assumed to have a backing buffer, the
50 regions of visibility of a frame change on screen. This is similar to backing
92 some frame resizes can be optimized by relying on the frame contents
94 of the frame contents need to be preserved by the generic rootless
96 during resizing and rely on the frame contents being preserved
[all …]
H A Drootless.h44 on-screen window. The physical window is refered to as a "frame".
51 * This structure stores the per-frame data used by the rootless code.
62 RootlessFrameID wid; // implementation specific frame id
100 * Create a new frame.
101 * The frame is created unmapped.
103 * pFrame RootlessWindowPtr for this frame should be completely
106 * pScreen Screen on which to place the new frame
107 * newX, newY Position of the frame.
108 * pNewShape Shape for the frame (in frame-local coordinates). NULL for
116 * Destroy a frame.
[all …]
/OK3568_Linux_fs/kernel/drivers/media/platform/sti/delta/
H A Ddelta.h52 * @dpb: number of frames needed to decode a single frame
54 * @crop: cropping window inside decoded frame (1920x1080@0,0
55 * inside 1920x1088 frame for ex.)
92 * @list: V4L2 m2m list that the frame belongs to
112 * struct delta_frameinfo - information about decoded frame
116 * @width: width of frame
117 * @height: height of frame
118 * @aligned_width: width of frame (with encoder or decoder alignment
120 * @aligned_height: height of frame (with encoder or decoder alignment
123 * @crop: cropping window inside frame (1920x1080@0,0
[all …]
/OK3568_Linux_fs/external/mpp/mpp/base/
H A Dmpp_frame.cpp31 static void setup_mpp_frame_name(MppFrameImpl *frame) in setup_mpp_frame_name() argument
33 frame->name = module_name; in setup_mpp_frame_name()
36 #define check_is_mpp_frame(frame) _check_is_mpp_frame(__FUNCTION__, frame) argument
38 MPP_RET _check_is_mpp_frame(const char *func, void *frame) in _check_is_mpp_frame() argument
40 if (frame && ((MppFrameImpl*)frame)->name == module_name) in _check_is_mpp_frame()
43 mpp_err("pointer %p failed on %s check mpp_frame\n", frame, func); in _check_is_mpp_frame()
48 MPP_RET mpp_frame_init(MppFrame *frame) in mpp_frame_init() argument
50 if (NULL == frame) { in mpp_frame_init()
62 *frame = p; in mpp_frame_init()
67 MPP_RET mpp_frame_deinit(MppFrame *frame) in mpp_frame_deinit() argument
[all …]

12345678910>>...205