OpenShot Library | libopenshot
0.4.0
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
v
w
Functions
Variables
Typedefs
Enumerations
Enumerator
a
b
c
e
f
g
h
l
m
p
r
s
t
v
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Related Functions
Files
File List
File Members
All
_
a
c
e
f
h
i
k
m
n
o
p
q
r
s
t
u
Functions
Variables
Typedefs
Macros
_
a
e
f
h
i
k
m
n
o
p
q
r
s
t
u
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
build
src
OpenShotVersion.h
Go to the documentation of this file.
1
9
// Copyright (c) 2008-2019 OpenShot Studios, LLC
10
//
11
// SPDX-License-Identifier: LGPL-3.0-or-later
12
13
#ifndef OPENSHOT_VERSION_H
14
#define OPENSHOT_VERSION_H
15
16
#define OPENSHOT_VERSION_ALL "0.4.0"
17
#define OPENSHOT_VERSION_FULL "0.4.0"
18
#define OPENSHOT_VERSION_MAJOR_MINOR "0.4"
19
20
#define OPENSHOT_VERSION_MAJOR 0
21
#define OPENSHOT_VERSION_MINOR 4
22
#define OPENSHOT_VERSION_BUILD 0
23
#define OPENSHOT_VERSION_SO 27
24
25
// Useful dependency versioning / feature availability
26
#define QT_VERSION_STR "5.12.8"
27
#define AVCODEC_VERSION_STR "58.54.100"
28
#define AVFORMAT_VERSION_STR "58.29.100"
29
#define AVUTIL_VERSION_STR "56.31.100"
30
#define OPENCV_VERSION_STR "4.2.0"
31
#define HAVE_BABL 1
32
#define HAVE_IMAGEMAGICK 1
33
#define HAVE_RESVG 1
34
#define HAVE_OPENCV 1
35
#define FFMPEG_USE_SWRESAMPLE 1
36
#define APPIMAGE_BUILD 1
37
38
#include <sstream>
39
40
namespace
openshot
41
{
43
struct
OpenShotVersion
{
44
static
const
int
Major
=
OPENSHOT_VERSION_MAJOR
;
45
static
const
int
Minor
=
OPENSHOT_VERSION_MINOR
;
46
static
const
int
Build
=
OPENSHOT_VERSION_BUILD
;
47
static
const
int
So
=
OPENSHOT_VERSION_SO
;
48
50
inline
static
const
std::string
ToString
() {
51
std::stringstream version_string;
52
version_string <<
Major
<<
"."
<<
Minor
<<
"."
<<
Build
;
53
return
version_string.str();
54
}
55
};
56
57
static
const
openshot::OpenShotVersion
Version;
58
60
openshot::OpenShotVersion
GetVersion
();
61
}
62
63
#endif // OPENSHOT_VERSION_H
openshot
This namespace is the default namespace for all code in the openshot library.
Definition:
Compressor.h:28
OPENSHOT_VERSION_SO
#define OPENSHOT_VERSION_SO
Definition:
OpenShotVersion.h:23
OPENSHOT_VERSION_MINOR
#define OPENSHOT_VERSION_MINOR
Definition:
OpenShotVersion.h:21
openshot::OpenShotVersion::So
static const int So
Build number.
Definition:
OpenShotVersion.h:47
openshot::OpenShotVersion::ToString
static const std::string ToString()
Shared Object Number (incremented when API or ABI changes)
Definition:
OpenShotVersion.h:50
OPENSHOT_VERSION_BUILD
#define OPENSHOT_VERSION_BUILD
Definition:
OpenShotVersion.h:22
openshot::OpenShotVersion::Minor
static const int Minor
Major version number.
Definition:
OpenShotVersion.h:45
openshot::OpenShotVersion::Build
static const int Build
Minor version number.
Definition:
OpenShotVersion.h:46
openshot::GetVersion
OpenShotVersion GetVersion()
Get the current version number of libopenshot (major, minor, and build number)
Definition:
OpenShotVersion.cpp:17
openshot::OpenShotVersion::Major
static const int Major
Definition:
OpenShotVersion.h:44
openshot::OpenShotVersion
This struct holds version number information. Use the GetVersion() method to access the current versi...
Definition:
OpenShotVersion.h:43
OPENSHOT_VERSION_MAJOR
#define OPENSHOT_VERSION_MAJOR
Definition:
OpenShotVersion.h:20
Generated by
1.8.17