Home
last modified time | relevance | path

Searched full:pipeline (Results 1 – 25 of 782) sorted by relevance

12345678910>>...32

/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/runtime/pipeline/interface/
H A Dia_css_pipeline.h25 /* Pipeline stage to be executed on SP/ISP */
42 /* Pipeline of n stages to be executed on SP/ISP per stage */
71 /* Stage descriptor used to create a new stage in the pipeline */
83 /* @brief initialize the pipeline module
87 * Initializes the pipeline module. This API has to be called
88 * before any operation on the pipeline module is done
92 /* @brief initialize the pipeline structure with default values
94 * @param[out] pipeline structure to be initialized with defaults
96 * @param[in] pipe_num Number that uniquely identifies a pipeline.
99 * Initializes the pipeline structure with a set of default values.
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/runtime/pipeline/src/
H A Dpipeline.c44 struct ia_css_pipeline *pipeline,
53 static void ia_css_pipeline_set_zoom_stage(struct ia_css_pipeline *pipeline);
66 struct ia_css_pipeline *pipeline, in ia_css_pipeline_create() argument
71 assert(pipeline); in ia_css_pipeline_create()
72 IA_CSS_ENTER_PRIVATE("pipeline = %p, pipe_id = %d, pipe_num = %d, dvs_frame_delay = %d", in ia_css_pipeline_create()
73 pipeline, pipe_id, pipe_num, dvs_frame_delay); in ia_css_pipeline_create()
74 if (!pipeline) { in ia_css_pipeline_create()
79 pipeline_init_defaults(pipeline, pipe_id, pipe_num, dvs_frame_delay); in ia_css_pipeline_create()
102 /* @brief destroy a pipeline
104 * @param[in] pipeline
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/
H A Dpipeline.hpp27 ::boost::iostreams::pipeline< \
38 return ::boost::iostreams::pipeline<segment, Component> \
45 template<typename Pipeline, typename Component>
46 struct pipeline;
54 template<typename Pipeline, typename Component>
55 struct is_pipeline< pipeline<Pipeline, Component> > : mpl::true_ { };
76 //------------------Definition of Pipeline------------------------------------//
78 template<typename Pipeline, typename Component>
79 struct pipeline : Pipeline { struct
80 typedef Pipeline pipeline_type;
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/xen/
H A Dxen_drm_front_kms.c91 static void send_pending_event(struct xen_drm_front_drm_pipeline *pipeline) in send_pending_event() argument
93 struct drm_crtc *crtc = &pipeline->pipe.crtc; in send_pending_event()
98 if (pipeline->pending_event) in send_pending_event()
99 drm_crtc_send_vblank_event(crtc, pipeline->pending_event); in send_pending_event()
100 pipeline->pending_event = NULL; in send_pending_event()
108 struct xen_drm_front_drm_pipeline *pipeline = in display_enable() local
117 ret = xen_drm_front_mode_set(pipeline, crtc->x, crtc->y, in display_enable()
124 pipeline->conn_connected = false; in display_enable()
132 struct xen_drm_front_drm_pipeline *pipeline = in display_disable() local
137 ret = xen_drm_front_mode_set(pipeline, 0, 0, 0, 0, 0, in display_disable()
[all …]
H A Dxen_drm_front_conn.c49 struct xen_drm_front_drm_pipeline *pipeline = in connector_detect() local
53 pipeline->conn_connected = false; in connector_detect()
55 return pipeline->conn_connected ? connector_status_connected : in connector_detect()
63 struct xen_drm_front_drm_pipeline *pipeline = in connector_get_modes() local
74 videomode.hactive = pipeline->width; in connector_get_modes()
75 videomode.vactive = pipeline->height; in connector_get_modes()
104 struct xen_drm_front_drm_pipeline *pipeline = in xen_drm_front_conn_init() local
109 pipeline->conn_connected = true; in xen_drm_front_conn_init()
/OK3568_Linux_fs/external/camera_engine_rkaiq/media_enquiry/media_enquiry/
H A Dmedia_enquiry.cpp134 static const char *get_isp_dev_info_by_name(const char *name, struct dev_pipeline *pipeline) in get_isp_dev_info_by_name() argument
172 pipeline->entities[pipeline->entity_num] = entity; in get_isp_dev_info_by_name()
173 … map_pipeline.insert(std::pair<int, std::string>(int(pipeline->entity_num),std::string(sys_path))); in get_isp_dev_info_by_name()
174 pipeline->entity_num = pipeline->entity_num + 1; in get_isp_dev_info_by_name()
179 pipeline->entities[pipeline->entity_num] = entity; in get_isp_dev_info_by_name()
180 … map_pipeline.insert(std::pair<int, std::string>(int(pipeline->entity_num),std::string(sys_path))); in get_isp_dev_info_by_name()
181 pipeline->entity_num = pipeline->entity_num + 1; in get_isp_dev_info_by_name()
187 pipeline->entities[pipeline->entity_num] = entity; in get_isp_dev_info_by_name()
188 … map_pipeline.insert(std::pair<int, std::string>(int(pipeline->entity_num),std::string(sys_path))); in get_isp_dev_info_by_name()
189 pipeline->entity_num = pipeline->entity_num + 1; in get_isp_dev_info_by_name()
[all …]
/OK3568_Linux_fs/buildroot/package/libcamera/
H A DConfig.in46 bool "ipu3 pipeline"
50 Pipeline for Intel IPU3.
53 bool "raspberrypi pipeline"
59 Pipeline for Raspberry Pi devices.
62 bool "rkisp1 pipeline"
66 Pipeline for Rockchip ISP1.
69 bool "simple pipeline"
72 Pipeline for simple pipelines.
75 bool "uvcvideo pipeline"
77 Pipeline for uvcvideo devices.
[all …]
H A D0003-HACK-pipeline-Support-custom-pipeline.patch4 Subject: [PATCH 3/3] HACK: pipeline: Support custom pipeline
17 src/libcamera/pipeline/custom/custom.cpp | 415 ++++++++++++++++++
18 src/libcamera/pipeline/custom/meson.build | 5 +
19 test/pipeline/custom/custom_pipeline_test.cpp | 110 +++++
20 test/pipeline/custom/meson.build | 14 +
21 test/pipeline/meson.build | 1 +
23 create mode 100644 src/libcamera/pipeline/custom/custom.cpp
24 create mode 100644 src/libcamera/pipeline/custom/meson.build
25 create mode 100644 test/pipeline/custom/custom_pipeline_test.cpp
26 create mode 100644 test/pipeline/custom/meson.build
[all …]
/OK3568_Linux_fs/kernel/drivers/isdn/mISDN/
H A Ddsp_pipeline.c159 int dsp_pipeline_init(struct dsp_pipeline *pipeline) in dsp_pipeline_init() argument
161 if (!pipeline) in dsp_pipeline_init()
164 INIT_LIST_HEAD(&pipeline->list); in dsp_pipeline_init()
169 static inline void _dsp_pipeline_destroy(struct dsp_pipeline *pipeline) in _dsp_pipeline_destroy() argument
173 list_for_each_entry_safe(entry, n, &pipeline->list, list) { in _dsp_pipeline_destroy()
176 dsp_hwec_disable(container_of(pipeline, struct dsp, in _dsp_pipeline_destroy()
177 pipeline)); in _dsp_pipeline_destroy()
184 void dsp_pipeline_destroy(struct dsp_pipeline *pipeline) in dsp_pipeline_destroy() argument
187 if (!pipeline) in dsp_pipeline_destroy()
190 _dsp_pipeline_destroy(pipeline); in dsp_pipeline_destroy()
[all …]
/OK3568_Linux_fs/kernel/Documentation/gpu/
H A Dkomeda-kms.rst15 architecture. A display pipeline is made up of multiple individual and
16 functional pipeline stages called components, and every component has some
17 specific capabilities that can give the flowed pipeline pixel data a
24 Layer is the first pipeline stage, which prepares the pixel data for the next
58 Final stage of display pipeline, Timing controller is not for the pixel
76 Possible D71 Pipeline usage
94 Single pipeline data flow
98 :alt: Single pipeline digraph
99 :caption: Single pipeline data flow
140 Dual pipeline with Slave enabled
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/ti/wl18xx/
H A Ddebugfs.c143 WL18XX_DEBUGFS_FWSTATS_FILE(pipeline, hs_tx_stat_fifo_int, "%u");
144 WL18XX_DEBUGFS_FWSTATS_FILE(pipeline, enc_tx_stat_fifo_int, "%u");
145 WL18XX_DEBUGFS_FWSTATS_FILE(pipeline, enc_rx_stat_fifo_int, "%u");
146 WL18XX_DEBUGFS_FWSTATS_FILE(pipeline, rx_complete_stat_fifo_int, "%u");
147 WL18XX_DEBUGFS_FWSTATS_FILE(pipeline, pre_proc_swi, "%u");
148 WL18XX_DEBUGFS_FWSTATS_FILE(pipeline, post_proc_swi, "%u");
149 WL18XX_DEBUGFS_FWSTATS_FILE(pipeline, sec_frag_swi, "%u");
150 WL18XX_DEBUGFS_FWSTATS_FILE(pipeline, pre_to_defrag_swi, "%u");
151 WL18XX_DEBUGFS_FWSTATS_FILE(pipeline, defrag_to_rx_xfer_swi, "%u");
152 WL18XX_DEBUGFS_FWSTATS_FILE(pipeline, dec_packet_in, "%u");
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/mdp5/
H A Dmdp5_crtc.c91 struct mdp5_pipeline *pipeline = &mdp5_cstate->pipeline; in crtc_flush() local
98 return mdp5_ctl_commit(ctl, pipeline, flush_mask, start); in crtc_flush()
123 mixer = mdp5_cstate->pipeline.mixer; in crtc_flush_all()
126 r_mixer = mdp5_cstate->pipeline.r_mixer; in crtc_flush_all()
137 struct mdp5_pipeline *pipeline = &mdp5_cstate->pipeline; in complete_flip() local
155 mdp5_ctl_blend(ctl, pipeline, NULL, NULL, 0, 0); in complete_flip()
214 struct mdp5_pipeline *pipeline = &mdp5_cstate->pipeline; in blend_setup() local
219 struct mdp5_hw_mixer *mixer = pipeline->mixer; in blend_setup()
221 struct mdp5_hw_mixer *r_mixer = pipeline->r_mixer; in blend_setup()
353 mdp5_ctl_blend(ctl, pipeline, stage, r_stage, plane_cnt, in blend_setup()
[all …]
H A Dmdp5_ctl.c135 static void set_ctl_op(struct mdp5_ctl *ctl, struct mdp5_pipeline *pipeline) in set_ctl_op() argument
138 struct mdp5_interface *intf = pipeline->intf; in set_ctl_op()
159 if (pipeline->r_mixer) in set_ctl_op()
168 int mdp5_ctl_set_pipeline(struct mdp5_ctl *ctl, struct mdp5_pipeline *pipeline) in mdp5_ctl_set_pipeline() argument
171 struct mdp5_interface *intf = pipeline->intf; in mdp5_ctl_set_pipeline()
177 set_ctl_op(ctl, pipeline); in mdp5_ctl_set_pipeline()
183 struct mdp5_pipeline *pipeline) in start_signal_needed() argument
185 struct mdp5_interface *intf = pipeline->intf; in start_signal_needed()
203 * For a given control operation (display pipeline), a START signal needs to be
225 struct mdp5_pipeline *pipeline, in mdp5_ctl_set_encoder_state() argument
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/mediaplayer/qmlsink/
H A Dmain.cpp21 SetPlaying::SetPlaying (GstElement * pipeline) in SetPlaying() argument
23 this->pipeline_ = pipeline ? static_cast<GstElement *> (gst_object_ref (pipeline)) : NULL; in SetPlaying()
48 GstElement *pipeline = gst_element_factory_make ("playbin", NULL); in main() local
49 g_object_set(G_OBJECT(pipeline), "uri", argv[1], NULL); in main()
54 g_object_set(G_OBJECT(pipeline), "video-sink", sinkbin, NULL); in main()
68 rootObject->scheduleRenderJob (new SetPlaying (pipeline), in main()
73 gst_element_set_state (pipeline, GST_STATE_NULL); in main()
74 gst_object_unref (pipeline); in main()
H A Dvideowidget.cpp22 //SetPlaying::SetPlaying (GstElement * pipeline)
24 // this->pipeline_ = pipeline ? static_cast<GstElement *> (gst_object_ref (pipeline)) : NULL;
43 // GstElement *pipeline = gst_element_factory_make ("playbin", NULL); in VideoWidget()
44 // g_object_set(G_OBJECT(pipeline), "uri", argv[1], NULL); in VideoWidget()
49 // g_object_set(G_OBJECT(pipeline), "video-sink", sinkbin, NULL); in VideoWidget()
63 // rootObject->scheduleRenderJob (new SetPlaying (pipeline), in VideoWidget()
71 // gst_element_set_state (pipeline, GST_STATE_NULL); in ~VideoWidget()
72 // gst_object_unref (pipeline); in ~VideoWidget()
/OK3568_Linux_fs/kernel/drivers/media/platform/xilinx/
H A Dxilinx-dma.c83 * Pipeline Stream Management
87 * xvip_pipeline_start_stop - Start ot stop streaming on a pipeline
88 * @pipe: The pipeline
89 * @start: Start (when true) or stop (when false) the pipeline
91 * Walk the entities chain starting at the pipeline output video node and start
127 * xvip_pipeline_set_stream - Enable/disable streaming on a pipeline
128 * @pipe: The pipeline
131 * The pipeline is shared between all DMA engines connect at its input and
134 * all entities in the pipeline. For this reason the pipeline uses a streaming
139 * the pipeline streaming count. If the streaming count reaches the number of
[all …]
H A Dxilinx-dma.h29 * struct xvip_pipeline - Xilinx Video IP pipeline structure
30 * @pipe: media pipeline
31 * @lock: protects the pipeline @stream_count
32 * @use_count: number of DMA engines using the pipeline
34 * @num_dmas: number of DMA engines in the pipeline
35 * @output: DMA engine at the output of the pipeline
59 * @pipe: pipeline belonging to the DMA channel
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxwayland/qmlsink/
H A Dmain.cpp24 SetPlaying::SetPlaying (GstElement * pipeline) in SetPlaying() argument
26 this->pipeline_ = pipeline ? static_cast<GstElement *> (gst_object_ref (pipeline)) : NULL; in SetPlaying()
51 GstElement *pipeline = gst_element_factory_make ("playbin", NULL); in main() local
52 g_object_set(G_OBJECT(pipeline), "uri", argv[1], NULL); in main()
57 g_object_set(G_OBJECT(pipeline), "video-sink", sinkbin, NULL); in main()
72 rootObject->scheduleRenderJob (new SetPlaying (pipeline), in main()
77 gst_element_set_state (pipeline, GST_STATE_NULL); in main()
78 gst_object_unref (pipeline); in main()
/OK3568_Linux_fs/kernel/drivers/media/platform/vsp1/
H A Dvsp1_pipe.h3 * vsp1_pipe.h -- R-Car VSP1 Pipeline
84 * struct vsp1_pipeline - A VSP1 hardware pipeline
85 * @pipe: the media pipeline
86 * @irqlock: protects the pipeline state
90 * @lock: protects the pipeline use count and stream count
91 * @kref: pipeline reference count
96 * @inputs: array of RPFs in the pipeline (indexed by RPF index)
97 * @output: WPF at the output of the pipeline
104 * @entities: list of entities in the pipeline
107 * @interlaced: True when the pipeline is configured in interlaced mode
[all …]
H A Dvsp1_drm.c56 * Pipeline Configuration
60 * Insert the UIF in the pipeline between the prev and next entities. If no UIF
264 * The BRx might be acquired by the other pipeline in in vsp1_du_pipeline_setup_brx()
266 * of entities for this pipeline. The other pipeline's in vsp1_du_pipeline_setup_brx()
270 * However, if the other pipeline doesn't acquire our in vsp1_du_pipeline_setup_brx()
273 * the pipeline. To solve this, store the released BRx in vsp1_du_pipeline_setup_brx()
275 * if it isn't acquired by the other pipeline. in vsp1_du_pipeline_setup_brx()
286 * If the BRx we need is in use, force the owner pipeline to in vsp1_du_pipeline_setup_brx()
306 "DRM pipeline %u reconfiguration timeout\n", in vsp1_du_pipeline_setup_brx()
312 * by the other pipeline, add it back to the entities list (with in vsp1_du_pipeline_setup_brx()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0/
H A D0005-bin-Fix-race-conditions-in-tests.patch147 pipeline = GST_PIPELINE (gst_pipeline_new (NULL));
148 fail_unless (pipeline != NULL, "Could not create pipeline");
151 ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 2);
160 ASSERT_OBJECT_REFCOUNT_BETWEEN (pipeline, "pipeline", 3, 4);
173 ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 3);
182 ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 3);
238 pipeline = gst_pipeline_new (NULL);
239 fail_unless (pipeline != NULL, "Could not create pipeline");
246 ASSERT_STATE_CHANGE_MSG (bus, pipeline, GST_STATE_READY, GST_STATE_PAUSED,
263 while (GST_OBJECT_REFCOUNT_VALUE (pipeline) > 1)
[all …]
/OK3568_Linux_fs/kernel/drivers/media/test-drivers/vimc/
H A Dvimc-streamer.c42 * @stream: the pointer to the stream structure with the pipeline to be
45 * Calls s_stream to disable the stream in each entity of the pipeline
73 * construct the pipeline used later on the streamer thread.
75 * the pipeline.
107 /* Check if the end of the pipeline was reached */ in vimc_streamer_pipeline_init()
120 /* Get the next device in the pipeline */ in vimc_streamer_pipeline_init()
137 * vimc_streamer_thread - Process frames through the pipeline
142 * the next one of the pipeline at a fixed framerate.
176 * vimc_streamer_s_stream - Start/stop the streaming on the media pipeline
184 * pipeline, creates and runs a kthread to consume buffers through the pipeline.
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/arm/display/komeda/
H A Dkomeda_pipeline.h21 /* pipeline component IDs */
76 * component into the display pipeline.
82 /** @pipeline: the komeda pipeline this component belongs to */
83 struct komeda_pipeline *pipeline; member
119 * pipeline.
385 * Represent a complete display pipeline and hold all functional components.
388 /** @obj: link pipeline as private obj of drm_atomic_state */
394 /** @id: pipeline id */
396 /** @avail_comps: available components mask of pipeline */
401 * When disable the pipeline, some components can not be disabled
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/
H A D0001-add-explict-static_cast-size_t-to-maxMemoryUsageByte.patch7 src/mongo/db/pipeline/document_source_group.cpp:377:22: error: non-constant-expression cannot be na…
10 src/mongo/db/pipeline/document_source_group.cpp:377:22: note: insert an explicit cast to silence th…
18 src/mongo/db/pipeline/document_source_group.cpp | 4 ++--
21 diff --git a/src/mongo/db/pipeline/document_source_group.cpp b/src/mongo/db/pipeline/document_sourc…
23 --- a/src/mongo/db/pipeline/document_source_group.cpp
24 +++ b/src/mongo/db/pipeline/document_source_group.cpp
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/display/
H A Darm,komeda.txt18 Required properties for sub-node: pipeline@nq
19 Each device contains one or two pipeline sub-nodes (at least one), each
20 pipeline node should provide properties:
21 - reg: Zero-indexed identifier for the pipeline
27 - port: each pipeline connect to an encoder input port. The connection is
53 dp0_pipe0: pipeline@0 {
65 dp0_pipe1: pipeline@1 {

12345678910>>...32