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

Unified Diff: media/base/pipeline.h

Issue 7193001: Move rtc_video_decoder* from media/filter/ to content/renderer/media/. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 6 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 side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698