Lines Matching +full:video +full:- +full:decoder

1 /* SPDX-License-Identifier: GPL-2.0-or-later */
20 #include <media/v4l2-common.h>
21 #include <media/v4l2-device.h>
22 #include <media/v4l2-ctrls.h>
23 #include <media/videobuf2-v4l2.h>
24 #include <media/videobuf2-dma-sg.h>
26 #include "cx25821-reg.h"
27 #include "cx25821-medusa-reg.h"
28 #include "cx25821-sram.h"
29 #include "cx25821-audio.h"
33 #define UNSET (-1U)
34 #define NO_SYNC_LINE (-1U)
77 * Maximum capture-only channels. This can go away once video/audio output
110 /* buffer for one video frame */
112 /* common v4l buffer stuff -- must be first */
214 /* video output data for the video output channel */
232 /* used by cx25821-alsa */
249 /* Analog video */
284 /* Video Upstream */
295 #define SRAM_CH00 0 /* Video A */
296 #define SRAM_CH01 1 /* Video B */
297 #define SRAM_CH02 2 /* Video C */
298 #define SRAM_CH03 3 /* Video D */
299 #define SRAM_CH04 4 /* Video E */
300 #define SRAM_CH05 5 /* Video F */
301 #define SRAM_CH06 6 /* Video G */
302 #define SRAM_CH07 7 /* Video H */
305 #define SRAM_CH09 9 /* Video Upstream I */
306 #define SRAM_CH10 10 /* Video Upstream J */
336 /* For Upstream Video */
350 #define cx_read(reg) readl(dev->lmmio + ((reg)>>2))
351 #define cx_write(reg, value) writel((value), dev->lmmio + ((reg)>>2))
354 writel((readl(dev->lmmio+((reg)>>2)) & ~(mask)) |\
355 ((value) & (mask)), dev->lmmio+((reg)>>2))
364 pr_err("(%d): " fmt, dev->board, ##args)
366 pr_warn("(%d): " fmt, dev->board, ##args)
368 pr_info("(%d): " fmt, dev->board, ##args)
383 int decoder);
385 int decoder);
386 extern int medusa_set_hue(struct cx25821_dev *dev, int hue, int decoder);
388 int decoder);