/usr/include/d/gtkd-3/gstreamer/CapsFeatures.d is in libgstreamerd-3-dev 3.7.5-2build1.
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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 | /*
* This file is part of gtkD.
*
* gtkD 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 3
* of the License, or (at your option) any later version, with
* some exceptions, please read the COPYING file.
*
* gtkD 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 gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage
module gstreamer.CapsFeatures;
private import glib.ConstructionException;
private import glib.Str;
private import gobject.ObjectG;
private import gstreamer.c.functions;
public import gstreamer.c.types;
public import gstreamerc.gstreamertypes;
private import gtkd.Loader;
/**
* #GstCapsFeatures can optionally be set on a #GstCaps to add requirements
* for additional features for a specific #GstStructure. Caps structures with
* the same name but with a non-equal set of caps features are not compatible.
* If a pad supports multiple sets of features it has to add multiple equal
* structures with different feature sets to the caps.
*
* Empty #GstCapsFeatures are equivalent with the #GstCapsFeatures that only
* contain #GST_CAPS_FEATURE_MEMORY_SYSTEM_MEMORY. ANY #GstCapsFeatures as
* created by gst_caps_features_new_any() are equal to any other #GstCapsFeatures
* and can be used to specify that any #GstCapsFeatures would be supported, e.g.
* for elements that don't touch buffer memory. #GstCaps with ANY #GstCapsFeatures
* are considered non-fixed and during negotiation some #GstCapsFeatures have
* to be selected.
*
* Examples for caps features would be the requirement of a specific #GstMemory
* types or the requirement of having a specific #GstMeta on the buffer. Features
* are given as a string of the format "memory:GstMemoryTypeName" or
* "meta:GstMetaAPIName".
*/
public class CapsFeatures
{
/** the main Gtk struct */
protected GstCapsFeatures* gstCapsFeatures;
protected bool ownedRef;
/** Get the main Gtk struct */
public GstCapsFeatures* getCapsFeaturesStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return gstCapsFeatures;
}
/** the main Gtk struct as a void* */
protected void* getStruct()
{
return cast(void*)gstCapsFeatures;
}
/**
* Sets our main struct and passes it to the parent class.
*/
public this (GstCapsFeatures* gstCapsFeatures, bool ownedRef = false)
{
this.gstCapsFeatures = gstCapsFeatures;
this.ownedRef = ownedRef;
}
~this ()
{
if ( Linker.isLoaded(LIBRARY_GSTREAMER) && ownedRef )
gst_caps_features_free(gstCapsFeatures);
}
/**
* Creates a new, ANY #GstCapsFeatures. This will be equal
* to any other #GstCapsFeatures but caps with these are
* unfixed.
*
* Free-function: gst_caps_features_free
*
* Return: a new, ANY #GstCapsFeatures
*
* Since: 1.2
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public static newAny()
{
auto p = gst_caps_features_new_any();
if(p is null)
{
throw new ConstructionException("null returned by new_any");
}
return new CapsFeatures(cast(GstCapsFeatures*)p);
}
/**
*/
/** */
public static GType getType()
{
return gst_caps_features_get_type();
}
/**
* Creates a new, empty #GstCapsFeatures.
*
* Free-function: gst_caps_features_free
*
* Returns: a new, empty #GstCapsFeatures
*
* Since: 1.2
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this()
{
auto p = gst_caps_features_new_empty();
if(p is null)
{
throw new ConstructionException("null returned by new_empty");
}
this(cast(GstCapsFeatures*) p);
}
/**
* Creates a new #GstCapsFeatures with the given features.
*
* Free-function: gst_caps_features_free
*
* Params:
* feature1 = name of first feature to set
* varargs = variable argument list
*
* Returns: a new, empty #GstCapsFeatures
*
* Since: 1.2
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this(GQuark feature1, void* varargs)
{
auto p = gst_caps_features_new_id_valist(feature1, varargs);
if(p is null)
{
throw new ConstructionException("null returned by new_id_valist");
}
this(cast(GstCapsFeatures*) p);
}
/**
* Creates a new #GstCapsFeatures with the given features.
*
* Free-function: gst_caps_features_free
*
* Params:
* feature1 = name of first feature to set
* varargs = variable argument list
*
* Returns: a new, empty #GstCapsFeatures
*
* Since: 1.2
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this(string feature1, void* varargs)
{
auto p = gst_caps_features_new_valist(Str.toStringz(feature1), varargs);
if(p is null)
{
throw new ConstructionException("null returned by new_valist");
}
this(cast(GstCapsFeatures*) p);
}
/**
* Adds @feature to @features.
*
* Params:
* feature = a feature.
*
* Since: 1.2
*/
public void add(string feature)
{
gst_caps_features_add(gstCapsFeatures, Str.toStringz(feature));
}
/**
* Adds @feature to @features.
*
* Params:
* feature = a feature.
*
* Since: 1.2
*/
public void addId(GQuark feature)
{
gst_caps_features_add_id(gstCapsFeatures, feature);
}
/**
* Check if @features contains @feature.
*
* Params:
* feature = a feature
*
* Returns: %TRUE if @features contains @feature.
*
* Since: 1.2
*/
public bool contains(string feature)
{
return gst_caps_features_contains(gstCapsFeatures, Str.toStringz(feature)) != 0;
}
/**
* Check if @features contains @feature.
*
* Params:
* feature = a feature
*
* Returns: %TRUE if @features contains @feature.
*
* Since: 1.2
*/
public bool containsId(GQuark feature)
{
return gst_caps_features_contains_id(gstCapsFeatures, feature) != 0;
}
/**
* Duplicates a #GstCapsFeatures and all its values.
*
* Free-function: gst_caps_features_free
*
* Returns: a new #GstCapsFeatures.
*
* Since: 1.2
*/
public CapsFeatures copy()
{
auto p = gst_caps_features_copy(gstCapsFeatures);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(CapsFeatures)(cast(GstCapsFeatures*) p, true);
}
/**
* Frees a #GstCapsFeatures and all its values. The caps features must not
* have a parent when this function is called.
*
* Since: 1.2
*/
public void free()
{
gst_caps_features_free(gstCapsFeatures);
ownedRef = false;
}
/**
* Returns the @i-th feature of @features.
*
* Params:
* i = index of the feature
*
* Returns: The @i-th feature of @features.
*
* Since: 1.2
*/
public string getNth(uint i)
{
return Str.toString(gst_caps_features_get_nth(gstCapsFeatures, i));
}
/**
* Returns the @i-th feature of @features.
*
* Params:
* i = index of the feature
*
* Returns: The @i-th feature of @features.
*
* Since: 1.2
*/
public GQuark getNthId(uint i)
{
return gst_caps_features_get_nth_id(gstCapsFeatures, i);
}
/**
* Returns the number of features in @features.
*
* Returns: The number of features in @features.
*
* Since: 1.2
*/
public uint getSize()
{
return gst_caps_features_get_size(gstCapsFeatures);
}
/**
* Check if @features is %GST_CAPS_FEATURES_ANY.
*
* Returns: %TRUE if @features is %GST_CAPS_FEATURES_ANY.
*
* Since: 1.2
*/
public bool isAny()
{
return gst_caps_features_is_any(gstCapsFeatures) != 0;
}
/**
* Check if @features1 and @features2 are equal.
*
* Params:
* features2 = a #GstCapsFeatures.
*
* Returns: %TRUE if @features1 and @features2 are equal.
*
* Since: 1.2
*/
public bool isEqual(CapsFeatures features2)
{
return gst_caps_features_is_equal(gstCapsFeatures, (features2 is null) ? null : features2.getCapsFeaturesStruct()) != 0;
}
/**
* Removes @feature from @features.
*
* Params:
* feature = a feature.
*
* Since: 1.2
*/
public void remove(string feature)
{
gst_caps_features_remove(gstCapsFeatures, Str.toStringz(feature));
}
/**
* Removes @feature from @features.
*
* Params:
* feature = a feature.
*
* Since: 1.2
*/
public void removeId(GQuark feature)
{
gst_caps_features_remove_id(gstCapsFeatures, feature);
}
/**
* Sets the parent_refcount field of #GstCapsFeatures. This field is used to
* determine whether a caps features is mutable or not. This function should only be
* called by code implementing parent objects of #GstCapsFeatures, as described in
* the MT Refcounting section of the design documents.
*
* Params:
* refcount = a pointer to the parent's refcount
*
* Returns: %TRUE if the parent refcount could be set.
*
* Since: 1.2
*/
public bool setParentRefcount(int* refcount)
{
return gst_caps_features_set_parent_refcount(gstCapsFeatures, refcount) != 0;
}
/**
* Converts @features to a human-readable string representation.
*
* For debugging purposes its easier to do something like this:
* |[<!-- language="C" -->
* GST_LOG ("features is %" GST_PTR_FORMAT, features);
* ]|
* This prints the features in human readable form.
*
* Free-function: g_free
*
* Returns: a pointer to string allocated by g_malloc().
* g_free() after usage.
*
* Since: 1.2
*/
public override string toString()
{
auto retStr = gst_caps_features_to_string(gstCapsFeatures);
scope(exit) Str.freeString(retStr);
return Str.toString(retStr);
}
/**
* Creates a #GstCapsFeatures from a string representation.
*
* Free-function: gst_caps_features_free
*
* Params:
* features = a string representation of a #GstCapsFeatures.
*
* Returns: a new #GstCapsFeatures or
* %NULL when the string could not be parsed. Free with
* gst_caps_features_free() after use.
*
* Since: 1.2
*/
public static CapsFeatures fromString(string features)
{
auto p = gst_caps_features_from_string(Str.toStringz(features));
if(p is null)
{
return null;
}
return ObjectG.getDObject!(CapsFeatures)(cast(GstCapsFeatures*) p, true);
}
}
|