mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00
![]() This CL adds ParseStatus/ParseStatusOr classes and returns those instead of CHECKing that the log is well formed. Some refactoring was required. We also add a allow_incomplete_logs parameter to the parser which by default is false. Setting it to true will make the parser log a warning but return success for errors that typically indicate that the log has been truncated. "Deeper" errors indicating log corruption still return an error. Bug: webrtc:11064 Change-Id: Id5bd6e321de07e250662ae3aaa5ef15f48db6d55 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/158746 Reviewed-by: Ivo Creusen <ivoc@webrtc.org> Reviewed-by: Sebastian Jansson <srte@webrtc.org> Commit-Queue: Björn Terelius <terelius@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29679} |
||
---|---|---|
.. | ||
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
.