linux/drivers/media/test-drivers/vivid/vivid-vbi-gen.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0-only */
   2/*
   3 * vivid-vbi-gen.h - vbi generator support functions.
   4 *
   5 * Copyright 2014 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
   6 */
   7
   8#ifndef _VIVID_VBI_GEN_H_
   9#define _VIVID_VBI_GEN_H_
  10
  11struct vivid_vbi_gen_data {
  12        struct v4l2_sliced_vbi_data data[25];
  13        u8 time_of_day_packet[16];
  14};
  15
  16void vivid_vbi_gen_sliced(struct vivid_vbi_gen_data *vbi,
  17                bool is_60hz, unsigned seqnr);
  18void vivid_vbi_gen_raw(const struct vivid_vbi_gen_data *vbi,
  19                const struct v4l2_vbi_format *vbi_fmt, u8 *buf);
  20
  21#endif
  22