This file is indexed.

/usr/include/gmerlin/bgav_version.h is in libgmerlin-avdec-dev 1.2.0~dfsg-8.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#ifndef __BGAV_VERSION_H_
#define __BGAV_VERSION_H_

#define BGAV_VERSION "1.2.0"

#define BGAV_VERSION_MAJOR 1
#define BGAV_VERSION_MINOR 2
#define BGAV_VERSION_MICRO 0

#define BGAV_MAKE_BUILD(a,b,c) ((a << 16) + (b << 8) + c)

#define BGAV_BUILD \
BGAV_MAKE_BUILD(BGAV_VERSION_MAJOR, \
                BGAV_VERSION_MINOR, \
                BGAV_VERSION_MICRO)

#endif // __BGAV_VERSION_H_