File: gtkdata.h

package info (click to toggle)
libvpl-tools 1.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,652 kB
  • sloc: cpp: 107,469; python: 4,303; ansic: 3,202; sh: 159; lisp: 52; makefile: 13
file content (19 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*############################################################################
  # Copyright (C) 2024 Intel Corporation
  #
  # SPDX-License-Identifier: MIT
  ############################################################################*/
#ifndef __GTK_DATA_H__
#define __GTK_DATA_H__

typedef struct {
    int fd;
    int width;
    int height;
    int stride[3];
    int num_planes;
    int offset[3];
    uint32_t fourcc;
} gtk_data_t;

#endif // __GTK_DATA_H__