//Copyright (c) 2017 Facebook Inc. (Soumith Chintala), //All rights reserved. #ifndef PADDLEAUDIO_PYBIND_SOX_IO_H #define PADDLEAUDIO_PYBIND_SOX_IO_H #include "paddlespeech/audio/src/pybind/sox/utils.h" namespace paddleaudio { namespace sox_io { auto get_info_file(const std::string &path, const std::string &format) -> std::tuple; auto get_info_fileobj(py::object fileobj, const std::string &format) -> std::tuple; } // namespace paddleaudio } // namespace sox_io #endif