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

Unified Diff: docs/piranha_plant.md

Issue 1324603002: [Docs] Another round of stylistic fixes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « docs/ninja_build.md ('k') | docs/profiling_content_shell_on_android.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: docs/piranha_plant.md
diff --git a/docs/piranha_plant.md b/docs/piranha_plant.md
index 4b6db33e2898c312b6c3f6c52ce0ac978524d6cb..692b32b6d84ee6aef9b76f30e61fecc25a54a704 100644
--- a/docs/piranha_plant.md
+++ b/docs/piranha_plant.md
@@ -1,54 +1,93 @@
-# Introduction
+# Piranha Plant
-Piranha Plant is the name of a project, started in November 2013, that aims to deliver the future architecture of MediaStreams in Chromium.
+Piranha Plant is the name of a project, started in November 2013, that aims to
+deliver the future architecture of MediaStreams in Chromium.
-Project members are listed in the [group for the project](https://groups.google.com/a/chromium.org/forum/#!members/piranha-plant).
+Project members are listed in the
+[group for the project](https://groups.google.com/a/chromium.org/forum/#!members/piranha-plant).
-The Piranha Plant is a monster plant that has appeared in many of the Super Mario games. In the original Super Mario Bros, it hid in the green pipes and is thus an apt name for the project as we are fighting "monsters in the plumbing."
+The Piranha Plant is a monster plant that has appeared in many of the Super
+Mario games. In the original Super Mario Bros, it hid in the green pipes and is
+thus an apt name for the project as we are fighting "monsters in the plumbing."
![http://files.hypervisor.fr/img/super_mario_piranha_plant.png](http://files.hypervisor.fr/img/super_mario_piranha_plant.png)
-# Background
-
-When the MediaStream spec initially came to be, it was tightly coupled with PeerConnection. The infrastructure for both of these was initially implemented primarily in libjingle, and then used by Chromium. For this reason, the MediaStream implementation in Chromium is still somewhat coupled with the PeerConnection implementation, it still uses some libjingle interfaces on the Chromium side, and progress is sometimes more difficult as changes need to land in libjingle before changes can be made in Chromium.
-
-Since the early days, the MediaStream spec has evolved so that PeerConnection is just one destination for a MediaStream, multiple teams are or will be consuming the MediaStream infrastructure, and we have a clearer vision of what the architecture should look like now that the spec is relatively stable.
-
-# Goals
- 1. Document the idealized future design for MediaStreams in Chromium (MS) as well as the current state.
- 1. Create and execute on a plan to incrementally implement the future design.
- 1. Improve quality, maintainability and readability/understandability of the MS code.
- 1. Make life easier for Chromium developers using MS.
- 1. Balance concerns and priorities of the different teams that are or will be using MS in Chromium.
- 1. Do the above without hurting our ability to produce the WebRTC.org deliverables, and without hurting interoperability between Chromium and other software built on the WebRTC.org deliverables.
-
-# Deliverables
-
- 1. Project code name: Piranha Plant.
- 1. A [design document](http://www.chromium.org/developers/design-documents/idealized-mediastream-design) for the idealized future design (work in progress).
- 1. A document laying out a plan for incremental steps to achieve as much of the idealized design as is pragmatic. See below for current draft.
- 1. A [master bug](http://crbug.com/323223) to collect all existing and currently planned work items:
- 1. Sub-bugs of the master bug, for all currently known and planned work.
- 1. A document describing changed and improved team policies to help us keep improving code quality (e.g. naming, improved directory structure, OWNERS files). Not started.
-
-# Task List
-Here are some upcoming tasks we need to work on to progress towards the idealized design. Those currently being worked on have emails at the front:
- * General
- * More restrictive OWNERS
- * DEPS files to limit dependencies on libjingle
- * Rename MediaStream{Manager, Dispatcher, DispatcherHandler} to CaptureDevice{...} since it is a bit confusing to use the MediaStream name here.
- * Rename MediaStreamDependencyFactory to PeerConnectionDependencyFactory.
- * Split up MediaStreamImpl.
- * Change the RTCPeerConnectionHandler to only create the PeerConnection and related stuff when necessary.
- * Audio
- * [xians](xians.md) Add a Content API where given an audio WebMediaStreamTrack, you can register as a sink for that track.
- * Move RendererMedia, the current local audio track sink interface, to //media and change as necessary.
- * Put a Chrome-side adapter on the libjingle audio track interface.
- * Move the APM from libjingle to Chrome, putting it behind an experimental flag to start with.
- * Do format change notifications on the capture thread.
- * Switch to a push model for received PeerConnection audio.
- * Video
- * [perkj](perkj.md) Add a Chrome-side interface representing a sink for a video track.
- * [perkj](perkj.md) Add a Content API where given a video WebMediaStreamTrack, you can register as a sink for that track.
- * Add a Chrome-side adapter for libjingle’s video track interface, which may also need to change.
- * Implement a Chrome-side VideoSource and constraints handling (currently in libjingle).
+[TOC]
+
+## Background
+
+When the MediaStream spec initially came to be, it was tightly coupled with
+PeerConnection. The infrastructure for both of these was initially implemented
+primarily in libjingle, and then used by Chromium. For this reason, the
+MediaStream implementation in Chromium is still somewhat coupled with the
+PeerConnection implementation, it still uses some libjingle interfaces on the
+Chromium side, and progress is sometimes more difficult as changes need to land
+in libjingle before changes can be made in Chromium.
+
+Since the early days, the MediaStream spec has evolved so that PeerConnection is
+just one destination for a MediaStream, multiple teams are or will be consuming
+the MediaStream infrastructure, and we have a clearer vision of what the
+architecture should look like now that the spec is relatively stable.
+
+## Goals
+
+1. Document the idealized future design for MediaStreams in Chromium (MS) as
+ well as the current state.
+1. Create and execute on a plan to incrementally implement the future design.
+1. Improve quality, maintainability and readability/understandability of the MS
+ code.
+1. Make life easier for Chromium developers using MS.
+1. Balance concerns and priorities of the different teams that are or will be
+ using MS in Chromium.
+1. Do the above without hurting our ability to produce the WebRTC.org
+ deliverables, and without hurting interoperability between Chromium and
+ other software built on the WebRTC.org deliverables.
+
+## Deliverables
+
+1. Project code name: Piranha Plant.
+1. A [design document](http://www.chromium.org/developers/design-documents/idealized-mediastream-design)
+ for the idealized future design (work in progress).
+1. A document laying out a plan for incremental steps to achieve as much of the
+ idealized design as is pragmatic. See below for current draft.
+1. A [master bug](https://crbug.com/323223) to collect all existing and
+ currently planned work items:
+1. Sub-bugs of the master bug, for all currently known and planned work.
+1. A document describing changed and improved team policies to help us keep
+ improving code quality (e.g. naming, improved directory structure, OWNERS
+ files). Not started.
+
+## Task List
+
+Here are some upcoming tasks we need to work on to progress towards the
+idealized design. Those currently being worked on have emails at the front:
+
+* General
+ * More restrictive OWNERS
+ * DEPS files to limit dependencies on libjingle
+ * Rename MediaStream{Manager, Dispatcher, DispatcherHandler} to
+ CaptureDevice{...} since it is a bit confusing to use the MediaStream
+ name here.
+ * Rename MediaStreamDependencyFactory to PeerConnectionDependencyFactory.
+ * Split up MediaStreamImpl.
+ * Change the RTCPeerConnectionHandler to only create the PeerConnection
+ and related stuff when necessary.
+* Audio
+ * [xians] Add a Content API where given an audio WebMediaStreamTrack, you
+ can register as a sink for that track.
+ * Move RendererMedia, the current local audio track sink interface, to
+ //media and change as necessary.
+ * Put a Chrome-side adapter on the libjingle audio track interface.
+ * Move the APM from libjingle to Chrome, putting it behind an experimental
+ flag to start with.
+ * Do format change notifications on the capture thread.
+ * Switch to a push model for received PeerConnection audio.
+* Video
+ * [perkj] Add a Chrome-side interface representing a sink for a video
+ track.
+ * [perkj] Add a Content API where given a video WebMediaStreamTrack, you
+ can register as a sink for that track.
+ * Add a Chrome-side adapter for libjingle’s video track interface, which
+ may also need to change.
+ * Implement a Chrome-side VideoSource and constraints handling (currently
+ in libjingle).
« no previous file with comments | « docs/ninja_build.md ('k') | docs/profiling_content_shell_on_android.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698