// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_BASE_VIDEO_BITRATE_ALLOCATION_H_ #define MEDIA_BASE_VIDEO_BITRATE_ALLOCATION_H_ #include <stddef.h> #include <stdint.h> #include <string> #include "media/base/bitrate.h" #include "media/base/media_export.h" namespace media { // Class that describes how video bitrate, in bps, is allocated across temporal // and spatial layers. Note that bitrates are NOT cumulative. Depending on if // layers are dependent or not, it is up to the user to aggregate. class MEDIA_EXPORT VideoBitrateAllocation { … }; } // namespace media #endif // MEDIA_BASE_VIDEO_BITRATE_ALLOCATION_H_