tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

echo_canceller3_config_json.h (1491B)


      1 /*
      2 *  Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
      3 *
      4 *  Use of this source code is governed by a BSD-style license
      5 *  that can be found in the LICENSE file in the root of the source
      6 *  tree. An additional intellectual property rights grant can be found
      7 *  in the file PATENTS.  All contributing project authors may
      8 *  be found in the AUTHORS file in the root of the source tree.
      9 */
     10 
     11 #ifndef MODULES_AUDIO_PROCESSING_TEST_ECHO_CANCELLER3_CONFIG_JSON_H_
     12 #define MODULES_AUDIO_PROCESSING_TEST_ECHO_CANCELLER3_CONFIG_JSON_H_
     13 
     14 #include <string>
     15 
     16 #include "absl/strings/string_view.h"
     17 #include "api/audio/echo_canceller3_config.h"
     18 
     19 namespace webrtc {
     20 // Parses a JSON-encoded string into an Aec3 config. Fields corresponds to
     21 // substruct names, with the addition that there must be a top-level node
     22 // "aec3". Produces default config values for anything that cannot be parsed
     23 // from the string. If any error was found in the parsing, parsing_successful is
     24 // set to false.
     25 void Aec3ConfigFromJsonString(absl::string_view json_string,
     26                              EchoCanceller3Config* config,
     27                              bool* parsing_successful);
     28 
     29 // Encodes an Aec3 config in JSON format. Fields corresponds to substruct names,
     30 // with the addition that the top-level node is named "aec3".
     31 std::string Aec3ConfigToJsonString(const EchoCanceller3Config& config);
     32 
     33 }  // namespace webrtc
     34 
     35 #endif  // MODULES_AUDIO_PROCESSING_TEST_ECHO_CANCELLER3_CONFIG_JSON_H_