| Index: media/base/pipeline_status.h
|
| diff --git a/media/base/pipeline_status.h b/media/base/pipeline_status.h
|
| index 15e5c9dd76ca5b8416d10f705ccf41be17749143..ac9de6d1a00f50abd3dd2e3a5e756e3fa449f14a 100644
|
| --- a/media/base/pipeline_status.h
|
| +++ b/media/base/pipeline_status.h
|
| @@ -44,13 +44,15 @@ struct PipelineStatistics {
|
| : audio_bytes_decoded(0),
|
| video_bytes_decoded(0),
|
| video_frames_decoded(0),
|
| - video_frames_dropped(0) {
|
| + video_frames_dropped(0),
|
| + total_frame_delay(0) {
|
| }
|
|
|
| uint32 audio_bytes_decoded; // Should be uint64?
|
| uint32 video_bytes_decoded; // Should be uint64?
|
| uint32 video_frames_decoded;
|
| uint32 video_frames_dropped;
|
| + double total_frame_delay;
|
| };
|
|
|
| // Used for updating pipeline statistics.
|
|
|