summaryrefslogtreecommitdiffstats
path: root/media/filters/source_buffer_platform.h
blob: 09a3f07d468486a9f00c60d901ce4060fd9ba9c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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.

#ifndef MEDIA_FILTERS_SOURCE_BUFFER_PLATFORM_H_
#define MEDIA_FILTERS_SOURCE_BUFFER_PLATFORM_H_

#include <stddef.h>

#include "media/base/media_export.h"

namespace media {

// The maximum amount of data in bytes the stream will keep in memory.
MEDIA_EXPORT extern const size_t kSourceBufferAudioMemoryLimit;
MEDIA_EXPORT extern const size_t kSourceBufferVideoMemoryLimit;

}  // namespace media

#endif  // MEDIA_FILTERS_SOURCE_BUFFER_PLATFORM_H_