This file is indexed.

/usr/include/CharLS/jpegimagedatasegment.h is in libcharls-dev 1.1.0+dfsg-2.

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
//
// (C) CharLS Team 2014, all rights reserved. See the accompanying "License.txt" for licensed use. 
//

#pragma once

#include "util.h"
#include "jpegsegment.h"
#include "jpegstreamwriter.h"
#include <vector>

class JpegImageDataSegment : public JpegSegment
{
public:
	JpegImageDataSegment(ByteStreamInfo rawStream, const JlsParameters& info, int ccompScan) :
		_ccompScan(ccompScan),
		_rawStreamInfo(rawStream),
		_info(info)
	{
	}

	void Serialize(JpegStreamWriter& streamWriter);

private:
	int _ccompScan;
	ByteStreamInfo _rawStreamInfo;
	JlsParameters _info;
};