Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Side by Side Diff: webrtc/modules/video_coding/test/plotReceiveTrace.m

Issue 1417283007: modules/video_coding refactorings (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix the other copy of the mock include header Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 function [t, TS] = plotReceiveTrace(filename, flat) 1 function [t, TS] = plotReceiveTrace(filename, flat)
2 fid=fopen(filename); 2 fid=fopen(filename);
3 %DEBUG ; ( 8:32:33:375 | 0) VIDEO:1 ; 5260; First pa cket of frame 1869537938 3 %DEBUG ; ( 8:32:33:375 | 0) VIDEO:1 ; 5260; First pa cket of frame 1869537938
4 %DEBUG ; ( 8:32:33:375 | 0) VIDEO CODING:1 ; 5260; Decoding timestamp 1869534934 4 %DEBUG ; ( 8:32:33:375 | 0) VIDEO CODING:1 ; 5260; Decoding timestamp 1869534934
5 %DEBUG ; ( 8:32:33:375 | 0) VIDEO:1 ; 5260; Render f rame 1869534934 at 20772610 5 %DEBUG ; ( 8:32:33:375 | 0) VIDEO:1 ; 5260; Render f rame 1869534934 at 20772610
6 %DEBUG ; ( 8:32:33:375 | 0) VIDEO CODING:-1 ; 5260; Frame de coded: timeStamp=1870511259 decTime=0 maxDecTime=0, at 19965 6 %DEBUG ; ( 8:32:33:375 | 0) VIDEO CODING:-1 ; 5260; Frame de coded: timeStamp=1870511259 decTime=0 maxDecTime=0, at 19965
7 %DEBUG ; ( 7:59:42:500 | 0) VIDEO:-1 ; 2500; Received complete frame timestamp 1870514263 frame type 1 frame size 7862 at time 19965, jitter estimate was 130 7 %DEBUG ; ( 7:59:42:500 | 0) VIDEO:-1 ; 2500; Received complete frame timestamp 1870514263 frame type 1 frame size 7862 at time 19965, jitter estimate was 130
8 %DEBUG ; ( 8: 5:51:774 | 0) VIDEO:-1 ; 3968; Extrapol ateLocalTime(1870967878)=24971 ms 8 %DEBUG ; ( 8: 5:51:774 | 0) VIDEO:-1 ; 3968; Extrapol ateLocalTime(1870967878)=24971 ms
9 9
10 if nargin == 1 10 if nargin == 1
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 targetDelay = max(renderTime(:, 3) + renderTime(:, 4) + renderTime(:, 5), re nderTime(:, 6)); 204 targetDelay = max(renderTime(:, 3) + renderTime(:, 4) + renderTime(:, 5), re nderTime(:, 6));
205 plot(renderTime(:, 1) - firstTime, renderTime(:, 3), 'r-'); 205 plot(renderTime(:, 1) - firstTime, renderTime(:, 3), 'r-');
206 plot(renderTime(:, 1) - firstTime, renderTime(:, 4), 'b-'); 206 plot(renderTime(:, 1) - firstTime, renderTime(:, 4), 'b-');
207 plot(renderTime(:, 1) - firstTime, renderTime(:, 5), 'g-'); 207 plot(renderTime(:, 1) - firstTime, renderTime(:, 5), 'g-');
208 plot(renderTime(:, 1) - firstTime, renderTime(:, 6), 'k-'); 208 plot(renderTime(:, 1) - firstTime, renderTime(:, 6), 'k-');
209 plot(renderTime(:, 1) - firstTime, targetDelay, 'c-'); 209 plot(renderTime(:, 1) - firstTime, targetDelay, 'c-');
210 xlabel('RTP timestamp'); 210 xlabel('RTP timestamp');
211 ylabel('Time (ms)'); 211 ylabel('Time (ms)');
212 legend('Render delay', 'Jitter delay', 'Decode delay', 'Extra delay', 'Min t otal delay'); 212 legend('Render delay', 'Jitter delay', 'Decode delay', 'Extra delay', 'Min t otal delay');
213 end 213 end
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/test/plotJitterEstimate.m ('k') | webrtc/modules/video_coding/test/plotTimingTest.m » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698