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

Issue 741863002: Chromecast: adds a media pipeline feeding data to CMA device backends. (Closed)

Created:
6 years, 1 month ago by gunsch
Modified:
6 years, 1 month ago
Reviewers:
lcwu1, damienv1, servolk
CC:
chromium-reviews, gunsch+watch_chromium.org, lcwu+watch_chromium.org, feature-media-reviews_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@cma-cdm
Project:
chromium
Visibility:
Public.

Description

Chromecast: adds a media pipeline feeding data to CMA device backends. The pipeline state transitions are based closely on the interface of ::media::Renderer. The pipeline interfaces themselves are intended to be used both renderer- and browser-side, with future renderer-side implementations using the CMA IPC code for data feeding. R=lcwu@chromium.org,damienv@chromium.org,servolk@chromium.org BUG=408189 Committed: https://crrev.com/bd08add63918abae4ef8fb10b515bef9ce153d14 Cr-Commit-Position: refs/heads/master@{#305081}

Patch Set 1 : #

Total comments: 20

Patch Set 2 : address nits, merge Pause/Flush #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2241 lines, -32 lines) Patch
A chromecast/media/cma/base/buffering_defs.h View 1 chunk +19 lines, -0 lines 0 comments Download
A + chromecast/media/cma/base/buffering_defs.cc View 1 chunk +3 lines, -6 lines 0 comments Download
M chromecast/media/cma/filters/demuxer_stream_adapter_unittest.cc View 2 chunks +7 lines, -7 lines 0 comments Download
A chromecast/media/cma/pipeline/audio_pipeline.h View 1 chunk +34 lines, -0 lines 0 comments Download
A + chromecast/media/cma/pipeline/audio_pipeline.cc View 1 chunk +5 lines, -2 lines 0 comments Download
A chromecast/media/cma/pipeline/audio_pipeline_impl.h View 1 chunk +79 lines, -0 lines 0 comments Download
A chromecast/media/cma/pipeline/audio_pipeline_impl.cc View 1 1 chunk +157 lines, -0 lines 0 comments Download
A chromecast/media/cma/pipeline/audio_video_pipeline_impl_unittest.cc View 1 chunk +211 lines, -0 lines 0 comments Download
A chromecast/media/cma/pipeline/av_pipeline_client.h View 1 chunk +35 lines, -0 lines 0 comments Download
A + chromecast/media/cma/pipeline/av_pipeline_client.cc View 1 chunk +3 lines, -3 lines 0 comments Download
A chromecast/media/cma/pipeline/av_pipeline_impl.h View 1 1 chunk +172 lines, -0 lines 0 comments Download
A chromecast/media/cma/pipeline/av_pipeline_impl.cc View 1 1 chunk +382 lines, -0 lines 0 comments Download
A chromecast/media/cma/pipeline/decrypt_util.h View 1 chunk +31 lines, -0 lines 0 comments Download
A chromecast/media/cma/pipeline/decrypt_util.cc View 1 chunk +128 lines, -0 lines 0 comments Download
A + chromecast/media/cma/pipeline/load_type.h View 1 chunk +9 lines, -6 lines 0 comments Download
A chromecast/media/cma/pipeline/media_pipeline.h View 1 chunk +69 lines, -0 lines 0 comments Download
A chromecast/media/cma/pipeline/media_pipeline_client.h View 1 chunk +37 lines, -0 lines 0 comments Download
A + chromecast/media/cma/pipeline/media_pipeline_client.cc View 1 chunk +3 lines, -3 lines 0 comments Download
A chromecast/media/cma/pipeline/media_pipeline_impl.h View 1 chunk +112 lines, -0 lines 0 comments Download
A chromecast/media/cma/pipeline/media_pipeline_impl.cc View 1 1 chunk +366 lines, -0 lines 0 comments Download
A chromecast/media/cma/pipeline/video_pipeline.h View 1 chunk +28 lines, -0 lines 0 comments Download
A + chromecast/media/cma/pipeline/video_pipeline.cc View 1 chunk +5 lines, -2 lines 0 comments Download
A chromecast/media/cma/pipeline/video_pipeline_client.h View 1 chunk +35 lines, -0 lines 0 comments Download
A + chromecast/media/cma/pipeline/video_pipeline_client.cc View 1 chunk +3 lines, -3 lines 0 comments Download
A chromecast/media/cma/pipeline/video_pipeline_impl.h View 1 chunk +82 lines, -0 lines 0 comments Download
A chromecast/media/cma/pipeline/video_pipeline_impl.cc View 1 1 chunk +174 lines, -0 lines 0 comments Download
M chromecast/media/media.gyp View 4 chunks +52 lines, -0 lines 0 comments Download

