diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 21:47:58 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 21:47:58 +0000 |
commit | 885ff1dfd127346d8fd1bfa239c7375773aabe48 (patch) | |
tree | 6004858fef22e08c5c1b4570231e01e1f0290a43 /media | |
parent | 3bb08606c22e357896714764731a7af21e04377d (diff) | |
download | chromium_src-885ff1dfd127346d8fd1bfa239c7375773aabe48.zip chromium_src-885ff1dfd127346d8fd1bfa239c7375773aabe48.tar.gz chromium_src-885ff1dfd127346d8fd1bfa239c7375773aabe48.tar.bz2 |
GpuVideoDecoderHost runs on IO thread instead of Render thread
Move GpuVideoDecoderHost to IO thread and change GpuVideoServiceHost to
be a MessageFilter.
BUG=53714
TEST=Tree is green. Will pending on WebKit changes to make this work.
Review URL: http://codereview.chromium.org/3462015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61854 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r-- | media/base/video_frame.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/media/base/video_frame.cc b/media/base/video_frame.cc index 9a53090..57a4d0d 100644 --- a/media/base/video_frame.cc +++ b/media/base/video_frame.cc @@ -115,6 +115,8 @@ void VideoFrame::CreateFrameGlTexture(Format format, frame->planes_ = GetNumberOfPlanes(format); for (size_t i = 0; i < kMaxPlanes; ++i) { frame->gl_textures_[i] = textures[i]; + // TODO(hclam): Fix me for color format other than RGBA. + frame->strides_[i] = width; } } *frame_out = frame; |