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

Side by Side Diff: media/cast/logging/logging_defines.h

Issue 225023010: [Cast] Refactor/clean-up VideoReceiver to match AudioReceiver as closely as possible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 months 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 | Annotate | Revision Log
« no previous file with comments | « media/cast/cast_receiver_impl.cc ('k') | media/cast/test/encode_decode_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « media/cast/cast_receiver_impl.cc ('k') | media/cast/test/encode_decode_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698