1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MOJO_MEDIA_MODELS_DEMAND_H_
6 #define MOJO_MEDIA_MODELS_DEMAND_H_
7
8 namespace mojo {
9 namespace media {
10
11 // Expresses packet demand.
12 enum class Demand {
13 // Ordered such that (kNegative < kNeutral < kPositive).
jeffbrown
2016/02/02 05:35:47
If you intend for these values to be ordered, assi
If you intend for these values to be ordered, assign them values. eg. -1, 0, 1.
Also, please add some comments to explain them. This is a central concept in
your design.
On 2016/02/02 05:35:47, jeffbrown wrote:
> If you intend for these values to be ordered, assign them values. eg. -1, 0,
1.
>
> Also, please add some comments to explain them. This is a central concept in
> your design.
Issue 1577953002: Motown in-proc streaming framework used to implement media services.
(Closed)
Created 4 years, 11 months ago by dalesat
Modified 4 years, 10 months ago
Reviewers: jamesr, jeffbrown, johngro
Base URL: https://github.com/domokit/mojo.git@master
Comments: 349