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

Issue 8922010: <video> decode in hardware! (Closed)

Created:
9 years ago by Ami GONE FROM CHROMIUM
Modified:
9 years ago
CC:
chromium-reviews, hclam+watch_chromium.org, ddorwin+watch_chromium.org, fischman+watch_chromium.org, jam, acolwell+watch_chromium.org, annacc+watch_chromium.org, apatrick_chromium, dpranke-watch+content_chromium.org, joi+watch-content_chromium.org, darin-cc_chromium.org, yzshen+watch_chromium.org, Paweł Hajdan Jr., vrk (LEFT CHROMIUM), piman+watch_chromium.org, scherkus (not reviewing), ihf+watch_chromium.org
Visibility:
Public.

Description

<video> decode in hardware! This uses the GpuVideoDecodeAccelerator machinery (already written to enable ppapi to take advantage of OpenMAX HW where available) to decode <video> data. This increases idle CPU from 20% to 45% on one particularly large (internal) test video (red0.mp4), on an ARM crosbook. HW decode is done on a best-effort basis; if the GPU code doesn't know how to deal with a codec/profile we still fall back to ffmpeg for decode. Because the vast majority of chrome installs will be on HW with no video decode support (yet) we only attempt HW video decode on platforms we know have a shot at it. This is a copy of http://codereview.chromium.org/8686010/ PS#13 to work around rietveld losing the "status" for some files in the patch. BUG=104579 TEST=manual testing w/ video test matrix, trybots. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=114183

Patch Set 1 #

Total comments: 2

Patch Set 2 : piman CR#1 response #

Patch Set 3 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1125 lines, -171 lines) Patch
M content/common/gpu/media/gpu_video_decode_accelerator.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M content/common/gpu/media/omx_video_decode_accelerator.cc View 3 chunks +15 lines, -13 lines 0 comments Download
M content/common/gpu/media/omx_video_decode_accelerator_unittest.cc View 5 chunks +8 lines, -11 lines 0 comments Download
M content/content_renderer.gypi View 1 chunk +2 lines, -0 lines 0 comments Download
M content/renderer/gpu/gpu_video_decode_accelerator_host.cc View 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/media/capture_video_decoder.h View 3 chunks +3 lines, -2 lines 0 comments Download
M content/renderer/media/capture_video_decoder.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M content/renderer/media/capture_video_decoder_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/media/rtc_video_decoder.h View 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/media/rtc_video_decoder.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M content/renderer/media/rtc_video_decoder_unittest.cc View 2 chunks +3 lines, -2 lines 0 comments Download
M content/renderer/render_view_impl.cc View 1 2 4 chunks +21 lines, -1 line 0 comments Download
A content/renderer/renderer_gpu_video_decoder_factories.h View 1 chunk +50 lines, -0 lines 0 comments Download
A content/renderer/renderer_gpu_video_decoder_factories.cc View 1 1 chunk +64 lines, -0 lines 0 comments Download
M media/base/composite_filter.h View 1 chunk +3 lines, -0 lines 0 comments Download
M media/base/composite_filter.cc View 4 chunks +18 lines, -2 lines 0 comments Download
M media/base/composite_filter_unittest.cc View 2 chunks +14 lines, -3 lines 0 comments Download
M media/base/filter_collection.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/base/filters.h View 3 chunks +8 lines, -5 lines 0 comments Download
M media/base/filters.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M media/base/mock_filters.h View 1 chunk +1 line, -1 line 0 comments Download
M media/base/pipeline_impl.h View 2 chunks +5 lines, -4 lines 0 comments Download
M media/base/pipeline_impl.cc View 7 chunks +21 lines, -11 lines 0 comments Download
M media/base/pipeline_impl_unittest.cc View 3 chunks +8 lines, -1 line 0 comments Download
M media/base/video_decoder_config.h View 6 chunks +31 lines, -1 line 0 comments Download
M media/base/video_decoder_config.cc View 6 chunks +32 lines, -2 lines 0 comments Download
M media/base/video_frame.h View 7 chunks +28 lines, -5 lines 0 comments Download
M media/base/video_frame.cc View 5 chunks +42 lines, -6 lines 0 comments Download
M media/ffmpeg/ffmpeg_common.cc View 3 chunks +48 lines, -0 lines 0 comments Download
M media/filters/ffmpeg_video_decoder.h View 1 chunk +1 line, -1 line 0 comments Download
M media/filters/ffmpeg_video_decoder.cc View 5 chunks +7 lines, -26 lines 0 comments Download
M media/filters/ffmpeg_video_decoder_unittest.cc View 3 chunks +18 lines, -15 lines 0 comments Download
A media/filters/gpu_video_decoder.h View 1 chunk +169 lines, -0 lines 0 comments Download
A media/filters/gpu_video_decoder.cc View 1 chunk +443 lines, -0 lines 0 comments Download
M media/filters/video_renderer_base.cc View 3 chunks +9 lines, -13 lines 0 comments Download
M media/media.gyp View 1 chunk +2 lines, -0 lines 0 comments Download
M media/video/video_decode_accelerator.h View 3 chunks +4 lines, -20 lines 0 comments Download
M ppapi/api/dev/pp_video_dev.idl View 3 chunks +5 lines, -3 lines 0 comments Download
M ppapi/c/dev/pp_video_dev.h View 4 chunks +6 lines, -4 lines 0 comments Download
M webkit/media/webmediaplayer_impl.cc View 1 chunk +2 lines, -0 lines 0 comments Download
M webkit/media/webvideoframe_impl.h View 1 chunk +7 lines, -6 lines 0 comments Download
M webkit/media/webvideoframe_impl.cc View 2 chunks +11 lines, -3 lines 0 comments Download

