| Index: media/filters/source_buffer_stream.cc
|
| diff --git a/media/filters/source_buffer_stream.cc b/media/filters/source_buffer_stream.cc
|
| index 20e9156ad02e207ed8b676deac038553d6cafdeb..666edd9d0a34703c130240fe8c25211fe6ef4e46 100644
|
| --- a/media/filters/source_buffer_stream.cc
|
| +++ b/media/filters/source_buffer_stream.cc
|
| @@ -308,19 +308,10 @@ static base::TimeDelta kSeekToStartFudgeRoom() {
|
| return base::TimeDelta::FromMilliseconds(1000);
|
| }
|
| // The maximum amount of data in bytes the stream will keep in memory.
|
| -#if defined(GOOGLE_TV)
|
| -// In Google TV, set the size of the buffer to 1 min because of
|
| -// the limited memory of the embedded system.
|
| -// 2MB: approximately 1 minutes of 256Kbps content.
|
| -// 30MB: approximately 1 minutes of 4Mbps content.
|
| -static int kDefaultAudioMemoryLimit = 2 * 1024 * 1024;
|
| -static int kDefaultVideoMemoryLimit = 30 * 1024 * 1024;
|
| -#else
|
| // 12MB: approximately 5 minutes of 320Kbps content.
|
| // 150MB: approximately 5 minutes of 4Mbps content.
|
| static int kDefaultAudioMemoryLimit = 12 * 1024 * 1024;
|
| static int kDefaultVideoMemoryLimit = 150 * 1024 * 1024;
|
| -#endif
|
|
|
| namespace media {
|
|
|
|
|