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

Unified Diff: media/base/filters.cc

Issue 4991003: Revert 66125 -- Broke Windows build - Move FilterType into MediaFilterCollect... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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
« no previous file with comments | « media/base/filters.h ('k') | media/base/media_filter_collection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/filters.cc
===================================================================
--- media/base/filters.cc (revision 66137)
+++ media/base/filters.cc (working copy)
@@ -93,6 +93,14 @@
return true;
}
+FilterType DataSource::filter_type() const {
+ return static_filter_type();
+}
+
+FilterType Demuxer::filter_type() const {
+ return static_filter_type();
+}
+
bool Demuxer::requires_message_loop() const {
return true;
}
@@ -101,6 +109,10 @@
return "DemuxerThread";
}
+FilterType AudioDecoder::filter_type() const {
+ return static_filter_type();
+}
+
const char* AudioDecoder::major_mime_type() const {
return mime_type::kMajorTypeAudio;
}
@@ -113,10 +125,18 @@
return "AudioDecoderThread";
}
+FilterType AudioRenderer::filter_type() const {
+ return static_filter_type();
+}
+
const char* AudioRenderer::major_mime_type() const {
return mime_type::kMajorTypeAudio;
}
+FilterType VideoDecoder::filter_type() const {
+ return static_filter_type();
+}
+
const char* VideoDecoder::major_mime_type() const {
return mime_type::kMajorTypeVideo;
}
@@ -129,6 +149,10 @@
return "VideoDecoderThread";
}
+FilterType VideoRenderer::filter_type() const {
+ return static_filter_type();
+}
+
const char* VideoRenderer::major_mime_type() const {
return mime_type::kMajorTypeVideo;
}
« no previous file with comments | « media/base/filters.h ('k') | media/base/media_filter_collection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698