Chromium Code Reviews| Index: media/base/pipeline.h |
| =================================================================== |
| --- media/base/pipeline.h (revision 90607) |
| +++ media/base/pipeline.h (working copy) |
| @@ -21,6 +21,8 @@ |
| namespace media { |
| +static const char kRawMediaScheme[] = "x-raw-media"; |
|
scherkus (not reviewing)
2011/06/29 00:39:28
please initialize this in the .cc
.h should have:
Ronghua
2011/06/29 20:36:39
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; |
| }; |