/usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/include/media
NameSizeModeActions
davinci/-0755rm
drv-intf/-0755rm
i2c/-0755rm
tpg/-0755rm
cec-notifier.h66780644editdlrm
cec-pin.h29470644editdlrm
cec.h183970644editdlrm
demux.h232370644editdlrm
dmxdev.h60340644editdlrm
dvb-usb-ids.h182040644editdlrm
dvbdev.h150890644editdlrm
dvb_ca_en50221.h44550644editdlrm
dvb_demux.h110330644editdlrm
dvb_frontend.h297010644editdlrm
dvb_math.h18110644editdlrm
dvb_net.h25830644editdlrm
dvb_ringbuffer.h85240644editdlrm
dvb_vb2.h78380644editdlrm
frame_vector.h14470644editdlrm
imx.h3960644editdlrm
media-device.h161130644editdlrm
media-devnode.h58140644editdlrm
media-entity.h354210644editdlrm
rc-core.h132110644editdlrm
rc-map.h128060644editdlrm
rcar-fcp.h13420644editdlrm
soc_camera.h133000644editdlrm
tuner-types.h77230644editdlrm
tuner.h90590644editdlrm
tveeprom.h33700644editdlrm
v4l2-async.h76490644editdlrm
v4l2-clk.h21440644editdlrm
v4l2-common.h165380644editdlrm
v4l2-ctrls.h399420644editdlrm
v4l2-dev.h161090644editdlrm
v4l2-device.h181270644editdlrm
v4l2-dv-timings.h88870644editdlrm
v4l2-event.h62770644editdlrm
v4l2-fh.h47590644editdlrm
v4l2-flash-led-class.h60340644editdlrm
v4l2-fwnode.h141840644editdlrm
v4l2-image-sizes.h8640644editdlrm
v4l2-ioctl.h326690644editdlrm
v4l2-mc.h82130644editdlrm
v4l2-mediabus.h62340644editdlrm
v4l2-mem2mem.h201860644editdlrm
v4l2-rect.h46500644editdlrm
v4l2-subdev.h415790644editdlrm
videobuf-core.h71480644editdlrm
videobuf-dma-contig.h10620644editdlrm
videobuf-dma-sg.h30090644editdlrm
videobuf-vmalloc.h13190644editdlrm
videobuf2-core.h451100644editdlrm
videobuf2-dma-contig.h8660644editdlrm
videobuf2-dma-sg.h6960644editdlrm
videobuf2-dvb.h18630644editdlrm
videobuf2-memops.h11010644editdlrm
videobuf2-v4l2.h107190644editdlrm
videobuf2-vmalloc.h5090644editdlrm
vsp1.h32880644editdlrm
Edit: /usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/include/media/videobuf2-dvb.h (1863B)
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _VIDEOBUF2_DVB_H_ #define _VIDEOBUF2_DVB_H_ #include #include #include #include #include #include /* We don't actually need to include media-device.h here */ struct media_device; /* * TODO: This header file should be replaced with videobuf2-core.h * Currently, vb2_thread is not a stuff of videobuf2-core, * since vb2_thread has many dependencies on videobuf2-v4l2. */ struct vb2_dvb { /* filling that the job of the driver */ char *name; struct dvb_frontend *frontend; struct vb2_queue dvbq; /* video-buf-dvb state info */ struct mutex lock; int nfeeds; /* vb2_dvb_(un)register manages this */ struct dvb_demux demux; struct dmxdev dmxdev; struct dmx_frontend fe_hw; struct dmx_frontend fe_mem; struct dvb_net net; }; struct vb2_dvb_frontend { struct list_head felist; int id; struct vb2_dvb dvb; }; struct vb2_dvb_frontends { struct list_head felist; struct mutex lock; struct dvb_adapter adapter; int active_fe_id; /* Indicates which frontend in the felist is in use */ int gate; /* Frontend with gate control 0=!MFE,1=fe0,2=fe1 etc */ }; int vb2_dvb_register_bus(struct vb2_dvb_frontends *f, struct module *module, void *adapter_priv, struct device *device, struct media_device *mdev, short *adapter_nr, int mfe_shared); void vb2_dvb_unregister_bus(struct vb2_dvb_frontends *f); struct vb2_dvb_frontend *vb2_dvb_alloc_frontend(struct vb2_dvb_frontends *f, int id); void vb2_dvb_dealloc_frontends(struct vb2_dvb_frontends *f); struct vb2_dvb_frontend *vb2_dvb_get_frontend(struct vb2_dvb_frontends *f, int id); int vb2_dvb_find_frontend(struct vb2_dvb_frontends *f, struct dvb_frontend *p); #endif /* _VIDEOBUF2_DVB_H_ */