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

Side by Side Diff: content/renderer/render_view_impl.cc

Issue 8686010: <video> decode in hardware! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/render_view_impl.h" 5 #include "content/renderer/render_view_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 #include "content/public/common/url_constants.h" 45 #include "content/public/common/url_constants.h"
46 #include "content/public/renderer/content_renderer_client.h" 46 #include "content/public/renderer/content_renderer_client.h"
47 #include "content/public/renderer/document_state.h" 47 #include "content/public/renderer/document_state.h"
48 #include "content/public/renderer/navigation_state.h" 48 #include "content/public/renderer/navigation_state.h"
49 #include "content/public/renderer/render_view_observer.h" 49 #include "content/public/renderer/render_view_observer.h"
50 #include "content/public/renderer/render_view_visitor.h" 50 #include "content/public/renderer/render_view_visitor.h"
51 #include "content/renderer/device_orientation_dispatcher.h" 51 #include "content/renderer/device_orientation_dispatcher.h"
52 #include "content/renderer/devtools_agent.h" 52 #include "content/renderer/devtools_agent.h"
53 #include "content/renderer/external_popup_menu.h" 53 #include "content/renderer/external_popup_menu.h"
54 #include "content/renderer/geolocation_dispatcher.h" 54 #include "content/renderer/geolocation_dispatcher.h"
55 #include "content/renderer/gpu/command_buffer_proxy.h"
56 #include "content/renderer/gpu/gpu_channel_host.h"
55 #include "content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.h" 57 #include "content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.h"
56 #include "content/renderer/idle_user_detector.h" 58 #include "content/renderer/idle_user_detector.h"
57 #include "content/renderer/intents_dispatcher.h" 59 #include "content/renderer/intents_dispatcher.h"
58 #include "content/renderer/java/java_bridge_dispatcher.h" 60 #include "content/renderer/java/java_bridge_dispatcher.h"
59 #include "content/renderer/load_progress_tracker.h" 61 #include "content/renderer/load_progress_tracker.h"
60 #include "content/renderer/media/audio_message_filter.h" 62 #include "content/renderer/media/audio_message_filter.h"
61 #include "content/renderer/media/audio_renderer_impl.h" 63 #include "content/renderer/media/audio_renderer_impl.h"
62 #include "content/renderer/media/media_stream_impl.h" 64 #include "content/renderer/media/media_stream_impl.h"
63 #include "content/renderer/media/render_media_log.h" 65 #include "content/renderer/media/render_media_log.h"
64 #include "content/renderer/mhtml_generator.h" 66 #include "content/renderer/mhtml_generator.h"
65 #include "content/renderer/notification_provider.h" 67 #include "content/renderer/notification_provider.h"
66 #include "content/renderer/p2p/socket_dispatcher.h" 68 #include "content/renderer/p2p/socket_dispatcher.h"
67 #include "content/renderer/plugin_channel_host.h" 69 #include "content/renderer/plugin_channel_host.h"
68 #include "content/renderer/render_process.h" 70 #include "content/renderer/render_process.h"
69 #include "content/renderer/render_thread_impl.h" 71 #include "content/renderer/render_thread_impl.h"
70 #include "content/renderer/render_widget_fullscreen_pepper.h" 72 #include "content/renderer/render_widget_fullscreen_pepper.h"
71 #include "content/renderer/renderer_accessibility.h" 73 #include "content/renderer/renderer_accessibility.h"
72 #include "content/renderer/renderer_webapplicationcachehost_impl.h" 74 #include "content/renderer/renderer_webapplicationcachehost_impl.h"
73 #include "content/renderer/renderer_webstoragenamespace_impl.h" 75 #include "content/renderer/renderer_webstoragenamespace_impl.h"
74 #include "content/renderer/speech_input_dispatcher.h" 76 #include "content/renderer/speech_input_dispatcher.h"
75 #include "content/renderer/text_input_client_observer.h" 77 #include "content/renderer/text_input_client_observer.h"
76 #include "content/renderer/v8_value_converter_impl.h" 78 #include "content/renderer/v8_value_converter_impl.h"
77 #include "content/renderer/web_ui_bindings.h" 79 #include "content/renderer/web_ui_bindings.h"
78 #include "content/renderer/webplugin_delegate_proxy.h" 80 #include "content/renderer/webplugin_delegate_proxy.h"
79 #include "content/renderer/websharedworker_proxy.h" 81 #include "content/renderer/websharedworker_proxy.h"
82 #include "gpu/command_buffer/client/gles2_implementation.h"
80 #include "media/base/filter_collection.h" 83 #include "media/base/filter_collection.h"
81 #include "media/base/media_switches.h" 84 #include "media/base/media_switches.h"
82 #include "media/base/message_loop_factory_impl.h" 85 #include "media/base/message_loop_factory_impl.h"
86 #include "media/filters/gpu_video_decoder.h"
83 #include "net/base/escape.h" 87 #include "net/base/escape.h"
84 #include "net/base/net_errors.h" 88 #include "net/base/net_errors.h"
85 #include "net/http/http_util.h" 89 #include "net/http/http_util.h"
86 #include "ppapi/c/private/ppb_flash_net_connector.h" 90 #include "ppapi/c/private/ppb_flash_net_connector.h"
87 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec t.h" 91 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec t.h"
88 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCString.h" 92 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCString.h"
89 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" 93 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
90 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 94 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
91 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragData.h" 95 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragData.h"
92 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" 96 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 #include "webkit/glue/context_menu.h" 142 #include "webkit/glue/context_menu.h"
139 #include "webkit/glue/dom_operations.h" 143 #include "webkit/glue/dom_operations.h"
140 #include "webkit/glue/form_data.h" 144 #include "webkit/glue/form_data.h"
141 #include "webkit/glue/form_field.h" 145 #include "webkit/glue/form_field.h"
142 #include "webkit/glue/glue_serialize.h" 146 #include "webkit/glue/glue_serialize.h"
143 #include "webkit/glue/password_form_dom_manager.h" 147 #include "webkit/glue/password_form_dom_manager.h"
144 #include "webkit/glue/webdropdata.h" 148 #include "webkit/glue/webdropdata.h"
145 #include "webkit/glue/webkit_constants.h" 149 #include "webkit/glue/webkit_constants.h"
146 #include "webkit/glue/webkit_glue.h" 150 #include "webkit/glue/webkit_glue.h"
147 #include "webkit/glue/weburlloader_impl.h" 151 #include "webkit/glue/weburlloader_impl.h"
148 #include "webkit/media/video_renderer_impl.h"
149 #include "webkit/media/webmediaplayer_impl.h" 152 #include "webkit/media/webmediaplayer_impl.h"
150 #include "webkit/plugins/npapi/default_plugin_shared.h" 153 #include "webkit/plugins/npapi/default_plugin_shared.h"
151 #include "webkit/plugins/npapi/plugin_list.h" 154 #include "webkit/plugins/npapi/plugin_list.h"
152 #include "webkit/plugins/npapi/webplugin_delegate.h" 155 #include "webkit/plugins/npapi/webplugin_delegate.h"
153 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" 156 #include "webkit/plugins/npapi/webplugin_delegate_impl.h"
154 #include "webkit/plugins/npapi/webplugin_impl.h" 157 #include "webkit/plugins/npapi/webplugin_impl.h"
155 #include "webkit/plugins/npapi/webview_plugin.h" 158 #include "webkit/plugins/npapi/webview_plugin.h"
156 #include "webkit/plugins/ppapi/ppapi_webplugin_impl.h" 159 #include "webkit/plugins/ppapi/ppapi_webplugin_impl.h"
157 160
158 #if defined(OS_WIN) 161 #if defined(OS_WIN)
(...skipping 1735 matching lines...) Expand 10 before | Expand all | Expand 10 after
1894 return NULL; 1897 return NULL;
1895 } else { 1898 } else {
1896 return new WebSharedWorkerProxy(RenderThreadImpl::current(), 1899 return new WebSharedWorkerProxy(RenderThreadImpl::current(),
1897 document_id, 1900 document_id,
1898 exists, 1901 exists,
1899 route_id, 1902 route_id,
1900 routing_id_); 1903 routing_id_);
1901 } 1904 }
1902 } 1905 }
1903 1906
1907 // Glue code to expose functionality needed by media::GpuVideoDecoder.
Ami GONE FROM CHROMIUM 2011/11/30 00:08:37 This could as well have lived in a separate file,
1908 class GpuVideoDecoderFactories : public media::GpuVideoDecoder::Factories {
1909 public:
1910 virtual ~GpuVideoDecoderFactories() {}
1911 // Doesn't take ownership of arguments.
1912 GpuVideoDecoderFactories(GpuChannelHost* gpu_channel_host,
1913 gpu::gles2::GLES2Implementation* gles2, int route_id)
1914 : gpu_channel_host_(gpu_channel_host),
1915 gles2_(gles2), route_id_(route_id) {
1916 }
1917
1918 media::VideoDecodeAccelerator* CreateVideoDecodeAccelerator(
1919 media::VideoDecodeAccelerator::Profile profile,
1920 media::VideoDecodeAccelerator::Client* client) {
1921 return gpu_channel_host_->CreateVideoDecoder(route_id_, profile, client);
1922 }
1923
1924 bool CreateTextures(int32 count, const gfx::Size& size,
1925 std::vector<uint32>* texture_ids) {
1926 texture_ids->resize(count);
1927 gles2_->GenTextures(count, &texture_ids->at(0));
1928 for (int i = 0; i < count; ++i) {
1929 gles2_->ActiveTexture(GL_TEXTURE0);
1930 uint32 texture_id = texture_ids->at(i);
1931 gles2_->BindTexture(GL_TEXTURE_2D, texture_id);
1932 gles2_->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
1933 gles2_->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
1934 gles2_->TexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
1935 gles2_->TexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
1936 gles2_->TexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, size.width(), size.height(),
1937 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
1938 }
1939 return gles2_->GetError() == GL_NO_ERROR;
1940 }
1941
1942 bool DeleteTexture(uint32 texture_id) {
1943 gles2_->DeleteTextures(1, &texture_id);
1944 return gles2_->GetError() == GL_NO_ERROR;
1945 }
1946
1947 base::SharedMemory* CreateSharedMemory(size_t size) {
1948 return ChildThread::current()->AllocateSharedMemory(size);
1949 }
1950
1951 private:
1952 GpuChannelHost* gpu_channel_host_;
1953 gpu::gles2::GLES2Implementation* gles2_;
1954 int route_id_;
1955 DISALLOW_IMPLICIT_CONSTRUCTORS(GpuVideoDecoderFactories);
1956 };
1957
1904 WebMediaPlayer* RenderViewImpl::createMediaPlayer( 1958 WebMediaPlayer* RenderViewImpl::createMediaPlayer(
1905 WebFrame* frame, WebMediaPlayerClient* client) { 1959 WebFrame* frame, WebMediaPlayerClient* client) {
1906 FOR_EACH_OBSERVER( 1960 FOR_EACH_OBSERVER(
1907 RenderViewObserver, observers_, WillCreateMediaPlayer(frame, client)); 1961 RenderViewObserver, observers_, WillCreateMediaPlayer(frame, client));
1908 1962
1909 scoped_ptr<media::MessageLoopFactory> message_loop_factory( 1963 scoped_ptr<media::MessageLoopFactory> message_loop_factory(
1910 new media::MessageLoopFactoryImpl()); 1964 new media::MessageLoopFactoryImpl());
1911 scoped_ptr<media::FilterCollection> collection( 1965 scoped_ptr<media::FilterCollection> collection(
1912 new media::FilterCollection()); 1966 new media::FilterCollection());
1913 1967
1914 // Add in any custom filter factories first. 1968 // Add in any custom filter factories first.
1915 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); 1969 const CommandLine* cmd_line = CommandLine::ForCurrentProcess();
1916 if (!cmd_line->HasSwitch(switches::kDisableAudio)) { 1970 if (!cmd_line->HasSwitch(switches::kDisableAudio)) {
1917 // Add the chrome specific audio renderer. 1971 // Add the chrome specific audio renderer.
1918 collection->AddAudioRenderer(new AudioRendererImpl()); 1972 collection->AddAudioRenderer(new AudioRendererImpl());
1919 } 1973 }
1920 1974
1975 #if defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL)
1976 // Currently only cros/arm has any HW video decode support in
1977 // GpuVideoDecodeAccelerator so we don't even try to use it on other
1978 // platforms. This is a startup-time optimization. When new VDA
1979 // implementations are added, relax the #if above.
1980 WebKit::WebGraphicsContext3D* wk_context3d = webview()->graphicsContext3D();
1981 if (wk_context3d) {
1982 WebGraphicsContext3DCommandBufferImpl* context3d =
1983 static_cast<WebGraphicsContext3DCommandBufferImpl*>(wk_context3d);
1984 int route_id = context3d->context()->GetCommandBufferProxy()->route_id();
1985 gpu::gles2::GLES2Implementation* gles2 =
1986 context3d->context()->GetImplementation();
1987 GpuChannelHost* gpu_channel_host =
1988 RenderThreadImpl::current()->EstablishGpuChannelSync(
1989 content::CAUSE_FOR_GPU_LAUNCH_VIDEODECODEACCELERATOR_INITIALIZE);
1990 collection->AddVideoDecoder(new media::GpuVideoDecoder(
1991 message_loop_factory->GetMessageLoop("GpuVideoDecoderThread"),
1992 new GpuVideoDecoderFactories(gpu_channel_host, gles2, route_id)));
1993 }
1994 #endif
1995
1921 scoped_ptr<webkit_media::WebMediaPlayerImpl> result( 1996 scoped_ptr<webkit_media::WebMediaPlayerImpl> result(
1922 new webkit_media::WebMediaPlayerImpl(client, 1997 new webkit_media::WebMediaPlayerImpl(client,
1923 AsWeakPtr(), 1998 AsWeakPtr(),
1924 collection.release(), 1999 collection.release(),
1925 message_loop_factory.release(), 2000 message_loop_factory.release(),
1926 media_stream_impl_.get(), 2001 media_stream_impl_.get(),
1927 new RenderMediaLog())); 2002 new RenderMediaLog()));
1928 if (!result->Initialize(frame, 2003 if (!result->Initialize(frame,
1929 cmd_line->HasSwitch(switches::kSimpleDataSource))) { 2004 cmd_line->HasSwitch(switches::kSimpleDataSource))) {
1930 return NULL; 2005 return NULL;
(...skipping 2802 matching lines...) Expand 10 before | Expand all | Expand 10 after
4733 return !!RenderThreadImpl::current()->compositor_thread(); 4808 return !!RenderThreadImpl::current()->compositor_thread();
4734 } 4809 }
4735 4810
4736 void RenderViewImpl::OnJavaBridgeInit( 4811 void RenderViewImpl::OnJavaBridgeInit(
4737 const IPC::ChannelHandle& channel_handle) { 4812 const IPC::ChannelHandle& channel_handle) {
4738 DCHECK(!java_bridge_dispatcher_.get()); 4813 DCHECK(!java_bridge_dispatcher_.get());
4739 #if defined(ENABLE_JAVA_BRIDGE) 4814 #if defined(ENABLE_JAVA_BRIDGE)
4740 java_bridge_dispatcher_.reset(new JavaBridgeDispatcher(this, channel_handle)); 4815 java_bridge_dispatcher_.reset(new JavaBridgeDispatcher(this, channel_handle));
4741 #endif 4816 #endif
4742 } 4817 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698