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

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: gah 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..177e5f83308ae7417f2be7022f31ba69fa1bcb5d 100644
--- a/media/base/message_loop_factory.cc
+++ b/media/base/message_loop_factory.cc
@@ -34,11 +34,8 @@ base::Thread* MessageLoopFactory::GetThread(Type type) {
const char* name = NULL;
switch (type) {
- case kAudioDecoder:
- name = "AudioDecoderThread";
- break;
- case kVideoDecoder:
- name = "VideoDecoderThread";
+ case kDecoder:
+ name = "DecoderThread";
Ami GONE FROM CHROMIUM 2012/09/06 08:39:40 optional: s/Decoder/MediaDecoder/ ? (no need for "
scherkus (not reviewing) 2012/09/06 09:02:41 Done + for pipeline as well
break;
case kPipeline:
name = "PipelineThread";
« 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