#include <stdio.h>
#include <map>
#include <memory>
#include <sstream>
#include "gflags/gflags.h"
#include "webrtc/base/checks.h"
#include "webrtc/call/call.h"
#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
#include "webrtc/logging/rtc_event_log/rtc_event_log.h"
#include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h"
#include "webrtc/system_wrappers/include/clock.h"
#include "webrtc/system_wrappers/include/sleep.h"
#include "webrtc/test/encoder_settings.h"
#include "webrtc/test/fake_decoder.h"
#include "webrtc/test/gtest.h"
#include "webrtc/test/null_transport.h"
#include "webrtc/test/rtp_file_reader.h"
#include "webrtc/test/run_loop.h"
#include "webrtc/test/run_test.h"
#include "webrtc/test/video_capturer.h"
#include "webrtc/test/video_renderer.h"
#include "webrtc/typedefs.h"
#include "webrtc/video_decoder.h"
|
| webrtc::flags::DEFINE_int32 (payload_type, 0, "Payload type") |
|
| webrtc::flags::DEFINE_uint64 (ssrc, 0, "Incoming SSRC") |
|
| webrtc::flags::DEFINE_int32 (red_payload_type, -1, "RED payload type") |
|
| webrtc::flags::DEFINE_int32 (fec_payload_type, -1, "ULPFEC payload type") |
|
| webrtc::flags::DEFINE_int32 (abs_send_time_id, -1, "RTP extension ID for abs-send-time") |
|
| webrtc::flags::DEFINE_int32 (transmission_offset_id, -1, "RTP extension ID for transmission-offset") |
|
bool | webrtc::flags::ValidateInputFilenameNotEmpty (const char *flagname, const std::string &string) |
|
| webrtc::flags::DEFINE_string (input_file, "", "input file") |
|
| webrtc::flags::DEFINE_string (out_base, "", "Basename (excluding .yuv) for raw output") |
|
| webrtc::flags::DEFINE_string (decoder_bitstream_filename, "", "Decoder bitstream output file") |
|
| webrtc::flags::DEFINE_string (codec, "VP8", "Video codec") |
|
void | webrtc::RtpReplay () |
|
int | main (int argc, char *argv[]) |
|
◆ main()
int main |
( |
int |
argc, |
|
|
char * |
argv[] |
|
) |
| |