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

Unified Diff: media/base/message_loop_factory.cc

Issue 10915091: Combine audio decoding and video decoding onto a single thread. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 3 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
« no previous file with comments | « media/base/message_loop_factory.h ('k') | media/filters/pipeline_integration_test_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/message_loop_factory.cc
diff --git a/media/base/message_loop_factory.cc b/media/base/message_loop_factory.cc
index 04a904a57a86089e531c4b1ef7bb2d9156c87962..da6cac66cc02d368f27d4cf031ce81286a58374e 100644
--- a/media/base/message_loop_factory.cc
+++ b/media/base/message_loop_factory.cc
@@ -34,14 +34,11 @@ base::Thread* MessageLoopFactory::GetThread(Type type) {
const char* name = NULL;
switch (type) {
- case kAudioDecoder:
- name = "AudioDecoderThread";
- break;
- case kVideoDecoder:
- name = "VideoDecoderThread";
+ case kDecoder:
+ name = "MediaDecoder";
break;
case kPipeline:
- name = "PipelineThread";
+ name = "MediaPipeline";
break;
}
« no previous file with comments | « media/base/message_loop_factory.h ('k') | media/filters/pipeline_integration_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698