| /* |
| * Copyright (c) 2023, Alliance for Open Media. All rights reserved |
| * |
| * This source code is subject to the terms of the BSD 3-Clause Clear License |
| * and the Alliance for Open Media Patent License 1.0. If the BSD 3-Clause Clear |
| * License was not distributed with this source code in the LICENSE file, you |
| * can obtain it at www.aomedia.org/license/software-license/bsd-3-c-c. If the |
| * Alliance for Open Media Patent License 1.0 was not distributed with this |
| * source code in the PATENTS file, you can obtain it at |
| * www.aomedia.org/license/patent. |
| */ |
| #include "iamf/cli/iamf_components.h" |
| |
| #include <filesystem> |
| #include <memory> |
| #include <string> |
| #include <vector> |
| |
| #include "absl/log/log.h" |
| #include "absl/strings/str_cat.h" |
| #include "absl/strings/string_view.h" |
| #include "iamf/cli/loudness_calculator_factory_base.h" |
| #include "iamf/cli/obu_sequencer_base.h" |
| #include "iamf/cli/obu_sequencer_iamf.h" |
| #include "iamf/cli/proto/test_vector_metadata.pb.h" |
| #include "iamf/cli/proto/user_metadata.pb.h" |
| #include "iamf/cli/proto_conversion/proto_utils.h" |
| #include "iamf/cli/renderer_factory.h" |
| |
| namespace iamf_tools { |
| |
| namespace { |
| |
| constexpr absl::string_view kOmitIamfFile = ""; |
| |
| } |
| |
| std::unique_ptr<RendererFactoryBase> CreateRendererFactory() { |
| // Skip rendering. |
| return nullptr; |
| } |
| |
| std::unique_ptr<LoudnessCalculatorFactoryBase> |
| CreateLoudnessCalculatorFactory() { |
| // Skip loudness calculation. |
| return nullptr; |
| } |
| |
| std::vector<std::unique_ptr<ObuSequencerBase>> CreateObuSequencers( |
| const iamf_tools_cli_proto::UserMetadata& user_metadata, |
| const std::string& output_iamf_directory, |
| const bool include_temporal_delimiters) { |
| const auto leb_generator = |
| CreateLebGenerator(user_metadata.test_vector_metadata().leb_generator()); |
| if (leb_generator == nullptr) { |
| LOG(ERROR) << "Failed to create LebGenerator."; |
| return {}; |
| } |
| |
| std::vector<std::unique_ptr<ObuSequencerBase>> obu_sequencers; |
| const std::string& prefix = |
| user_metadata.test_vector_metadata().file_name_prefix(); |
| |
| // Create an OBU sequencer that writes to a standalone IAMF file. |
| const std::string iamf_filename = |
| prefix.empty() ? std::string(kOmitIamfFile) |
| : (std::filesystem::path(output_iamf_directory) / |
| std::filesystem::path(absl::StrCat(prefix, ".iamf"))) |
| .string(); |
| obu_sequencers.emplace_back(std::make_unique<ObuSequencerIamf>( |
| iamf_filename, include_temporal_delimiters, *leb_generator)); |
| |
| return obu_sequencers; |
| } |
| |
| } // namespace iamf_tools |