| 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 <stddef.h> |
| 6 #include <stdint.h> |
| 7 |
| 5 #include <algorithm> | 8 #include <algorithm> |
| 6 #include <deque> | 9 #include <deque> |
| 7 #include <string> | 10 #include <string> |
| 8 | 11 |
| 9 #include "base/bind.h" | 12 #include "base/bind.h" |
| 10 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 11 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "base/macros.h" |
| 12 #include "base/path_service.h" | 16 #include "base/path_service.h" |
| 13 #include "base/threading/thread.h" | 17 #include "base/threading/thread.h" |
| 14 #include "media/base/decrypt_config.h" | 18 #include "media/base/decrypt_config.h" |
| 15 #include "media/base/media_log.h" | 19 #include "media/base/media_log.h" |
| 16 #include "media/base/mock_demuxer_host.h" | 20 #include "media/base/mock_demuxer_host.h" |
| 17 #include "media/base/test_helpers.h" | 21 #include "media/base/test_helpers.h" |
| 18 #include "media/base/timestamp_constants.h" | 22 #include "media/base/timestamp_constants.h" |
| 19 #include "media/ffmpeg/ffmpeg_common.h" | 23 #include "media/ffmpeg/ffmpeg_common.h" |
| 20 #include "media/filters/ffmpeg_demuxer.h" | 24 #include "media/filters/ffmpeg_demuxer.h" |
| 21 #include "media/filters/file_data_source.h" | 25 #include "media/filters/file_data_source.h" |
| (...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1122 | 1126 |
| 1123 video->Read(NewReadCB(FROM_HERE, 3569, 66733, true)); | 1127 video->Read(NewReadCB(FROM_HERE, 3569, 66733, true)); |
| 1124 message_loop_.Run(); | 1128 message_loop_.Run(); |
| 1125 | 1129 |
| 1126 video->Read(NewReadCB(FROM_HERE, 1042, 200200, false)); | 1130 video->Read(NewReadCB(FROM_HERE, 1042, 200200, false)); |
| 1127 message_loop_.Run(); | 1131 message_loop_.Run(); |
| 1128 } | 1132 } |
| 1129 #endif | 1133 #endif |
| 1130 | 1134 |
| 1131 } // namespace media | 1135 } // namespace media |
| OLD | NEW |