| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_ | 5 #ifndef MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_ |
| 6 #define MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_ | 6 #define MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 kRembBitrate, | 28 kRembBitrate, |
| 29 // TODO(imcheng): k{Audio,Video}AckSent may need to be FrameEvents | 29 // TODO(imcheng): k{Audio,Video}AckSent may need to be FrameEvents |
| 30 // (crbug.com/339590) | 30 // (crbug.com/339590) |
| 31 kAudioAckSent, | 31 kAudioAckSent, |
| 32 kVideoAckSent, | 32 kVideoAckSent, |
| 33 // Audio sender. | 33 // Audio sender. |
| 34 kAudioFrameReceived, | 34 kAudioFrameReceived, |
| 35 kAudioFrameCaptured, | 35 kAudioFrameCaptured, |
| 36 kAudioFrameEncoded, | 36 kAudioFrameEncoded, |
| 37 // Audio receiver. | 37 // Audio receiver. |
| 38 kAudioFrameDecoded, |
| 38 kAudioPlayoutDelay, | 39 kAudioPlayoutDelay, |
| 39 kAudioFrameDecoded, | |
| 40 // Video sender. | 40 // Video sender. |
| 41 kVideoFrameCaptured, | 41 kVideoFrameCaptured, |
| 42 kVideoFrameReceived, | 42 kVideoFrameReceived, |
| 43 kVideoFrameSentToEncoder, | 43 kVideoFrameSentToEncoder, |
| 44 kVideoFrameEncoded, | 44 kVideoFrameEncoded, |
| 45 // Video receiver. | 45 // Video receiver. |
| 46 kVideoFrameDecoded, | 46 kVideoFrameDecoded, |
| 47 kVideoRenderDelay, | 47 kVideoRenderDelay, |
| 48 // Send-side packet events. | 48 // Send-side packet events. |
| 49 kAudioPacketSentToPacer, | 49 kAudioPacketSentToPacer, |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 157 |
| 158 | 158 |
| 159 typedef std::map<CastLoggingEvent, FrameLogStats> FrameStatsMap; | 159 typedef std::map<CastLoggingEvent, FrameLogStats> FrameStatsMap; |
| 160 typedef std::map<CastLoggingEvent, PacketLogStats> PacketStatsMap; | 160 typedef std::map<CastLoggingEvent, PacketLogStats> PacketStatsMap; |
| 161 typedef std::map<CastLoggingEvent, GenericLogStats> GenericStatsMap; | 161 typedef std::map<CastLoggingEvent, GenericLogStats> GenericStatsMap; |
| 162 | 162 |
| 163 } // namespace cast | 163 } // namespace cast |
| 164 } // namespace media | 164 } // namespace media |
| 165 | 165 |
| 166 #endif // MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_ | 166 #endif // MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_ |
| OLD | NEW |