# Copyright 2019 The MediaPipe 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.

licenses(["notice"])  # Apache 2.0

package(default_visibility = ["//visibility:public"])

cc_library(
    name = "yt8m_feature_extraction_calculators",
    deps = [
        "//mediapipe/calculators/audio:audio_decoder_calculator",
        "//mediapipe/calculators/audio:basic_time_series_calculators",
        "//mediapipe/calculators/audio:mfcc_mel_calculators",
        "//mediapipe/calculators/audio:rational_factor_resample_calculator",
        "//mediapipe/calculators/audio:spectrogram_calculator",
        "//mediapipe/calculators/audio:stabilized_log_calculator",
        "//mediapipe/calculators/audio:time_series_framer_calculator",
        "//mediapipe/calculators/core:add_header_calculator",
        "//mediapipe/calculators/core:matrix_multiply_calculator",
        "//mediapipe/calculators/core:matrix_subtract_calculator",
        "//mediapipe/calculators/core:matrix_to_vector_calculator",
        "//mediapipe/calculators/core:packet_cloner_calculator",
        "//mediapipe/calculators/core:packet_resampler_calculator",
        "//mediapipe/calculators/tensorflow:image_frame_to_tensor_calculator",
        "//mediapipe/calculators/tensorflow:matrix_to_tensor_calculator",
        "//mediapipe/calculators/tensorflow:pack_media_sequence_calculator",
        "//mediapipe/calculators/tensorflow:string_to_sequence_example_calculator",
        "//mediapipe/calculators/tensorflow:tensor_squeeze_dimensions_calculator",
        "//mediapipe/calculators/tensorflow:tensor_to_matrix_calculator",
        "//mediapipe/calculators/tensorflow:tensorflow_inference_calculator",
        "//mediapipe/calculators/tensorflow:tensorflow_session_from_frozen_graph_calculator",
        "//mediapipe/calculators/tensorflow:unpack_media_sequence_calculator",
        "//mediapipe/calculators/video:opencv_video_decoder_calculator",
    ],
)
