This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.20/GStreamer/Caps.pod is in libgstreamer-perl 0.19-1+b1.

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
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
=head1 NAME

GStreamer::Caps -  Structure describing sets of media formats

=cut

=for position SYNOPSIS

=head1 SYNOPSIS

  my $empty = GStreamer::Caps::Empty -> new();

  my $any = GStreamer::Caps::Any -> new();

  my $structure = {
    name => "urgs",
    fields => [
      [field_one => "Glib::String" => "urgs"],
      [field_two => "Glib::Int" => 23]
    ]
  };
  my $full = GStreamer::Caps::Full -> new($structure);

  my $simple = GStreamer::Caps::Simple -> new(
     	         "audio/mpeg",
                 field_one => "Glib::String" => "urgs",
                 field_two => "Glib::Int" => 23);

=cut



=for position DESCRIPTION

=head1 DESCRIPTION

To create a I<GStreamer::Caps> object, you call one of the following
constructors:

=over

=item GStreamer::Caps::Any-E<gt>new

=item GStreamer::Caps::Empty-E<gt>new

=item GStreamer::Caps::Full-E<gt>new

=item GStreamer::Caps::Simple-E<gt>new

=back

=cut



=head1 HIERARCHY

  Glib::Boxed
  +----GStreamer::Caps



=cut

=for object GStreamer::Caps Structure describing sets of media formats

=cut




=head1 METHODS

=head2 $caps1-E<gt>B<append> ($caps2)

=over

=item * $caps2 (GStreamer::Caps) 

=back

=head2 $caps-E<gt>B<append_structure> ($structure)

=over

=item * $structure (GStreamer::Structure) 

=back

=head2 boolean = $caps-E<gt>B<do_simplify> 

=head2 caps = GStreamer::Caps-E<gt>B<from_string> ($string)

=over

=item * $string (string) 

=back

=head2 caps = $caps1-E<gt>B<intersect> ($caps2)

=over

=item * $caps2 (GStreamer::Caps) 

=back

=head2 boolean = $caps1-E<gt>B<is_always_compatible> ($caps2)

=over

=item * $caps2 (GStreamer::Caps) 

=back

=head2 boolean = $caps-E<gt>B<is_any> 

=head2 boolean = $caps-E<gt>B<is_empty> 

=head2 boolean = $caps1-E<gt>B<is_equal> ($caps2)

=over

=item * $caps2 (GStreamer::Caps) 

=back

=head2 boolean = $caps1-E<gt>B<is_equal_fixed> ($caps2)

=over

=item * $caps2 (GStreamer::Caps) 

=back

=head2 boolean = $caps-E<gt>B<is_fixed> 

=head2 boolean = $subset-E<gt>B<is_subset> ($superset)

=over

=item * $superset (GStreamer::Caps) 

=back

=head2 caps = $caps-E<gt>B<make_writable> 

=head2 caps = $caps-E<gt>B<normalize> 

=head2 $caps-E<gt>B<set_simple> ($field, $type, $value, ...)

=over

=item * $field (string) 

=item * $type (string) 

=item * $value (scalar) 

=item * ... (list) 

=back

=head2 integer = $caps-E<gt>B<get_size> 

=head2 structure = $caps-E<gt>B<get_structure> ($index)

=over

=item * $index (integer) 

=back

=head2 caps = $minuend-E<gt>B<subtract> ($subtrahend)

=over

=item * $subtrahend (GStreamer::Caps) 

=back

=head2 string = $caps-E<gt>B<to_string> 

=head2 $caps-E<gt>B<truncate> 

=head2 caps = $caps1-E<gt>B<union> ($caps2)

=over

=item * $caps2 (GStreamer::Caps) 

=back



=cut


=head1 SEE ALSO

L<GStreamer>, L<Glib::Boxed>


=cut


=head1 COPYRIGHT

Copyright (C) 2005-2011 by the gtk2-perl team.

This software is licensed under the LGPL.  See L<GStreamer> for a full notice.



=cut