blob: f07fecafbaafefef8cf97462b3fda90de06abf2a [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cobalt/media/filters/source_buffer_platform.h"
#include "starboard/types.h"
namespace cobalt {
namespace media {
// 2MB: approximately 1 minute of 256Kbps content.
// 30MB: approximately 1 minute of 4Mbps content.
const size_t kSourceBufferAudioMemoryLimit = 2 * 1024 * 1024;
const size_t kSourceBufferVideoMemoryLimit = 30 * 1024 * 1024;
} // namespace media
} // namespace cobalt