This file is indexed.

/usr/include/quvi-0.9/quvi/qmediaprop.h is in libquvi-0.9-dev 0.9.3-1.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
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
57
58
59
/* libquvi
 * Copyright (C) 2012  Toni Gundogdu <legatvs@gmail.com>
 *
 * This file is part of libquvi <http://quvi.sourceforge.net/>.
 *
 * This library is free software: you can redistribute it and/or
 * modify it under the terms of the GNU Affero General Public
 * License as published by the Free Software Foundation, either
 * version 3 of the License, or (at your option) any later version.
 *
 * This library 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General
 * Public License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
 */

#ifndef qmediaprop_h
#define qmediaprop_h

/** @file qmediaprop.h */

/** @cond NODOC */
#define QUVI_MEDIA_PROPERTY_TYPE_STRING 0x100000
#define QUVI_MEDIA_PROPERTY_TYPE_LONG   0x200000
#define QUVI_MEDIA_PROPERTY_TYPE_DOUBLE 0x300000
#define QUVI_MEDIA_PROPERTY_TYPE_VOID   0x400000
#define QUVI_MEDIA_PROPERTY_TYPE_MASK   0xf00000
/** @endcond */

/** @enum QuviMediaProperty */
typedef enum
{
  /* string */
  QUVI_MEDIA_PROPERTY_THUMBNAIL_URL = QUVI_MEDIA_PROPERTY_TYPE_STRING+1,
  QUVI_MEDIA_PROPERTY_TITLE,
  QUVI_MEDIA_PROPERTY_ID,
  QUVI_MEDIA_STREAM_PROPERTY_VIDEO_ENCODING,
  QUVI_MEDIA_STREAM_PROPERTY_AUDIO_ENCODING,
  QUVI_MEDIA_STREAM_PROPERTY_CONTAINER,
  QUVI_MEDIA_STREAM_PROPERTY_URL,
  QUVI_MEDIA_STREAM_PROPERTY_ID,
  /* double */
  QUVI_MEDIA_PROPERTY_START_TIME_MS =
  ((QUVI_MEDIA_STREAM_PROPERTY_ID - QUVI_MEDIA_PROPERTY_TYPE_STRING)
  + QUVI_MEDIA_PROPERTY_TYPE_DOUBLE + 0x20),
  QUVI_MEDIA_PROPERTY_DURATION_MS,
  QUVI_MEDIA_STREAM_PROPERTY_VIDEO_BITRATE_KBIT_S,
  QUVI_MEDIA_STREAM_PROPERTY_AUDIO_BITRATE_KBIT_S,
  QUVI_MEDIA_STREAM_PROPERTY_VIDEO_HEIGHT,
  QUVI_MEDIA_STREAM_PROPERTY_VIDEO_WIDTH
} QuviMediaProperty;

#endif /* qmediaprop_h */

/* vim: set ts=2 sw=2 tw=72 expandtab: */