#ifndef MODULES_AUDIO_CODING_NETEQ_TOOLS_NETEQ_RTP_DUMP_INPUT_H_
#define MODULES_AUDIO_CODING_NETEQ_TOOLS_NETEQ_RTP_DUMP_INPUT_H_
#include <map>
#include <memory>
#include "absl/strings/string_view.h"
#include "absl/types/optional.h"
#include "modules/audio_coding/neteq/tools/neteq_input.h"
#include "modules/rtp_rtcp/include/rtp_rtcp_defines.h"
namespace webrtc {
namespace test {
std::unique_ptr<NetEqInput> CreateNetEqRtpDumpInput(
absl::string_view file_name,
const std::map<int, RTPExtensionType>& hdr_ext_map,
absl::optional<uint32_t> ssrc_filter);
}
}
#endif