aboutsummaryrefslogtreecommitdiff
path: root/src/libgav1_decoder.cmake
blob: 1314d0b231f010ee41c50884124023c27101e0d8 (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
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
# 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.

if(LIBGAV1_SRC_LIBGAV1_DECODER_CMAKE_)
  return()
endif() # LIBGAV1_SRC_LIBGAV1_DECODER_CMAKE_
set(LIBGAV1_SRC_LIBGAV1_DECODER_CMAKE_ 1)

list(APPEND libgav1_decoder_sources
            "${libgav1_source}/buffer_pool.cc"
            "${libgav1_source}/buffer_pool.h"
            "${libgav1_source}/decoder_impl.cc"
            "${libgav1_source}/decoder_impl.h"
            "${libgav1_source}/decoder_state.h"
            "${libgav1_source}/tile_scratch_buffer.cc"
            "${libgav1_source}/tile_scratch_buffer.h"
            "${libgav1_source}/film_grain.cc"
            "${libgav1_source}/film_grain.h"
            "${libgav1_source}/frame_buffer.cc"
            "${libgav1_source}/frame_buffer_utils.h"
            "${libgav1_source}/frame_scratch_buffer.h"
            "${libgav1_source}/inter_intra_masks.inc"
            "${libgav1_source}/internal_frame_buffer_list.cc"
            "${libgav1_source}/internal_frame_buffer_list.h"
            "${libgav1_source}/loop_restoration_info.cc"
            "${libgav1_source}/loop_restoration_info.h"
            "${libgav1_source}/motion_vector.cc"
            "${libgav1_source}/motion_vector.h"
            "${libgav1_source}/obu_parser.cc"
            "${libgav1_source}/obu_parser.h"
            "${libgav1_source}/post_filter/cdef.cc"
            "${libgav1_source}/post_filter/deblock.cc"
            "${libgav1_source}/post_filter/deblock_thresholds.inc"
            "${libgav1_source}/post_filter/loop_restoration.cc"
            "${libgav1_source}/post_filter/post_filter.cc"
            "${libgav1_source}/post_filter/super_res.cc"
            "${libgav1_source}/post_filter.h"
            "${libgav1_source}/prediction_mask.cc"
            "${libgav1_source}/prediction_mask.h"
            "${libgav1_source}/quantizer.cc"
            "${libgav1_source}/quantizer.h"
            "${libgav1_source}/quantizer_tables.inc"
            "${libgav1_source}/reconstruction.cc"
            "${libgav1_source}/reconstruction.h"
            "${libgav1_source}/residual_buffer_pool.cc"
            "${libgav1_source}/residual_buffer_pool.h"
            "${libgav1_source}/scan_tables.inc"
            "${libgav1_source}/symbol_decoder_context.cc"
            "${libgav1_source}/symbol_decoder_context.h"
            "${libgav1_source}/symbol_decoder_context_cdfs.inc"
            "${libgav1_source}/threading_strategy.cc"
            "${libgav1_source}/threading_strategy.h"
            "${libgav1_source}/tile.h"
            "${libgav1_source}/tile/bitstream/mode_info.cc"
            "${libgav1_source}/tile/bitstream/palette.cc"
            "${libgav1_source}/tile/bitstream/partition.cc"
            "${libgav1_source}/tile/bitstream/transform_size.cc"
            "${libgav1_source}/tile/prediction.cc"
            "${libgav1_source}/tile/tile.cc"
            "${libgav1_source}/warp_prediction.cc"
            "${libgav1_source}/warp_prediction.h"
            "${libgav1_source}/yuv_buffer.cc"
            "${libgav1_source}/yuv_buffer.h")

list(APPEND libgav1_api_includes "${libgav1_source}/gav1/decoder.h"
            "${libgav1_source}/gav1/decoder_buffer.h"
            "${libgav1_source}/gav1/decoder_settings.h"
            "${libgav1_source}/gav1/frame_buffer.h"
            "${libgav1_source}/gav1/status_code.h"
            "${libgav1_source}/gav1/symbol_visibility.h"
            "${libgav1_source}/gav1/version.h")

list(APPEND libgav1_api_sources "${libgav1_source}/decoder.cc"
            "${libgav1_source}/decoder_settings.cc"
            "${libgav1_source}/status_code.cc"
            "${libgav1_source}/version.cc"
            ${libgav1_api_includes})

macro(libgav1_add_decoder_targets)
  if(BUILD_SHARED_LIBS)
    if(MSVC OR WIN32)
      # In order to produce a DLL and import library the Windows tools require
      # that the exported symbols are part of the DLL target. The unfortunate
      # side effect of this is that a single configuration cannot output both
      # the static library and the DLL: This results in an either/or situation.
      # Windows users of the libgav1 build can have a DLL and an import library,
      # or they can have a static library; they cannot have both from a single
      # configuration of the build.
      list(APPEND libgav1_shared_lib_sources ${libgav1_api_sources})
      list(APPEND libgav1_static_lib_sources ${libgav1_api_includes})
    else()
      list(APPEND libgav1_shared_lib_sources ${libgav1_api_includes})
      list(APPEND libgav1_static_lib_sources ${libgav1_api_sources})
    endif()
  else()
    list(APPEND libgav1_static_lib_sources ${libgav1_api_sources})
  endif()

  if(use_absl_threading)
    list(APPEND libgav1_absl_deps absl::base absl::synchronization)
  endif()

  libgav1_add_library(NAME libgav1_decoder TYPE OBJECT SOURCES
                      ${libgav1_decoder_sources} DEFINES ${libgav1_defines}
                      INCLUDES ${libgav1_include_paths})

  libgav1_add_library(NAME
                      libgav1_static
                      OUTPUT_NAME
                      libgav1
                      TYPE
                      STATIC
                      SOURCES
                      ${libgav1_static_lib_sources}
                      DEFINES
                      ${libgav1_defines}
                      INCLUDES
                      ${libgav1_include_paths}
                      LIB_DEPS
                      ${libgav1_absl_deps}
                      OBJLIB_DEPS
                      libgav1_dsp
                      libgav1_decoder
                      libgav1_utils
                      PUBLIC_INCLUDES
                      ${libgav1_source})

  if(BUILD_SHARED_LIBS)
    libgav1_add_library(NAME
                        libgav1_shared
                        OUTPUT_NAME
                        libgav1
                        TYPE
                        SHARED
                        SOURCES
                        ${libgav1_shared_lib_sources}
                        DEFINES
                        ${libgav1_defines}
                        INCLUDES
                        ${libgav1_include_paths}
                        LIB_DEPS
                        libgav1_static
                        PUBLIC_INCLUDES
                        ${libgav1_source})
  endif()
endmacro()