aboutsummaryrefslogtreecommitdiff
path: root/src/version.cc
blob: 8d1e5a962e6f85acc7de27ac0e9bcd664e258c70 (plain)
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
// Copyright 2019 The libgav1 Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "src/gav1/version.h"

#define LIBGAV1_TOSTRING(x) #x
#define LIBGAV1_STRINGIFY(x) LIBGAV1_TOSTRING(x)
#define LIBGAV1_DOT_SEPARATED(M, m, p) M##.##m##.##p
#define LIBGAV1_DOT_SEPARATED_VERSION(M, m, p) LIBGAV1_DOT_SEPARATED(M, m, p)
#define LIBGAV1_DOT_VERSION                                                   \
  LIBGAV1_DOT_SEPARATED_VERSION(LIBGAV1_MAJOR_VERSION, LIBGAV1_MINOR_VERSION, \
                                LIBGAV1_PATCH_VERSION)

#define LIBGAV1_VERSION_STRING LIBGAV1_STRINGIFY(LIBGAV1_DOT_VERSION)

extern "C" {

int Libgav1GetVersion() { return LIBGAV1_VERSION; }
const char* Libgav1GetVersionString() { return LIBGAV1_VERSION_STRING; }

const char* Libgav1GetBuildConfiguration() {
  // TODO(jzern): cmake can generate the detail or in other cases we could
  // produce one based on the known defines along with the defaults based on
  // the toolchain, e.g., LIBGAV1_ENABLE_NEON from cpu.h.
  return "Not available.";
}

}  // extern "C"