This file is indexed.

/usr/include/schroedinger-1.0/schroedinger/schrovirtframe.h is in libschroedinger-dev 1.0.11-2.1build1.

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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef __SCHRO_VIRT_FRAME_H__
#define __SCHRO_VIRT_FRAME_H__

#include <schroedinger/schroutils.h>
#include <schroedinger/schroframe.h>

SCHRO_BEGIN_DECLS

#ifdef SCHRO_ENABLE_UNSTABLE_API

SchroFrame *schro_frame_new_virtual (SchroMemoryDomain *domain,
    SchroFrameFormat format, int width, int height);

void *schro_virt_frame_get_line (SchroFrame *frame, int component, int i);
void *schro_virt_frame_get_line_unrendered (SchroFrame *frame, int component, int i);
void schro_virt_frame_set_line_rendered (SchroFrame *frame, int component, int i);
void schro_virt_frame_render_line (SchroFrame *frame, void *dest,
    int component, int i);

void schro_virt_frame_render (SchroFrame *frame, SchroFrame *dest);

SchroFrame *schro_virt_frame_new_horiz_downsample (SchroFrame *vf, int cosite);
SchroFrame *schro_virt_frame_new_vert_downsample (SchroFrame *vf, int cosite);
SchroFrame *schro_virt_frame_new_vert_resample (SchroFrame *vf, int height);
SchroFrame *schro_virt_frame_new_horiz_resample (SchroFrame *vf, int width);
SchroFrame *schro_virt_frame_new_unpack (SchroFrame *vf);
SchroFrame *schro_virt_frame_new_pack_YUY2 (SchroFrame *vf);
SchroFrame *schro_virt_frame_new_pack_UYVY (SchroFrame *vf);
SchroFrame *schro_virt_frame_new_pack_AYUV (SchroFrame *vf);
SchroFrame *schro_virt_frame_new_pack_v216 (SchroFrame *vf);
SchroFrame *schro_virt_frame_new_pack_v210 (SchroFrame *vf);
SchroFrame *schro_virt_frame_new_pack_RGB (SchroFrame *vf);
SchroFrame *schro_virt_frame_new_pack_AY64 (SchroFrame * vf);
SchroFrame *schro_virt_frame_new_color_matrix (SchroFrame *vf);
SchroFrame *schro_virt_frame_new_subsample (SchroFrame *vf, SchroFrameFormat format);

SchroFrame * schro_virt_frame_new_convert_u8 (SchroFrame *vf);
SchroFrame * schro_virt_frame_new_convert_u8_s32 (SchroFrame *vf);
SchroFrame * schro_virt_frame_new_convert_s16 (SchroFrame *vf);
SchroFrame * schro_virt_frame_new_convert_s32 (SchroFrame * vf);
SchroFrame * schro_virt_frame_new_crop (SchroFrame *vf, int width, int height);
SchroFrame * schro_virt_frame_new_edgeextend (SchroFrame *vf, int width, int height);
SchroFrame * schro_virt_frame_new_interlace (SchroFrame *vf_top, SchroFrame *vf_bottom);

#endif

SCHRO_END_DECLS

#endif