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

Side by Side Diff: media/base/limits.h

Issue 3031036: Play WebM live stream (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 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 unified diff | Download patch
« no previous file with comments | « no previous file | media/filters/ffmpeg_demuxer.cc » ('j') | media/filters/ffmpeg_demuxer.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Contains limit definition constants for the media subsystem. 5 // Contains limit definition constants for the media subsystem.
6 6
7 #ifndef MEDIA_BASE_LIMITS_H_ 7 #ifndef MEDIA_BASE_LIMITS_H_
8 #define MEDIA_BASE_LIMITS_H_ 8 #define MEDIA_BASE_LIMITS_H_
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 11
12 namespace media { 12 namespace media {
13 13
14 struct Limits { 14 struct Limits {
15 // For video. 15 // For video.
16 static const size_t kMaxDimension = (1 << 15) - 1; // 32767 16 static const size_t kMaxDimension = (1 << 15) - 1; // 32767
17 static const size_t kMaxCanvas = (1 << (14 * 2)); // 16384 x 16384 17 static const size_t kMaxCanvas = (1 << (14 * 2)); // 16384 x 16384
18 18
19 // For audio. 19 // For audio.
20 static const size_t kMaxSampleRate = 192000; 20 static const size_t kMaxSampleRate = 192000;
21 static const size_t kMaxChannels = 32; 21 static const size_t kMaxChannels = 32;
22 static const size_t kMaxBPS = 64; 22 static const size_t kMaxBPS = 64;
23
24 // Maximum possible time.
25 static const int64 kMaxTimeInMicroseconds = kint64max;
23 }; 26 };
24 27
25 } // namespace media 28 } // namespace media
26 29
27 #endif // MEDIA_BASE_LIMITS_H_ 30 #endif // MEDIA_BASE_LIMITS_H_
28
OLDNEW
« no previous file with comments | « no previous file | media/filters/ffmpeg_demuxer.cc » ('j') | media/filters/ffmpeg_demuxer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698