Messages

Total messages: 12 (3 generated)
gunsch
6 years, 1 month ago (2014-11-19 23:04:01 UTC) #1
damienv1
https://codereview.chromium.org/741863002/diff/40001/chromecast/media/cma/pipeline/av_pipeline_impl.cc File chromecast/media/cma/pipeline/av_pipeline_impl.cc (right): https://codereview.chromium.org/741863002/diff/40001/chromecast/media/cma/pipeline/av_pipeline_impl.cc#newcode60 chromecast/media/cma/pipeline/av_pipeline_impl.cc:60: if (media_keys_ && media_keys_callback_id_ != kNoCallbackId) { nit: remove ...
6 years, 1 month ago (2014-11-20 17:08:26 UTC) #4
damienv1
https://codereview.chromium.org/741863002/diff/40001/chromecast/media/cma/pipeline/media_pipeline_impl.cc File chromecast/media/cma/pipeline/media_pipeline_impl.cc (right): https://codereview.chromium.org/741863002/diff/40001/chromecast/media/cma/pipeline/media_pipeline_impl.cc#newcode259 chromecast/media/cma/pipeline/media_pipeline_impl.cc:259: if (has_audio_) { nit: remove curly braces (here and ...
6 years, 1 month ago (2014-11-20 17:28:28 UTC) #5
damienv1
https://codereview.chromium.org/741863002/diff/40001/chromecast/media/cma/pipeline/av_pipeline_impl.cc File chromecast/media/cma/pipeline/av_pipeline_impl.cc (right): https://codereview.chromium.org/741863002/diff/40001/chromecast/media/cma/pipeline/av_pipeline_impl.cc#newcode151 chromecast/media/cma/pipeline/av_pipeline_impl.cc:151: void AvPipelineImpl::Flush(const base::Closure& done_cb) { Could you merge Pause ...
6 years, 1 month ago (2014-11-20 17:33:39 UTC) #6
gunsch
https://codereview.chromium.org/741863002/diff/40001/chromecast/media/cma/pipeline/av_pipeline_impl.cc File chromecast/media/cma/pipeline/av_pipeline_impl.cc (right): https://codereview.chromium.org/741863002/diff/40001/chromecast/media/cma/pipeline/av_pipeline_impl.cc#newcode60 chromecast/media/cma/pipeline/av_pipeline_impl.cc:60: if (media_keys_ && media_keys_callback_id_ != kNoCallbackId) { On 2014/11/20 ...
6 years, 1 month ago (2014-11-20 19:50:27 UTC) #7
damienv1
lgtm
6 years, 1 month ago (2014-11-20 20:14:30 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/741863002/60001
6 years, 1 month ago (2014-11-20 20:46:53 UTC) #10
commit-bot: I haz the power
Committed patchset #2 (id:60001)
6 years, 1 month ago (2014-11-20 21:31:24 UTC) #11
commit-bot: I haz the power
6 years, 1 month ago (2014-11-20 21:32:04 UTC) #12
Message was sent while issue was closed.
Patchset 2 (id:??) landed as
https://crrev.com/bd08add63918abae4ef8fb10b515bef9ce153d14
Cr-Commit-Position: refs/heads/master@{#305081}

Powered by Google App Engine
This is Rietveld 408576698