| Index: webrtc/modules/video_coding/codecs/test/plot_webrtc_test_logs.py
|
| diff --git a/webrtc/modules/video_coding/codecs/test/plot_webrtc_test_logs.py b/webrtc/modules/video_coding/codecs/test/plot_webrtc_test_logs.py
|
| index 70b942d4572c345b69a78f629bc51deeaad8c84e..d598ffb66d84469b449f8f5f120e8d669141f608 100755
|
| --- a/webrtc/modules/video_coding/codecs/test/plot_webrtc_test_logs.py
|
| +++ b/webrtc/modules/video_coding/codecs/test/plot_webrtc_test_logs.py
|
| @@ -22,7 +22,7 @@ EVENT_START = 'RUN ] CodecSettings/PlotVideoProcessorIntegrationTest.'
|
| EVENT_END = 'OK ] CodecSettings/PlotVideoProcessorIntegrationTest.'
|
|
|
| # Metrics to plot, tuple: (name to parse in file, label to use when plotting).
|
| -BITRATE = ('Target Bitrate', 'target bitrate (kbps)')
|
| +BITRATE = ('Target bitrate', 'target bitrate (kbps)')
|
| WIDTH = ('Width', 'width')
|
| HEIGHT = ('Height', 'height')
|
| FILENAME = ('Filename', 'clip')
|
| @@ -30,18 +30,18 @@ CODEC_TYPE = ('Codec type', 'Codec')
|
| ENCODER_IMPLEMENTATION_NAME = ('Encoder implementation name', 'enc name')
|
| DECODER_IMPLEMENTATION_NAME = ('Decoder implementation name', 'dec name')
|
| CODEC_IMPLEMENTATION_NAME = ('Codec implementation name', 'codec name')
|
| -CORES = ('#CPU cores used', 'CPU cores used')
|
| +CORES = ('# CPU cores used', 'CPU cores used')
|
| DENOISING = ('Denoising', 'denoising')
|
| RESILIENCE = ('Resilience', 'resilience')
|
| ERROR_CONCEALMENT = ('Error concealment', 'error concealment')
|
| QP = ('Average QP', 'avg QP')
|
| PSNR = ('PSNR avg', 'PSNR (dB)')
|
| SSIM = ('SSIM avg', 'SSIM')
|
| -ENC_BITRATE = ('Encoding bitrate', 'encoded bitrate (kbps)')
|
| +ENC_BITRATE = ('Encoded bitrate', 'encoded bitrate (kbps)')
|
| FRAMERATE = ('Frame rate', 'fps')
|
| -NUM_FRAMES = ('Number of processed frames', 'num frames')
|
| -NUM_DROPPED_FRAMES = ('Number of dropped frames', 'num dropped frames')
|
| -NUM_FRAMES_TO_TARGET = ('Number of frames to approach target rate',
|
| +NUM_FRAMES = ('# processed frames', 'num frames')
|
| +NUM_DROPPED_FRAMES = ('# dropped frames', 'num dropped frames')
|
| +NUM_FRAMES_TO_TARGET = ('# frames to convergence',
|
| 'frames to reach target rate')
|
| ENCODE_TIME = ('Encoding time', 'encode time (us)')
|
| ENCODE_TIME_AVG = ('Encoding time', 'encode time (us) avg')
|
|
|