Chromium Code Reviews| Index: media/base/pipeline.h |
| =================================================================== |
| --- media/base/pipeline.h (revision 90373) |
| +++ media/base/pipeline.h (working copy) |
| @@ -21,6 +21,8 @@ |
| namespace media { |
| +static const char kRawVideoScheme[] = "media"; |
|
scherkus (not reviewing)
2011/06/24 21:33:39
constants should be initialized inside .cc files
acolwell GONE FROM CHROMIUM
2011/06/24 22:53:43
You should use an x- prefix for a private scheme.
Ronghua
2011/06/27 22:34:51
Done.
|
| + |
| struct PipelineStatistics { |
| PipelineStatistics() : |
| audio_bytes_decoded(0), |
| @@ -29,8 +31,8 @@ |
| video_frames_dropped(0) { |
| } |
| - uint32 audio_bytes_decoded; // Should be uint64? |
| - uint32 video_bytes_decoded; // Should be uint64? |
| + uint32 audio_bytes_decoded; // Should be uint64? |
| + uint32 video_bytes_decoded; // Should be uint64? |
| uint32 video_frames_decoded; |
| uint32 video_frames_dropped; |
| }; |