Messages

Total messages: 10 (0 generated)
Ami GONE FROM CHROMIUM
piman/scherkus: please migrate your LGTMs from http://codereview.chromium.org/8686010/ to here (in hopes of using the CQ). ...
9 years ago (2011-12-13 00:45:09 UTC) #1
scherkus (not reviewing)
rubber stamp lgtm
9 years ago (2011-12-13 00:46:37 UTC) #2
piman
lgtm http://codereview.chromium.org/8922010/diff/1/content/renderer/renderer_gpu_video_decoder_factories.cc File content/renderer/renderer_gpu_video_decoder_factories.cc (right): http://codereview.chromium.org/8922010/diff/1/content/renderer/renderer_gpu_video_decoder_factories.cc#newcode16 content/renderer/renderer_gpu_video_decoder_factories.cc:16: : gpu_channel_host_(gpu_channel_host), context_(context) { nit: one initializer per ...
9 years ago (2011-12-13 02:17:24 UTC) #3
Ami GONE FROM CHROMIUM
Thanks for the review guys. http://codereview.chromium.org/8922010/diff/1/content/renderer/renderer_gpu_video_decoder_factories.cc File content/renderer/renderer_gpu_video_decoder_factories.cc (right): http://codereview.chromium.org/8922010/diff/1/content/renderer/renderer_gpu_video_decoder_factories.cc#newcode16 content/renderer/renderer_gpu_video_decoder_factories.cc:16: : gpu_channel_host_(gpu_channel_host), context_(context) { ...
9 years ago (2011-12-13 02:21:01 UTC) #4
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fischman@chromium.org/8922010/11001
9 years ago (2011-12-13 02:21:14 UTC) #5
commit-bot: I haz the power
Can't apply patch for file content/renderer/media/audio_renderer_impl.cc. While running patch -p1 --forward --force; patching file content/renderer/media/audio_renderer_impl.cc ...
9 years ago (2011-12-13 02:21:41 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fischman@chromium.org/8922010/12002
9 years ago (2011-12-13 02:25:51 UTC) #7
commit-bot: I haz the power
Try job failure for 8922010-12002 (retry) on linux_rel for step "ui_tests" (clobber build). It's a ...
9 years ago (2011-12-13 03:21:04 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fischman@chromium.org/8922010/12002
9 years ago (2011-12-13 03:46:27 UTC) #9
commit-bot: I haz the power
9 years ago (2011-12-13 05:12:24 UTC) #10
Change committed as 114183

Powered by Google App Engine
This is Rietveld 408576698