This file is indexed.

/usr/include/QtGStreamer/QGst/colorbalance.h is in libqtgstreamer-dev 1.2.0-3.

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
50
51
52
53
54
55
56
/*
    Copyright (C) 2010  George Kiagiadakis <kiagiadakis.george@gmail.com>

    This library is free software; you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published
    by the Free Software Foundation; either version 2.1 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef QGST_COLORBALANCE_H
#define QGST_COLORBALANCE_H

#include "global.h"
#include "../QGlib/object.h"

namespace QGst {

/*! \headerfile colorbalance.h <QGst/ColorBalance>
 * \brief Wrapper class for GstColorBalanceChannel
 */
class QTGSTREAMER_EXPORT ColorBalanceChannel : public QGlib::Object
{
    QGST_WRAPPER(ColorBalanceChannel)
public:
    QString label() const;
    int minValue() const;
    int maxValue() const;
};

/*! \headerfile colorbalance.h <QGst/ColorBalance>
 * \brief Wrapper class for GstColorBalance
 */
class QTGSTREAMER_EXPORT ColorBalance : public QGlib::Interface
{
    QGST_WRAPPER(ColorBalance)
public:
    ColorBalanceType type() const;
    QList<ColorBalanceChannelPtr> channels() const;
    int value(const ColorBalanceChannelPtr & channel) const;
    void setValue(const ColorBalanceChannelPtr & channel, int value);
};

} //namespace QGst

QGST_REGISTER_TYPE(QGst::ColorBalanceChannel)
QGST_REGISTER_TYPE(QGst::ColorBalance)
QGLIB_REGISTER_INTERFACE(QGst::ColorBalance)

#endif // QGST_COLORBALANCE_H