OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "media/base/seekable_buffer.h" |
| 6 |
5 #include <stddef.h> | 7 #include <stddef.h> |
6 #include <stdint.h> | 8 #include <stdint.h> |
7 | 9 |
8 #include <cstdlib> | 10 #include <cstdlib> |
9 | 11 |
10 #include "base/logging.h" | 12 #include "base/logging.h" |
11 #include "base/macros.h" | 13 #include "base/macros.h" |
12 #include "base/memory/scoped_ptr.h" | |
13 #include "base/time/time.h" | 14 #include "base/time/time.h" |
14 #include "media/base/data_buffer.h" | 15 #include "media/base/data_buffer.h" |
15 #include "media/base/seekable_buffer.h" | |
16 #include "media/base/timestamp_constants.h" | 16 #include "media/base/timestamp_constants.h" |
17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
18 | 18 |
19 namespace media { | 19 namespace media { |
20 | 20 |
21 class SeekableBufferTest : public testing::Test { | 21 class SeekableBufferTest : public testing::Test { |
22 public: | 22 public: |
23 SeekableBufferTest() : buffer_(kBufferSize, kBufferSize) { | 23 SeekableBufferTest() : buffer_(kBufferSize, kBufferSize) { |
24 } | 24 } |
25 | 25 |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 EXPECT_EQ(tests[i].expected_time, actual) << "With test = { start:" | 351 EXPECT_EQ(tests[i].expected_time, actual) << "With test = { start:" |
352 << tests[i].first_time_useconds << ", duration:" | 352 << tests[i].first_time_useconds << ", duration:" |
353 << tests[i].duration_useconds << ", consumed:" | 353 << tests[i].duration_useconds << ", consumed:" |
354 << tests[i].consume_bytes << " }\n"; | 354 << tests[i].consume_bytes << " }\n"; |
355 | 355 |
356 buffer_.Clear(); | 356 buffer_.Clear(); |
357 } | 357 } |
358 } | 358 } |
359 | 359 |
360 } // namespace media | 360 } // namespace media |
OLD | NEW |