Blame docs/gst/html/gstreamer-GstVersion.html

Packit f546b1
Packit f546b1
<html>
Packit f546b1
<head>
Packit f546b1
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
Packit f546b1
<title>GstVersion: GStreamer 1.0 Core Reference Manual</title>
Packit f546b1
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
Packit f546b1
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
Packit f546b1
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
Packit f546b1
<link rel="prev" href="gstreamer-GstValue.html" title="GstValue">
Packit f546b1
<link rel="next" href="gstreamer-device-probing.html" title="GStreamer Device Discovery and Device Probing">
Packit f546b1
<meta name="generator" content="GTK-Doc V1.27 (XML mode)">
Packit f546b1
<link rel="stylesheet" href="style.css" type="text/css">
Packit f546b1
</head>
Packit f546b1
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
Packit f546b1
Packit f546b1
Packit f546b1
Top  | 
Packit f546b1
                  Description
Packit f546b1
Packit f546b1
Home
Packit f546b1
Up
Packit f546b1
Prev
Packit f546b1
Next
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1

GstVersion

Packit f546b1

GstVersion — GStreamer version macros.

Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1

Functions

Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
#define
Packit f546b1
Packit f546b1
GST_CHECK_VERSION()
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1

Types and Values

Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
#define
Packit f546b1
GST_VERSION_MAJOR
Packit f546b1
Packit f546b1
Packit f546b1
#define
Packit f546b1
GST_VERSION_MINOR
Packit f546b1
Packit f546b1
Packit f546b1
#define
Packit f546b1
GST_VERSION_MICRO
Packit f546b1
Packit f546b1
Packit f546b1
#define
Packit f546b1
GST_VERSION_NANO
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1

Includes

Packit f546b1
#include <gst/gstprotection.h>
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1

Description

Packit f546b1

Use the GST_VERSION_* macros e.g. when defining own plugins. The GStreamer

Packit f546b1
runtime checks if these plugin and core version match and refuses to use a
Packit f546b1
plugin compiled against a different version of GStreamer.
Packit f546b1
You can also use the macros to keep the GStreamer version information in
Packit f546b1
your application.

Packit f546b1

Use the gst_version() function if you want to know which version of

Packit f546b1
GStreamer you are currently linked against.

Packit f546b1

The version macros get defined by including "gst/gst.h".

Packit f546b1
Packit f546b1
Packit f546b1

Functions

Packit f546b1
Packit f546b1

GST_CHECK_VERSION()

Packit f546b1
#define             GST_CHECK_VERSION(major,minor,micro)
Packit f546b1

Check whether a GStreamer version equal to or greater than

Packit f546b1
major.minor.micro is present.

Packit f546b1
Packit f546b1

Parameters

Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1

major

Packit f546b1

a number indicating the major version

Packit f546b1
 
Packit f546b1
Packit f546b1
Packit f546b1

minor

Packit f546b1

a number indicating the minor version

Packit f546b1
 
Packit f546b1
Packit f546b1
Packit f546b1

micro

Packit f546b1

a number indicating the micro version

Packit f546b1
 
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1

Types and Values

Packit f546b1
Packit f546b1

GST_VERSION_MAJOR

Packit f546b1
#define GST_VERSION_MAJOR (1)
Packit f546b1
Packit f546b1

The major version of GStreamer at compile time:

Packit f546b1
Packit f546b1

Packit f546b1
Packit f546b1

GST_VERSION_MINOR

Packit f546b1
#define GST_VERSION_MINOR (14)
Packit f546b1
Packit f546b1

The minor version of GStreamer at compile time:

Packit f546b1
Packit f546b1

Packit f546b1
Packit f546b1

GST_VERSION_MICRO

Packit f546b1
#define GST_VERSION_MICRO (1)
Packit f546b1
Packit f546b1

The micro version of GStreamer at compile time:

Packit f546b1
Packit f546b1

Packit f546b1
Packit f546b1

GST_VERSION_NANO

Packit f546b1
#define GST_VERSION_NANO (0)
Packit f546b1
Packit f546b1

The nano version of GStreamer at compile time:

Packit f546b1
Actual releases have 0, GIT versions have 1, prerelease versions have 2-...

Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1
Packit f546b1

Generated by GTK-Doc V1.27
Packit f546b1
</body>
Packit f546b1
</html>