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

Side by Side Diff: media/base/demuxer_perftest.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/base/demuxer.h ('k') | media/base/djb2_unittest.cc » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "base/at_exit.h" 8 #include "base/at_exit.h"
6 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/macros.h"
7 #include "base/message_loop/message_loop.h" 11 #include "base/message_loop/message_loop.h"
8 #include "base/strings/string_number_conversions.h" 12 #include "base/strings/string_number_conversions.h"
9 #include "base/time/time.h" 13 #include "base/time/time.h"
14 #include "build/build_config.h"
10 #include "media/base/media.h" 15 #include "media/base/media.h"
11 #include "media/base/media_log.h" 16 #include "media/base/media_log.h"
12 #include "media/base/test_data_util.h" 17 #include "media/base/test_data_util.h"
13 #include "media/base/timestamp_constants.h" 18 #include "media/base/timestamp_constants.h"
14 #include "media/filters/ffmpeg_demuxer.h" 19 #include "media/filters/ffmpeg_demuxer.h"
15 #include "media/filters/file_data_source.h" 20 #include "media/filters/file_data_source.h"
16 #include "testing/gtest/include/gtest/gtest.h" 21 #include "testing/gtest/include/gtest/gtest.h"
17 #include "testing/perf/perf_test.h" 22 #include "testing/perf/perf_test.h"
18 23
19 namespace media { 24 namespace media {
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 #endif 228 #endif
224 #if defined(OS_CHROMEOS) 229 #if defined(OS_CHROMEOS)
225 RunDemuxerBenchmark("bear.flac"); 230 RunDemuxerBenchmark("bear.flac");
226 #endif 231 #endif
227 #if defined(USE_PROPRIETARY_CODECS) && defined(OS_CHROMEOS) 232 #if defined(USE_PROPRIETARY_CODECS) && defined(OS_CHROMEOS)
228 RunDemuxerBenchmark("bear.avi"); 233 RunDemuxerBenchmark("bear.avi");
229 #endif 234 #endif
230 } 235 }
231 236
232 } // namespace media 237 } // namespace media
OLDNEW
« no previous file with comments | « media/base/demuxer.h ('k') | media/base/djb2_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698