perf tools: Don't clone maps from parent when synthesizing forks
[linux/fpc-iii.git] / drivers / media / platform / vivid / vivid-vbi-gen.h
blob2657a7f5571c05545abada3c5acd30a8c9d2ad7e
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * vivid-vbi-gen.h - vbi generator support functions.
5 * Copyright 2014 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
6 */
8 #ifndef _VIVID_VBI_GEN_H_
9 #define _VIVID_VBI_GEN_H_
11 struct vivid_vbi_gen_data {
12 struct v4l2_sliced_vbi_data data[25];
13 u8 time_of_day_packet[16];
16 void vivid_vbi_gen_sliced(struct vivid_vbi_gen_data *vbi,
17 bool is_60hz, unsigned seqnr);
18 void vivid_vbi_gen_raw(const struct vivid_vbi_gen_data *vbi,
19 const struct v4l2_vbi_format *vbi_fmt, u8 *buf);
21 #endif