blob: 23c81187a6afb91b6054b668545b3ff64723cbf9 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/renderer_host/media/video_capture_manager.h"
#include <algorithm>
#include <set>
#include <utility>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/command_line.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/metrics/histogram_macros.h"
#include "base/single_thread_task_runner.h"
#include "base/stl_util.h"
#include "base/strings/stringprintf.h"
#include "base/task_runner_util.h"
#include "base/threading/sequenced_worker_pool.h"
#include "base/threading/thread_task_runner_handle.h"
#include "build/build_config.h"
#include "content/browser/media/capture/desktop_capture_device_uma_types.h"
#include "content/browser/media/capture/web_contents_video_capture_device.h"
#include "content/browser/media/media_internals.h"
#include "content/browser/renderer_host/media/video_capture_controller.h"
#include "content/browser/renderer_host/media/video_capture_controller_event_handler.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/desktop_media_id.h"
#include "content/public/common/media_stream_request.h"
#include "media/base/bind_to_current_loop.h"
#include "media/base/media_switches.h"
#include "media/capture/video/video_capture_device.h"
#include "media/capture/video/video_capture_device_factory.h"
#if defined(ENABLE_SCREEN_CAPTURE)
#include "content/browser/media/capture/desktop_capture_device.h"
#if defined(USE_AURA)
#include "content/browser/media/capture/desktop_capture_device_aura.h"
#endif
#endif
#if defined(OS_MACOSX)
#include "media/base/mac/avfoundation_glue.h"
#endif
namespace {
// Compares two VideoCaptureFormat by checking smallest frame_size area, then
// by _largest_ frame_rate. Used to order a VideoCaptureFormats vector so that
// the first entry for a given resolution has the largest frame rate, as needed
// by the ConsolidateCaptureFormats() method.
bool IsCaptureFormatSmaller(const media::VideoCaptureFormat& format1,
const media::VideoCaptureFormat& format2) {
DCHECK(format1.frame_size.GetCheckedArea().IsValid());
DCHECK(format2.frame_size.GetCheckedArea().IsValid());
if (format1.frame_size.GetCheckedArea().ValueOrDefault(0) ==
format2.frame_size.GetCheckedArea().ValueOrDefault(0)) {
return format1.frame_rate > format2.frame_rate;
}
return format1.frame_size.GetCheckedArea().ValueOrDefault(0) <
format2.frame_size.GetCheckedArea().ValueOrDefault(0);
}
bool IsCaptureFormatSizeEqual(const media::VideoCaptureFormat& format1,
const media::VideoCaptureFormat& format2) {
DCHECK(format1.frame_size.GetCheckedArea().IsValid());
DCHECK(format2.frame_size.GetCheckedArea().IsValid());
return format1.frame_size.GetCheckedArea().ValueOrDefault(0) ==
format2.frame_size.GetCheckedArea().ValueOrDefault(0);
}
// This function receives a list of capture formats, removes duplicated
// resolutions while keeping the highest frame rate for each, and forcing I420
// pixel format.
void ConsolidateCaptureFormats(media::VideoCaptureFormats* formats) {
if (formats->empty())
return;
std::sort(formats->begin(), formats->end(), IsCaptureFormatSmaller);
// Due to the ordering imposed, the largest frame_rate is kept while removing
// duplicated resolutions.
media::VideoCaptureFormats::iterator last =
std::unique(formats->begin(), formats->end(), IsCaptureFormatSizeEqual);
formats->erase(last, formats->end());
// Mark all formats as I420, since this is what the renderer side will get
// anyhow: the actual pixel format is decided at the device level.
for (media::VideoCaptureFormats::iterator it = formats->begin();
it != formats->end(); ++it) {
it->pixel_format = media::PIXEL_FORMAT_I420;
}
}
// The maximum number of buffers in the capture pipeline. See
// VideoCaptureController ctor comments for more details.
const int kMaxNumberOfBuffers = 3;
// TODO(miu): The value for tab capture should be determined programmatically.
// http://crbug.com/460318
const int kMaxNumberOfBuffersForTabCapture = 10;
// Used for logging capture events.
// Elements in this enum should not be deleted or rearranged; the only
// permitted operation is to add new elements before NUM_VIDEO_CAPTURE_EVENT.
enum VideoCaptureEvent {
VIDEO_CAPTURE_START_CAPTURE = 0,
VIDEO_CAPTURE_STOP_CAPTURE_OK = 1,
VIDEO_CAPTURE_STOP_CAPTURE_DUE_TO_ERROR = 2,
VIDEO_CAPTURE_STOP_CAPTURE_OK_NO_FRAMES_PRODUCED_BY_DEVICE = 3,
VIDEO_CAPTURE_STOP_CAPTURE_OK_NO_FRAMES_PRODUCED_BY_DESKTOP_OR_TAB = 4,
NUM_VIDEO_CAPTURE_EVENT
};
void LogVideoCaptureEvent(VideoCaptureEvent event) {
UMA_HISTOGRAM_ENUMERATION("Media.VideoCaptureManager.Event",
event,
NUM_VIDEO_CAPTURE_EVENT);
}
// Counter used for identifying a DeviceRequest to start a capture device.
static int g_device_start_id = 0;
const media::VideoCaptureSessionId kFakeSessionId = -1;
} // namespace
namespace content {
// This class owns a pair VideoCaptureDevice - VideoCaptureController.
// VideoCaptureManager owns all such pairs and is responsible for deleting the
// instances when they are not used any longer.
class VideoCaptureManager::DeviceEntry {
public:
DeviceEntry(MediaStreamType stream_type,
const std::string& id,
std::unique_ptr<VideoCaptureController> controller,
const media::VideoCaptureParams& params);
~DeviceEntry();
const int serial_id;
const MediaStreamType stream_type;
const std::string id;
const media::VideoCaptureParams parameters;
VideoCaptureController* video_capture_controller() const;
media::VideoCaptureDevice* video_capture_device() const;
void SetVideoCaptureDevice(std::unique_ptr<VideoCaptureDevice> device);
std::unique_ptr<VideoCaptureDevice> ReleaseVideoCaptureDevice();
private:
const std::unique_ptr<VideoCaptureController> video_capture_controller_;
std::unique_ptr<VideoCaptureDevice> video_capture_device_;
base::ThreadChecker thread_checker_;
};
// Class used for queuing request for starting a device.
class VideoCaptureManager::CaptureDeviceStartRequest {
public:
CaptureDeviceStartRequest(int serial_id,
media::VideoCaptureSessionId session_id,
const media::VideoCaptureParams& params);
int serial_id() const { return serial_id_; }
media::VideoCaptureSessionId session_id() const { return session_id_; }
media::VideoCaptureParams params() const { return params_; }
// Set to true if the device should be stopped before it has successfully
// been started.
bool abort_start() const { return abort_start_; }
void set_abort_start() { abort_start_ = true; }
private:
const int serial_id_;
const media::VideoCaptureSessionId session_id_;
const media::VideoCaptureParams params_;
// Set to true if the device should be stopped before it has successfully
// been started.
bool abort_start_;
};
VideoCaptureManager::DeviceEntry::DeviceEntry(
MediaStreamType stream_type,
const std::string& id,
std::unique_ptr<VideoCaptureController> controller,
const media::VideoCaptureParams& params)
: serial_id(g_device_start_id++),
stream_type(stream_type),
id(id),
parameters(params),
video_capture_controller_(std::move(controller)) {}
VideoCaptureManager::DeviceEntry::~DeviceEntry() {
DCHECK(thread_checker_.CalledOnValidThread());
// DCHECK that this DeviceEntry does not still own a
// media::VideoCaptureDevice. media::VideoCaptureDevice must be deleted on
// the device thread.
DCHECK(video_capture_device_ == nullptr);
}
void VideoCaptureManager::DeviceEntry::SetVideoCaptureDevice(
std::unique_ptr<VideoCaptureDevice> device) {
DCHECK(thread_checker_.CalledOnValidThread());
video_capture_device_.swap(device);
}
std::unique_ptr<media::VideoCaptureDevice>
VideoCaptureManager::DeviceEntry::ReleaseVideoCaptureDevice() {
DCHECK(thread_checker_.CalledOnValidThread());
return std::move(video_capture_device_);
}
VideoCaptureController*
VideoCaptureManager::DeviceEntry::video_capture_controller() const {
DCHECK(thread_checker_.CalledOnValidThread());
return video_capture_controller_.get();
}
media::VideoCaptureDevice*
VideoCaptureManager::DeviceEntry::video_capture_device() const {
DCHECK(thread_checker_.CalledOnValidThread());
return video_capture_device_.get();
}
VideoCaptureManager::CaptureDeviceStartRequest::CaptureDeviceStartRequest(
int serial_id,
media::VideoCaptureSessionId session_id,
const media::VideoCaptureParams& params)
: serial_id_(serial_id),
session_id_(session_id),
params_(params),
abort_start_(false) {
}
VideoCaptureManager::VideoCaptureManager(
std::unique_ptr<media::VideoCaptureDeviceFactory> factory)
: listener_(nullptr),
new_capture_session_id_(1),
video_capture_device_factory_(std::move(factory)) {}
VideoCaptureManager::~VideoCaptureManager() {
DCHECK(devices_.empty());
DCHECK(device_start_queue_.empty());
}
void VideoCaptureManager::Register(
MediaStreamProviderListener* listener,
const scoped_refptr<base::SingleThreadTaskRunner>& device_task_runner) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(!listener_);
DCHECK(!device_task_runner_.get());
listener_ = listener;
device_task_runner_ = device_task_runner;
#if defined(OS_ANDROID)
app_status_listener_.reset(new base::android::ApplicationStatusListener(
base::Bind(&VideoCaptureManager::OnApplicationStateChange,
base::Unretained(this))));
#endif
}
void VideoCaptureManager::Unregister() {
DCHECK(listener_);
listener_ = nullptr;
}
void VideoCaptureManager::EnumerateDevices(MediaStreamType stream_type) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DVLOG(1) << "VideoCaptureManager::EnumerateDevices, type " << stream_type;
DCHECK(listener_);
DCHECK_EQ(stream_type, MEDIA_DEVICE_VIDEO_CAPTURE);
#if defined(OS_MACOSX)
if (NeedToInitializeCaptureDeviceApi(stream_type)) {
InitializeCaptureDeviceApiOnUIThread(
base::Bind(&VideoCaptureManager::EnumerateDevices, this, stream_type));
return;
}
#endif
// Bind a callback to ConsolidateDevicesInfoOnDeviceThread() with an argument
// for another callback to OnDevicesInfoEnumerated() to be run in the current
// loop, i.e. IO loop. Pass a timer for UMA histogram collection.
base::Callback<void(std::unique_ptr<VideoCaptureDevice::Names>)>
devices_enumerated_callback = base::Bind(
&VideoCaptureManager::ConsolidateDevicesInfoOnDeviceThread, this,
media::BindToCurrentLoop(
base::Bind(&VideoCaptureManager::OnDevicesInfoEnumerated, this,
stream_type, base::Owned(new base::ElapsedTimer()))),
stream_type, devices_info_cache_);
// OK to use base::Unretained() since we own the VCDFactory and |this| is
// bound in |devices_enumerated_callback|.
device_task_runner_->PostTask(FROM_HERE,
base::Bind(&media::VideoCaptureDeviceFactory::EnumerateDeviceNames,
base::Unretained(video_capture_device_factory_.get()),
devices_enumerated_callback));
}
int VideoCaptureManager::Open(const StreamDeviceInfo& device_info) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(listener_);
// Generate a new id for the session being opened.
const media::VideoCaptureSessionId capture_session_id =
new_capture_session_id_++;
DCHECK(sessions_.find(capture_session_id) == sessions_.end());
DVLOG(1) << "VideoCaptureManager::Open, id " << capture_session_id;
// We just save the stream info for processing later.
sessions_[capture_session_id] = device_info.device;
// Notify our listener asynchronously; this ensures that we return
// |capture_session_id| to the caller of this function before using that same
// id in a listener event.
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::Bind(&VideoCaptureManager::OnOpened, this,
device_info.device.type, capture_session_id));
return capture_session_id;
}
void VideoCaptureManager::Close(int capture_session_id) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(listener_);
DVLOG(1) << "VideoCaptureManager::Close, id " << capture_session_id;
SessionMap::iterator session_it = sessions_.find(capture_session_id);
if (session_it == sessions_.end()) {
NOTREACHED();
return;
}
DeviceEntry* const existing_device = GetDeviceEntryForMediaStreamDevice(
session_it->second);
if (existing_device) {
// Remove any client that is still using the session. This is safe to call
// even if there are no clients using the session.
existing_device->video_capture_controller()
->StopSession(capture_session_id);
// StopSession() may have removed the last client, so we might need to
// close the device.
DestroyDeviceEntryIfNoClients(existing_device);
}
// Notify listeners asynchronously, and forget the session.
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::Bind(&VideoCaptureManager::OnClosed, this,
session_it->second.type, capture_session_id));
sessions_.erase(session_it);
}
void VideoCaptureManager::QueueStartDevice(
media::VideoCaptureSessionId session_id,
DeviceEntry* entry,
const media::VideoCaptureParams& params) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
device_start_queue_.push_back(
CaptureDeviceStartRequest(entry->serial_id, session_id, params));
if (device_start_queue_.size() == 1)
HandleQueuedStartRequest();
}
void VideoCaptureManager::DoStopDevice(DeviceEntry* entry) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(std::find(devices_.begin(), devices_.end(), entry) != devices_.end());
// Find the matching start request.
for (DeviceStartQueue::reverse_iterator request =
device_start_queue_.rbegin();
request != device_start_queue_.rend(); ++request) {
if (request->serial_id() == entry->serial_id) {
request->set_abort_start();
DVLOG(3) << "DoStopDevice, aborting start request for device "
<< entry->id << " serial_id = " << entry->serial_id;
return;
}
}
DVLOG(3) << "DoStopDevice. Send stop request for device = " << entry->id
<< " serial_id = " << entry->serial_id << ".";
entry->video_capture_controller()->DoLogOnIOThread(
base::StringPrintf("Stopping device: id: %s", entry->id.c_str()));
if (entry->video_capture_device()) {
// |entry->video_capture_device| can be null if creating the device fails.
device_task_runner_->PostTask(
FROM_HERE,
base::Bind(&VideoCaptureManager::DoStopDeviceOnDeviceThread, this,
base::Passed(entry->ReleaseVideoCaptureDevice())));
}
}
void VideoCaptureManager::HandleQueuedStartRequest() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
// Remove all start requests that have been aborted.
while (device_start_queue_.begin() != device_start_queue_.end() &&
device_start_queue_.begin()->abort_start()) {
device_start_queue_.pop_front();
}
DeviceStartQueue::iterator request = device_start_queue_.begin();
if (request == device_start_queue_.end())
return;
const int serial_id = request->serial_id();
DeviceEntries::iterator entry_it = std::find_if(
devices_.begin(), devices_.end(),
[serial_id] (const DeviceEntry* e) {
return e->serial_id == serial_id;
});
DCHECK(entry_it != devices_.end());
DeviceEntry* entry = (*entry_it);
#if defined(OS_MACOSX)
if (NeedToInitializeCaptureDeviceApi(entry->stream_type)) {
InitializeCaptureDeviceApiOnUIThread(
base::Bind(&VideoCaptureManager::HandleQueuedStartRequest, this));
return;
}
#endif
DVLOG(3) << "HandleQueuedStartRequest, Post start to device thread, device = "
<< entry->id << " start id = " << entry->serial_id;
base::Callback<std::unique_ptr<VideoCaptureDevice>(void)>
start_capture_function;
switch (entry->stream_type) {
case MEDIA_DEVICE_VIDEO_CAPTURE: {
// We look up the device id from the renderer in our local enumeration
// since the renderer does not have all the information that might be
// held in the browser-side VideoCaptureDevice::Name structure.
const media::VideoCaptureDeviceInfo* found =
FindDeviceInfoById(entry->id, devices_info_cache_);
if (found) {
entry->video_capture_controller()->DoLogOnIOThread(base::StringPrintf(
"Starting device: id: %s, name: %s, api: %s",
found->name.id().c_str(), found->name.GetNameAndModel().c_str(),
found->name.GetCaptureApiTypeString()));
start_capture_function = base::Bind(
&VideoCaptureManager::DoStartDeviceCaptureOnDeviceThread, this,
found->name, request->params(),
base::Passed(entry->video_capture_controller()->NewDeviceClient()));
} else {
// Errors from DoStartDeviceCaptureOnDeviceThread go via
// VideoCaptureDeviceClient::OnError, which needs some thread
// dancing to get errors processed on the IO thread. But since
// we're on that thread, we call VideoCaptureController
// methods directly.
const std::string log_message = base::StringPrintf(
"Error on %s:%d: device %s unknown. Maybe recently disconnected?",
__FILE__, __LINE__, entry->id.c_str());
DLOG(ERROR) << log_message;
entry->video_capture_controller()->DoLogOnIOThread(log_message);
entry->video_capture_controller()->DoErrorOnIOThread();
// Drop the failed start request.
device_start_queue_.pop_front();
return;
}
break;
}
case MEDIA_TAB_VIDEO_CAPTURE:
start_capture_function = base::Bind(
&VideoCaptureManager::DoStartTabCaptureOnDeviceThread, this,
entry->id, request->params(),
base::Passed(entry->video_capture_controller()->NewDeviceClient()));
break;
case MEDIA_DESKTOP_VIDEO_CAPTURE:
start_capture_function = base::Bind(
&VideoCaptureManager::DoStartDesktopCaptureOnDeviceThread, this,
entry->id, request->params(),
base::Passed(entry->video_capture_controller()->NewDeviceClient()));
break;
default: {
NOTIMPLEMENTED();
return;
}
}
base::PostTaskAndReplyWithResult(
device_task_runner_.get(), FROM_HERE, start_capture_function,
base::Bind(&VideoCaptureManager::OnDeviceStarted, this,
request->serial_id()));
}
void VideoCaptureManager::OnDeviceStarted(
int serial_id,
std::unique_ptr<VideoCaptureDevice> device) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(serial_id == device_start_queue_.begin()->serial_id());
DVLOG(3) << "OnDeviceStarted";
if (device_start_queue_.front().abort_start()) {
// |device| can be null if creation failed in
// DoStartDeviceCaptureOnDeviceThread.
// The device is no longer wanted. Stop the device again.
DVLOG(3) << "OnDeviceStarted but start request have been aborted.";
media::VideoCaptureDevice* device_ptr = device.get();
base::Closure closure =
base::Bind(&VideoCaptureManager::DoStopDeviceOnDeviceThread, this,
base::Passed(&device));
if (device_ptr && !device_task_runner_->PostTask(FROM_HERE, closure)) {
// PostTask failed. The device must be stopped anyway.
device_ptr->StopAndDeAllocate();
}
} else {
DeviceEntries::iterator entry_it = std::find_if(
devices_.begin(), devices_.end(),
[serial_id] (const DeviceEntry* e) {
return e->serial_id == serial_id;
});
DCHECK(entry_it != devices_.end());
DeviceEntry* entry = *entry_it;
DCHECK(!entry->video_capture_device());
entry->SetVideoCaptureDevice(std::move(device));
if (entry->stream_type == MEDIA_DESKTOP_VIDEO_CAPTURE) {
const media::VideoCaptureSessionId session_id =
device_start_queue_.front().session_id();
DCHECK(session_id != kFakeSessionId);
MaybePostDesktopCaptureWindowId(session_id);
}
}
device_start_queue_.pop_front();
HandleQueuedStartRequest();
}
std::unique_ptr<media::VideoCaptureDevice>
VideoCaptureManager::DoStartDeviceCaptureOnDeviceThread(
const VideoCaptureDevice::Name& name,
const media::VideoCaptureParams& params,
std::unique_ptr<VideoCaptureDevice::Client> device_client) {
SCOPED_UMA_HISTOGRAM_TIMER("Media.VideoCaptureManager.StartDeviceTime");
DCHECK(IsOnDeviceThread());
std::unique_ptr<VideoCaptureDevice> video_capture_device;
video_capture_device = video_capture_device_factory_->Create(name);
if (!video_capture_device) {
device_client->OnError(FROM_HERE, "Could not create capture device");
return nullptr;
}
video_capture_device->AllocateAndStart(params, std::move(device_client));
return video_capture_device;
}
std::unique_ptr<media::VideoCaptureDevice>
VideoCaptureManager::DoStartTabCaptureOnDeviceThread(
const std::string& id,
const media::VideoCaptureParams& params,
std::unique_ptr<VideoCaptureDevice::Client> device_client) {
SCOPED_UMA_HISTOGRAM_TIMER("Media.VideoCaptureManager.StartDeviceTime");
DCHECK(IsOnDeviceThread());
std::unique_ptr<VideoCaptureDevice> video_capture_device;
video_capture_device.reset(WebContentsVideoCaptureDevice::Create(id));
if (!video_capture_device) {
device_client->OnError(FROM_HERE, "Could not create capture device");
return nullptr;
}
video_capture_device->AllocateAndStart(params, std::move(device_client));
return video_capture_device;
}
std::unique_ptr<media::VideoCaptureDevice>
VideoCaptureManager::DoStartDesktopCaptureOnDeviceThread(
const std::string& id,
const media::VideoCaptureParams& params,
std::unique_ptr<VideoCaptureDevice::Client> device_client) {
SCOPED_UMA_HISTOGRAM_TIMER("Media.VideoCaptureManager.StartDeviceTime");
DCHECK(IsOnDeviceThread());
std::unique_ptr<VideoCaptureDevice> video_capture_device;
#if defined(ENABLE_SCREEN_CAPTURE)
DesktopMediaID desktop_id = DesktopMediaID::Parse(id);
if (desktop_id.is_null()) {
device_client->OnError(FROM_HERE, "Desktop media ID is null");
return nullptr;
}
if (desktop_id.type == DesktopMediaID::TYPE_WEB_CONTENTS) {
video_capture_device.reset(WebContentsVideoCaptureDevice::Create(id));
IncrementDesktopCaptureCounter(TAB_VIDEO_CAPTURER_CREATED);
} else {
#if defined(USE_AURA)
video_capture_device = DesktopCaptureDeviceAura::Create(desktop_id);
#endif
if (!video_capture_device)
video_capture_device = DesktopCaptureDevice::Create(desktop_id);
}
#endif // defined(ENABLE_SCREEN_CAPTURE)
if (!video_capture_device) {
device_client->OnError(FROM_HERE, "Could not create capture device");
return nullptr;
}
video_capture_device->AllocateAndStart(params, std::move(device_client));
return video_capture_device;
}
void VideoCaptureManager::StartCaptureForClient(
media::VideoCaptureSessionId session_id,
const media::VideoCaptureParams& params,
base::ProcessHandle client_render_process,
VideoCaptureControllerID client_id,
VideoCaptureControllerEventHandler* client_handler,
const DoneCB& done_cb) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DVLOG(1) << "VideoCaptureManager::StartCaptureForClient #" << session_id
<< ", request: "
<< media::VideoCaptureFormat::ToString(params.requested_format);
DeviceEntry* entry = GetOrCreateDeviceEntry(session_id, params);
if (!entry) {
done_cb.Run(base::WeakPtr<VideoCaptureController>());
return;
}
DCHECK(entry->video_capture_controller());
LogVideoCaptureEvent(VIDEO_CAPTURE_START_CAPTURE);
// First client starts the device.
if (!entry->video_capture_controller()->HasActiveClient() &&
!entry->video_capture_controller()->HasPausedClient()) {
DVLOG(1) << "VideoCaptureManager starting device (type = "
<< entry->stream_type << ", id = " << entry->id << ")";
QueueStartDevice(session_id, entry, params);
}
// Run the callback first, as AddClient() may trigger OnFrameInfo().
done_cb.Run(entry->video_capture_controller()->GetWeakPtrForIOThread());
entry->video_capture_controller()->AddClient(
client_id, client_handler, client_render_process, session_id, params);
}
void VideoCaptureManager::StopCaptureForClient(
VideoCaptureController* controller,
VideoCaptureControllerID client_id,
VideoCaptureControllerEventHandler* client_handler,
bool aborted_due_to_error) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(controller);
DCHECK(client_handler);
DeviceEntry* entry = GetDeviceEntryForController(controller);
if (!entry) {
NOTREACHED();
return;
}
if (!aborted_due_to_error) {
if (controller->has_received_frames()) {
LogVideoCaptureEvent(VIDEO_CAPTURE_STOP_CAPTURE_OK);
} else if (entry->stream_type == MEDIA_DEVICE_VIDEO_CAPTURE) {
LogVideoCaptureEvent(
VIDEO_CAPTURE_STOP_CAPTURE_OK_NO_FRAMES_PRODUCED_BY_DEVICE);
} else {
LogVideoCaptureEvent(
VIDEO_CAPTURE_STOP_CAPTURE_OK_NO_FRAMES_PRODUCED_BY_DESKTOP_OR_TAB);
}
} else {
LogVideoCaptureEvent(VIDEO_CAPTURE_STOP_CAPTURE_DUE_TO_ERROR);
SessionMap::iterator it;
for (it = sessions_.begin(); it != sessions_.end(); ++it) {
if (it->second.type == entry->stream_type &&
it->second.id == entry->id) {
listener_->Aborted(it->second.type, it->first);
break;
}
}
}
// Detach client from controller.
media::VideoCaptureSessionId session_id =
controller->RemoveClient(client_id, client_handler);
DVLOG(1) << "VideoCaptureManager::StopCaptureForClient, session_id = "
<< session_id;
// If controller has no more clients, delete controller and device.
DestroyDeviceEntryIfNoClients(entry);
}
void VideoCaptureManager::PauseCaptureForClient(
VideoCaptureController* controller,
VideoCaptureControllerID client_id,
VideoCaptureControllerEventHandler* client_handler) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(controller);
DCHECK(client_handler);
DeviceEntry* entry = GetDeviceEntryForController(controller);
if (!entry) {
NOTREACHED();
DVLOG(1) << "Got Null entry while pausing capture";
}
// Do not pause Content Video Capture devices, e.g. Tab or Screen capture.
if (entry->stream_type != MEDIA_DEVICE_VIDEO_CAPTURE)
return;
controller->PauseClient(client_id, client_handler);
}
void VideoCaptureManager::ResumeCaptureForClient(
media::VideoCaptureSessionId session_id,
const media::VideoCaptureParams& params,
VideoCaptureController* controller,
VideoCaptureControllerID client_id,
VideoCaptureControllerEventHandler* client_handler) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(controller);
DCHECK(client_handler);
DeviceEntry* entry = GetDeviceEntryForController(controller);
if (!entry) {
NOTREACHED();
DVLOG(1) << "Got Null entry while resuming capture";
}
// Do not resume Content Video Capture devices, e.g. Tab or Screen capture.
if (entry->stream_type != MEDIA_DEVICE_VIDEO_CAPTURE)
return;
controller->ResumeClient(client_id, client_handler);
}
void VideoCaptureManager::RequestRefreshFrameForClient(
VideoCaptureController* controller) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (DeviceEntry* entry = GetDeviceEntryForController(controller)) {
if (media::VideoCaptureDevice* device = entry->video_capture_device()) {
device_task_runner_->PostTask(
FROM_HERE,
base::Bind(&VideoCaptureDevice::RequestRefreshFrame,
// Unretained is safe to use here because |device| would be
// null if it was scheduled for shutdown and destruction,
// and because this task is guaranteed to run before the
// task that destroys the |device|.
base::Unretained(device)));
}
}
}
bool VideoCaptureManager::GetDeviceSupportedFormats(
media::VideoCaptureSessionId capture_session_id,
media::VideoCaptureFormats* supported_formats) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(supported_formats->empty());
SessionMap::iterator it = sessions_.find(capture_session_id);
if (it == sessions_.end())
return false;
DVLOG(1) << "GetDeviceSupportedFormats for device: " << it->second.name;
// Return all available formats of the device, regardless its started state.
media::VideoCaptureDeviceInfo* existing_device =
FindDeviceInfoById(it->second.id, devices_info_cache_);
if (existing_device)
*supported_formats = existing_device->supported_formats;
return true;
}
bool VideoCaptureManager::GetDeviceFormatsInUse(
media::VideoCaptureSessionId capture_session_id,
media::VideoCaptureFormats* formats_in_use) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(formats_in_use->empty());
SessionMap::iterator it = sessions_.find(capture_session_id);
if (it == sessions_.end())
return false;
DVLOG(1) << "GetDeviceFormatsInUse for device: " << it->second.name;
// Return the currently in-use format(s) of the device, if it's started.
DeviceEntry* device_in_use =
GetDeviceEntryForMediaStreamDevice(it->second);
if (device_in_use) {
// Currently only one format-in-use is supported at the VCC level.
formats_in_use->push_back(
device_in_use->video_capture_controller()->GetVideoCaptureFormat());
}
return true;
}
void VideoCaptureManager::SetDesktopCaptureWindowId(
media::VideoCaptureSessionId session_id,
gfx::NativeViewId window_id) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
VLOG(2) << "SetDesktopCaptureWindowId called for session " << session_id;
notification_window_ids_[session_id] = window_id;
MaybePostDesktopCaptureWindowId(session_id);
}
void VideoCaptureManager::MaybePostDesktopCaptureWindowId(
media::VideoCaptureSessionId session_id) {
SessionMap::iterator session_it = sessions_.find(session_id);
if (session_it == sessions_.end()) {
return;
}
DeviceEntry* const existing_device =
GetDeviceEntryForMediaStreamDevice(session_it->second);
if (!existing_device) {
DVLOG(2) << "Failed to find an existing screen capture device.";
return;
}
if (!existing_device->video_capture_device()) {
DVLOG(2) << "Screen capture device not yet started.";
return;
}
DCHECK_EQ(MEDIA_DESKTOP_VIDEO_CAPTURE, existing_device->stream_type);
DesktopMediaID id = DesktopMediaID::Parse(existing_device->id);
if (id.is_null())
return;
auto window_id_it = notification_window_ids_.find(session_id);
if (window_id_it == notification_window_ids_.end()) {
DVLOG(2) << "Notification window id not set for screen capture.";
return;
}
// Post |existing_device->video_capture_device| to the VideoCaptureDevice to
// the device_task_runner_. This is safe since the device is destroyed on the
// device_task_runner_.
device_task_runner_->PostTask(
FROM_HERE,
base::Bind(&VideoCaptureManager::SetDesktopCaptureWindowIdOnDeviceThread,
this,
existing_device->video_capture_device(),
window_id_it->second));
notification_window_ids_.erase(window_id_it);
}
bool VideoCaptureManager::TakePhoto(
int session_id,
const VideoCaptureDevice::TakePhotoCallback& photo_callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
SessionMap::const_iterator session_it = sessions_.find(session_id);
if (session_it == sessions_.end())
return false;
DeviceEntry* const device_info =
GetDeviceEntryForMediaStreamDevice(session_it->second);
if (!device_info)
return false;
device_task_runner_->PostTask(
FROM_HERE,
base::Bind(&VideoCaptureManager::DoTakePhotoOnDeviceThread, this,
device_info->video_capture_device(), photo_callback));
return true;
}
void VideoCaptureManager::DoTakePhotoOnDeviceThread(
media::VideoCaptureDevice* device,
const VideoCaptureDevice::TakePhotoCallback& photo_callback) {
DCHECK(IsOnDeviceThread());
if (device->TakePhoto(photo_callback))
return;
// TakePhoto() failed synchronously: Make sure |photo_callback| is Run().
std::unique_ptr<std::vector<uint8_t>> empty_vector(
new std::vector<uint8_t>());
photo_callback.Run("", std::move(empty_vector));
}
void VideoCaptureManager::DoStopDeviceOnDeviceThread(
std::unique_ptr<VideoCaptureDevice> device) {
SCOPED_UMA_HISTOGRAM_TIMER("Media.VideoCaptureManager.StopDeviceTime");
DCHECK(IsOnDeviceThread());
device->StopAndDeAllocate();
DVLOG(3) << "DoStopDeviceOnDeviceThread";
}
void VideoCaptureManager::OnOpened(
MediaStreamType stream_type,
media::VideoCaptureSessionId capture_session_id) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (!listener_) {
// Listener has been removed.
return;
}
listener_->Opened(stream_type, capture_session_id);
}
void VideoCaptureManager::OnClosed(
MediaStreamType stream_type,
media::VideoCaptureSessionId capture_session_id) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (!listener_) {
// Listener has been removed.
return;
}
listener_->Closed(stream_type, capture_session_id);
}
void VideoCaptureManager::OnDevicesInfoEnumerated(
MediaStreamType stream_type,
base::ElapsedTimer* timer,
const media::VideoCaptureDeviceInfos& new_devices_info_cache) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
UMA_HISTOGRAM_TIMES(
"Media.VideoCaptureManager.GetAvailableDevicesInfoOnDeviceThreadTime",
timer->Elapsed());
if (!listener_) {
// Listener has been removed.
return;
}
devices_info_cache_ = new_devices_info_cache;
MediaInternals::GetInstance()->UpdateVideoCaptureDeviceCapabilities(
devices_info_cache_);
// Walk the |devices_info_cache_| and transform from VCD::Name to
// StreamDeviceInfo for return purposes.
StreamDeviceInfoArray devices;
for (const auto& it : devices_info_cache_) {
devices.push_back(StreamDeviceInfo(
stream_type, it.name.GetNameAndModel(), it.name.id()));
}
listener_->DevicesEnumerated(stream_type, devices);
}
bool VideoCaptureManager::IsOnDeviceThread() const {
return device_task_runner_->BelongsToCurrentThread();
}
void VideoCaptureManager::ConsolidateDevicesInfoOnDeviceThread(
base::Callback<void(const media::VideoCaptureDeviceInfos&)>
on_devices_enumerated_callback,
MediaStreamType stream_type,
const media::VideoCaptureDeviceInfos& old_device_info_cache,
std::unique_ptr<VideoCaptureDevice::Names> names_snapshot) {
DCHECK(IsOnDeviceThread());
// Construct |new_devices_info_cache| with the cached devices that are still
// present in the system, and remove their names from |names_snapshot|, so we
// keep there the truly new devices.
media::VideoCaptureDeviceInfos new_devices_info_cache;
for (const auto& device_info : old_device_info_cache) {
for (VideoCaptureDevice::Names::iterator it = names_snapshot->begin();
it != names_snapshot->end(); ++it) {
if (device_info.name.id() == it->id()) {
new_devices_info_cache.push_back(device_info);
names_snapshot->erase(it);
break;
}
}
}
// Get the supported capture formats for the new devices in |names_snapshot|.
for (const auto& it : *names_snapshot) {
media::VideoCaptureDeviceInfo device_info(it, media::VideoCaptureFormats());
video_capture_device_factory_->GetDeviceSupportedFormats(
it, &(device_info.supported_formats));
ConsolidateCaptureFormats(&device_info.supported_formats);
new_devices_info_cache.push_back(device_info);
}
on_devices_enumerated_callback.Run(new_devices_info_cache);
}
VideoCaptureManager::DeviceEntry*
VideoCaptureManager::GetDeviceEntryForMediaStreamDevice(
const MediaStreamDevice& device_info) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
for (DeviceEntry* device : devices_) {
if (device_info.type == device->stream_type && device_info.id == device->id)
return device;
}
return nullptr;
}
VideoCaptureManager::DeviceEntry*
VideoCaptureManager::GetDeviceEntryForController(
const VideoCaptureController* controller) const {
// Look up |controller| in |devices_|.
for (DeviceEntry* device : devices_) {
if (device->video_capture_controller() == controller)
return device;
}
return nullptr;
}
void VideoCaptureManager::DestroyDeviceEntryIfNoClients(DeviceEntry* entry) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
// Removal of the last client stops the device.
if (!entry->video_capture_controller()->HasActiveClient() &&
!entry->video_capture_controller()->HasPausedClient()) {
DVLOG(1) << "VideoCaptureManager stopping device (type = "
<< entry->stream_type << ", id = " << entry->id << ")";
// The DeviceEntry is removed from |devices_| immediately. The controller is
// deleted immediately, and the device is freed asynchronously. After this
// point, subsequent requests to open this same device ID will create a new
// DeviceEntry, VideoCaptureController, and VideoCaptureDevice.
DoStopDevice(entry);
DeviceEntries::iterator device_it = std::find(devices_.begin(),
devices_.end(),
entry);
devices_.erase(device_it);
}
}
VideoCaptureManager::DeviceEntry* VideoCaptureManager::GetOrCreateDeviceEntry(
media::VideoCaptureSessionId capture_session_id,
const media::VideoCaptureParams& params) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
SessionMap::iterator session_it = sessions_.find(capture_session_id);
if (session_it == sessions_.end())
return nullptr;
const MediaStreamDevice& device_info = session_it->second;
// Check if another session has already opened this device. If so, just
// use that opened device.
DeviceEntry* const existing_device =
GetDeviceEntryForMediaStreamDevice(device_info);
if (existing_device) {
DCHECK_EQ(device_info.type, existing_device->stream_type);
return existing_device;
}
const int max_buffers = device_info.type == MEDIA_TAB_VIDEO_CAPTURE ?
kMaxNumberOfBuffersForTabCapture : kMaxNumberOfBuffers;
std::unique_ptr<VideoCaptureController> video_capture_controller(
new VideoCaptureController(max_buffers));
DeviceEntry* new_device =
new DeviceEntry(device_info.type, device_info.id,
std::move(video_capture_controller), params);
devices_.push_back(new_device);
return new_device;
}
media::VideoCaptureDeviceInfo* VideoCaptureManager::FindDeviceInfoById(
const std::string& id,
media::VideoCaptureDeviceInfos& device_vector) {
for (auto& it : device_vector) {
if (it.name.id() == id)
return &(it);
}
return nullptr;
}
void VideoCaptureManager::SetDesktopCaptureWindowIdOnDeviceThread(
media::VideoCaptureDevice* device,
gfx::NativeViewId window_id) {
DCHECK(IsOnDeviceThread());
#if defined(ENABLE_SCREEN_CAPTURE)
DesktopCaptureDevice* desktop_device =
static_cast<DesktopCaptureDevice*>(device);
desktop_device->SetNotificationWindowId(window_id);
VLOG(2) << "Screen capture notification window passed on device thread.";
#endif
}
#if defined(OS_MACOSX)
void VideoCaptureManager::OnDeviceLayerInitialized(
const base::Closure& and_then) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
capture_device_api_initialized_ = true;
and_then.Run();
}
bool VideoCaptureManager::NeedToInitializeCaptureDeviceApi(
MediaStreamType stream_type) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
return !capture_device_api_initialized_ &&
stream_type == MEDIA_DEVICE_VIDEO_CAPTURE;
}
void VideoCaptureManager::InitializeCaptureDeviceApiOnUIThread(
const base::Closure& and_then) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
BrowserThread::PostTaskAndReply(
BrowserThread::UI, FROM_HERE,
base::Bind(&AVFoundationGlue::InitializeAVFoundation),
base::Bind(&VideoCaptureManager::OnDeviceLayerInitialized, this,
and_then));
}
#endif
#if defined(OS_ANDROID)
void VideoCaptureManager::OnApplicationStateChange(
base::android::ApplicationState state) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (state == base::android::APPLICATION_STATE_HAS_RUNNING_ACTIVITIES) {
ResumeDevices();
} else if (state == base::android::APPLICATION_STATE_HAS_STOPPED_ACTIVITIES) {
ReleaseDevices();
}
}
void VideoCaptureManager::ReleaseDevices() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
for (auto& entry : devices_) {
// Do not stop Content Video Capture devices, e.g. Tab or Screen capture.
if (entry->stream_type != MEDIA_DEVICE_VIDEO_CAPTURE)
continue;
DoStopDevice(entry);
}
}
void VideoCaptureManager::ResumeDevices() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
for (auto& entry : devices_) {
// Do not resume Content Video Capture devices, e.g. Tab or Screen capture.
// Do not try to restart already running devices. A device will be running
// if the Application state changes from
// APPLICATION_STATE_HAS_RUNNING_ACTIVITIES
// ->APPLICATION_STATE_HAS_PAUSED_ACTIVITIES
// ->APPLICATION_STATE_HAS_RUNNING_ACTIVITIES
if (entry->stream_type != MEDIA_DEVICE_VIDEO_CAPTURE ||
entry->video_capture_device())
continue;
// Session ID is only valid for Screen capture. So we can fake it to resume
// video capture devices here.
QueueStartDevice(kFakeSessionId, entry, entry->parameters);
}
}
#endif // defined(OS_ANDROID)
} // namespace content