This file is indexed.

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

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
#ifndef __SCHRO_PARSE_H__
#define __SCHRO_PARSE_H__

#include <schroedinger/schrovideoformat.h>
#include <schroedinger/schrobufferlist.h>

SCHRO_BEGIN_DECLS

int schro_parse_decode_sequence_header (uint8_t *data, int length,
    SchroVideoFormat *video_format);

#ifdef SCHRO_ENABLE_UNSTABLE_API

typedef struct _SchroParseSyncState SchroParseSyncState;

SchroParseSyncState *schro_parse_sync_new (void);
void schro_parse_sync_free (SchroParseSyncState *);
SchroBuffer *schro_parse_sync (SchroParseSyncState *sps, SchroBufferList *input_bufer);

#endif

SCHRO_END_DECLS

#endif