chromium/third_party/mediapipe/src/mediapipe/framework/output_stream_handler.cc

// 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.

#include "mediapipe/framework/output_stream_handler.h"

#include "absl/log/absl_check.h"
#include "absl/synchronization/mutex.h"
#include "mediapipe/framework/collection_item_id.h"
#include "mediapipe/framework/output_stream_shard.h"

namespace mediapipe {

absl::Status OutputStreamHandler::InitializeOutputStreamManagers(
    OutputStreamManager* flat_output_stream_managers) {}

absl::Status OutputStreamHandler::SetupOutputShards(
    OutputStreamShardSet* output_shards) {}

void OutputStreamHandler::PrepareForRun(
    const std::function<void(absl::Status)>& error_callback) {}

void OutputStreamHandler::Open(OutputStreamShardSet* output_shards) {}

void OutputStreamHandler::PrepareOutputs(Timestamp input_timestamp,
                                         OutputStreamShardSet* output_shards) {}

void OutputStreamHandler::UpdateTaskTimestampBound(Timestamp timestamp) {}

void OutputStreamHandler::PostProcess(Timestamp input_timestamp) {}

std::string OutputStreamHandler::FirstStreamName() const {}

void OutputStreamHandler::TryPropagateTimestampBound(Timestamp input_bound) {}

void OutputStreamHandler::Close(OutputStreamShardSet* output_shards) {}

void OutputStreamHandler::PropagateOutputPackets(
    Timestamp input_timestamp, OutputStreamShardSet* output_shards) {}

}  // namespace mediapipe