/* * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #include "logging/rtc_event_log/encoder/blob_encoding.h" #include <cstddef> #include <cstdint> #include <string> #include <tuple> #include <vector> #include "absl/strings/string_view.h" #include "logging/rtc_event_log/encoder/var_int.h" #include "rtc_base/checks.h" #include "rtc_base/logging.h" namespace webrtc { std::string EncodeBlobs(const std::vector<std::string>& blobs) { … } std::vector<absl::string_view> DecodeBlobs(absl::string_view encoded_blobs, size_t num_of_blobs) { … } } // namespace webrtc