mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 22:00:47 +01:00
![]() CL partially auto-generated with: git grep -l "\bassert(" | grep "\.[c|h]" | \ xargs sed -i 's/\bassert(/RTC_DCHECK(/g' And with: git grep -l "RTC_DCHECK(false)" | \ xargs sed -i 's/RTC_DCHECK(false)/RTC_NOTREACHED()/g' With some manual changes to include "rtc_base/checks.h" where needed. A follow-up CL will remove assert() from Obj-C code as well and remove the #include of <assert.h>. The choice to replace with RTC_DCHECK is because assert() is because RTC_DCHECK has similar behavior as assert() based on NDEBUG. This CL also contains manual changes to switch from basic RTC_DCHECK to other (preferred) versions like RTC_DCHECK_GT (and similar). Bug: webrtc:6779 Change-Id: I00bed8886e03d685a2f42324e34aef2c9b7a63b0 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/224846 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#34442} |
||
---|---|---|
.. | ||
audio_checksum.h | ||
audio_loop.cc | ||
audio_loop.h | ||
audio_sink.cc | ||
audio_sink.h | ||
constant_pcm_packet_source.cc | ||
constant_pcm_packet_source.h | ||
DEPS | ||
encode_neteq_input.cc | ||
encode_neteq_input.h | ||
fake_decode_from_file.cc | ||
fake_decode_from_file.h | ||
initial_packet_inserter_neteq_input.cc | ||
initial_packet_inserter_neteq_input.h | ||
input_audio_file.cc | ||
input_audio_file.h | ||
input_audio_file_unittest.cc | ||
neteq_delay_analyzer.cc | ||
neteq_delay_analyzer.h | ||
neteq_event_log_input.cc | ||
neteq_event_log_input.h | ||
neteq_input.cc | ||
neteq_input.h | ||
neteq_packet_source_input.cc | ||
neteq_packet_source_input.h | ||
neteq_performance_test.cc | ||
neteq_performance_test.h | ||
neteq_quality_test.cc | ||
neteq_quality_test.h | ||
neteq_replacement_input.cc | ||
neteq_replacement_input.h | ||
neteq_rtpplay.cc | ||
neteq_rtpplay_test.sh | ||
neteq_stats_getter.cc | ||
neteq_stats_getter.h | ||
neteq_stats_plotter.cc | ||
neteq_stats_plotter.h | ||
neteq_test.cc | ||
neteq_test.h | ||
neteq_test_factory.cc | ||
neteq_test_factory.h | ||
output_audio_file.h | ||
output_wav_file.h | ||
packet.cc | ||
packet.h | ||
packet_source.cc | ||
packet_source.h | ||
packet_unittest.cc | ||
README.md | ||
resample_input_audio_file.cc | ||
resample_input_audio_file.h | ||
rtc_event_log_source.cc | ||
rtc_event_log_source.h | ||
rtp_analyze.cc | ||
rtp_encode.cc | ||
rtp_file_source.cc | ||
rtp_file_source.h | ||
rtp_generator.cc | ||
rtp_generator.h | ||
rtp_jitter.cc | ||
rtpcat.cc |
NetEQ RTP Play tool
Testing of the command line arguments
The command line tool neteq_rtpplay
can be tested by running neteq_rtpplay_test.sh
, which is not use on try bots, but it can be used before submitting any CLs that may break the behavior of the command line arguments of neteq_rtpplay
.
Run neteq_rtpplay_test.sh
as follows from the src/
folder:
src$ ./modules/audio_coding/neteq/tools/neteq_rtpplay_test.sh \
out/Default/neteq_rtpplay \
resources/audio_coding/neteq_opus.rtp \
resources/short_mixed_mono_48.pcm
You can replace the RTP and PCM files with any other compatible files.
If you get an error using the files indicated above, try running gclient sync
.
Requirements: awk
and md5sum
.