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

Side by Side Diff: media/filters/ffmpeg_demuxer_unittest.cc

Issue 1542013004: Switch to standard integer types in media/, take 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more stddef Created 4 years, 12 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 | « media/filters/ffmpeg_demuxer.cc ('k') | media/filters/ffmpeg_glue.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « media/filters/ffmpeg_demuxer.cc ('k') | media/filters/ffmpeg_glue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698