
This CL introduces a new rtp_generator tool that can be utilized to generate .rtpdump files that can be replayed by the video_replayer. This allows automated generation of corpus material for the new WebRTC RTP fuzzers in addition to allowing anyone who is experimenting with a new RTP feature to quickly debug issues. It can be used as follows: ./rtp_generator --input_config=./rtc_tools/rtp_generator/configs/vp8.json --output_rtpdump=/tmp/vp8.rtpdump ./video_replay --config_file test/fuzzers/configs/replay_packet_fuzzer/vp8_config.json --input_file /tmp/vp8.rtpdump It works by generating squares randomly on the screen for a given duration. This initial version is very limited and doesn't support FEC, RED and other configurations. I plan to extend it to support these in future CLs. Bug: webrtc:10117 Change-Id: I31d3dbb6fad73c727145ead4e7d085113d11fc51 Reviewed-on: https://webrtc-review.googlesource.com/c/119964 Commit-Queue: Benjamin Wright <benwright@webrtc.org> Reviewed-by: Fredrik Solenberg <solenberg@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26517}
22 lines
506 B
Python
22 lines
506 B
Python
include_rules = [
|
|
"+call",
|
|
"+common_audio",
|
|
"+common_video",
|
|
"+logging/rtc_event_log",
|
|
"+media",
|
|
"+modules/audio_device",
|
|
"+modules/audio_coding/audio_network_adaptor",
|
|
"+modules/audio_coding/neteq/include",
|
|
"+modules/audio_coding/neteq/tools",
|
|
"+modules/audio_processing",
|
|
"+modules/bitrate_controller",
|
|
"+modules/remote_bitrate_estimator",
|
|
"+modules/congestion_controller",
|
|
"+modules/pacing",
|
|
"+modules/rtp_rtcp",
|
|
"+system_wrappers",
|
|
"+p2p",
|
|
"+third_party/libyuv",
|
|
]
|
|
|