OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/common/gpu_messages.h" |
| 6 #include "chrome/gpu/gpu_channel.h" |
| 7 #include "chrome/gpu/gpu_video_service.h" |
| 8 |
| 9 GpuVideoService::GpuVideoService() : next_available_decoder_id_(0) { |
| 10 // TODO(jiesun): move this time consuming stuff out of here. |
| 11 IntializeGpuVideoService(); |
| 12 } |
| 13 GpuVideoService::~GpuVideoService() { |
| 14 // TODO(jiesun): move this time consuming stuff out of here. |
| 15 UnintializeGpuVideoService(); |
| 16 } |
| 17 |
| 18 void GpuVideoService::OnChannelConnected(int32 peer_pid) { |
| 19 LOG(ERROR) << "GpuVideoService::OnChannelConnected"; |
| 20 } |
| 21 |
| 22 void GpuVideoService::OnChannelError() { |
| 23 LOG(ERROR) << "GpuVideoService::OnChannelError"; |
| 24 } |
| 25 |
| 26 void GpuVideoService::OnMessageReceived(const IPC::Message& msg) { |
| 27 #if 0 |
| 28 IPC_BEGIN_MESSAGE_MAP(GpuVideoService, msg) |
| 29 IPC_MESSAGE_UNHANDLED_ERROR() |
| 30 IPC_END_MESSAGE_MAP() |
| 31 #endif |
| 32 } |
| 33 |
| 34 bool GpuVideoService::IntializeGpuVideoService() { |
| 35 return true; |
| 36 } |
| 37 |
| 38 bool GpuVideoService::UnintializeGpuVideoService() { |
| 39 return true; |
| 40 } |
| 41 |
| 42 bool GpuVideoService::CreateVideoDecoder( |
| 43 GpuChannel* channel, |
| 44 MessageRouter* router, |
| 45 GpuVideoDecoderInfoParam* param) { |
| 46 // TODO(jiesun): find a better way to determine which GpuVideoDecoder |
| 47 // to return on current platform. |
| 48 #if defined(ENABLE_MFT_DECODER) |
| 49 GpuVideoDecoderInfo decoder_info; |
| 50 int32 decoder_id = GetNextAvailableDecoderID(); |
| 51 param->decoder_id_ = decoder_id; |
| 52 base::ProcessHandle handle = channel->renderer_handle(); |
| 53 decoder_info.decoder_ = new GpuVideoDecoderMFT(param, channel, handle); |
| 54 decoder_info.channel_ = channel; |
| 55 decoder_info.param = *param; |
| 56 decoder_map_[decoder_id] = decoder_info; |
| 57 router->AddRoute(param->decoder_route_id_, decoder_info.decoder_); |
| 58 return true; |
| 59 #else |
| 60 return false; |
| 61 #endif |
| 62 } |
| 63 |
| 64 void GpuVideoService::DestroyVideoDecoder( |
| 65 MessageRouter* router, |
| 66 int32 decoder_id) { |
| 67 int32 route_id = decoder_map_[decoder_id].param.decoder_route_id_; |
| 68 router->RemoveRoute(route_id); |
| 69 decoder_map_.erase(decoder_id); |
| 70 } |
| 71 |
| 72 int32 GpuVideoService::GetNextAvailableDecoderID() { |
| 73 return ++next_available_decoder_id_; |
| 74 } |
| 75 |
OLD | NEW |