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
//! Information about compile-time features and licensing.
/// Returns `true` if Babycat was compiled with support for
/// reading and writing files from/to the local filesystem.
/// Returns `true` if Babycat was compiled with multithreading support.
/// Returns `true` if Babycat was compiled with FFmpeg support enabled.
///
/// This function will return `true` no matter how
/// FFmpeg was compiled or linked to Babycat.
/// Returns `true` if Babycat was statically linked to an existing copy of FFmpeg.
/// Returns `true` if Babycat compiled its own copy of FFmpeg.
const MIT_LICENSE: &str = "MIT";
const LGPL_2_1_OR_LATER_LICENSE: &str = "LGPL-2.1+";
/// The copyright license for this version of Babycat.
///
/// This could change based on which features or libraries
/// were compiled into Babycat.
/// The current Babycat version.
///
/// This function returns `"0.0.0"` for development versions
/// of Babycat.