mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00

- Make rtp_analyzer work with a single SSRC - Simplify rtp_analyzer.sh (it allows to run the python script from any directory) - Update README.md (simplified, added missing dependency) Bug: webrtc:10829 Change-Id: Idb82e7228918a973778762a39b732ce3b26b6bbc Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/146711 Reviewed-by: Artem Titov <titovartem@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Alessio Bazzica <alessiob@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28668}
10 lines
497 B
Bash
Executable file
10 lines
497 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
BASE_DIR=`dirname $0`
|
|
python "${BASE_DIR}/rtp_analyzer.py" $@ --working_dir $BASE_DIR
|