61 lines
2.0 KiB
Python
61 lines
2.0 KiB
Python
# Copyright 2023 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"])
|
|
|
|
package(default_visibility = ["//visibility:private"])
|
|
|
|
cc_library(
|
|
name = "packet_processor",
|
|
hdrs = ["packet_processor.h"],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
deps = [
|
|
"//mediapipe/framework:calculator_contract",
|
|
"//mediapipe/framework:collection_item_id",
|
|
"//mediapipe/framework:packet",
|
|
"//mediapipe/framework/port:logging",
|
|
"//mediapipe/framework/port:ret_check",
|
|
"//mediapipe/framework/port:status",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "graph_processor",
|
|
srcs = ["graph_processor.cc"],
|
|
hdrs = ["graph_processor.h"],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
deps = [
|
|
":packet_processor",
|
|
"//mediapipe/framework:calculator_framework",
|
|
"//mediapipe/framework:collection_item_id",
|
|
"//mediapipe/framework:input_stream_shard",
|
|
"//mediapipe/framework:output_stream_shard",
|
|
"//mediapipe/framework:validated_graph_config",
|
|
"//mediapipe/framework/api2:node",
|
|
"//mediapipe/framework/api2:packet",
|
|
"//mediapipe/framework/port:integral_types",
|
|
"//mediapipe/framework/port:logging",
|
|
"//mediapipe/framework/port:ret_check",
|
|
"//mediapipe/framework/port:status",
|
|
"//mediapipe/framework/stream_handler:immediate_input_stream_handler",
|
|
"@com_google_absl//absl/synchronization",
|
|
],
|
|
alwayslink = 1,
|
|
)
|