OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2004 Google Inc. | 3 * Copyright 2004 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 case MSG_VIDEOCAPTURESTATE: { | 543 case MSG_VIDEOCAPTURESTATE: { |
544 CaptureStateParams* data = | 544 CaptureStateParams* data = |
545 static_cast<CaptureStateParams*>(message->pdata); | 545 static_cast<CaptureStateParams*>(message->pdata); |
546 SignalVideoCaptureStateChange(data->capturer, data->state); | 546 SignalVideoCaptureStateChange(data->capturer, data->state); |
547 delete data; | 547 delete data; |
548 break; | 548 break; |
549 } | 549 } |
550 } | 550 } |
551 } | 551 } |
552 | 552 |
553 bool ChannelManager::StartAecDump(rtc::PlatformFile file, | 553 bool ChannelManager::StartAecDump(rtc::PlatformFile file) { |
554 int64_t max_size_bytes) { | 554 return worker_thread_->Invoke<bool>( |
555 return worker_thread_->Invoke<bool>(Bind(&MediaEngineInterface::StartAecDump, | 555 Bind(&MediaEngineInterface::StartAecDump, media_engine_.get(), file)); |
556 media_engine_.get(), file, | |
557 max_size_bytes)); | |
558 } | 556 } |
559 | 557 |
560 void ChannelManager::StopAecDump() { | 558 void ChannelManager::StopAecDump() { |
561 worker_thread_->Invoke<void>( | 559 worker_thread_->Invoke<void>( |
562 Bind(&MediaEngineInterface::StopAecDump, media_engine_.get())); | 560 Bind(&MediaEngineInterface::StopAecDump, media_engine_.get())); |
563 } | 561 } |
564 | 562 |
565 bool ChannelManager::StartRtcEventLog(rtc::PlatformFile file) { | 563 bool ChannelManager::StartRtcEventLog(rtc::PlatformFile file) { |
566 return worker_thread_->Invoke<bool>( | 564 return worker_thread_->Invoke<bool>( |
567 Bind(&MediaEngineInterface::StartRtcEventLog, media_engine_.get(), file)); | 565 Bind(&MediaEngineInterface::StartRtcEventLog, media_engine_.get(), file)); |
568 } | 566 } |
569 | 567 |
570 void ChannelManager::StopRtcEventLog() { | 568 void ChannelManager::StopRtcEventLog() { |
571 worker_thread_->Invoke<void>( | 569 worker_thread_->Invoke<void>( |
572 Bind(&MediaEngineInterface::StopRtcEventLog, media_engine_.get())); | 570 Bind(&MediaEngineInterface::StopRtcEventLog, media_engine_.get())); |
573 } | 571 } |
574 | 572 |
575 } // namespace cricket | 573 } // namespace cricket |
OLD | NEW |