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

Side by Side Diff: media/ffmpeg/ffmpeg_common_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/ffmpeg/ffmpeg_common.cc ('k') | media/filters/audio_clock.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 <cstring> 8 #include <cstring>
6 9
7 #include "base/bind.h" 10 #include "base/bind.h"
8 #include "base/files/memory_mapped_file.h" 11 #include "base/files/memory_mapped_file.h"
9 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
11 #include "media/base/audio_decoder_config.h" 15 #include "media/base/audio_decoder_config.h"
12 #include "media/base/media.h" 16 #include "media/base/media.h"
13 #include "media/base/test_data_util.h" 17 #include "media/base/test_data_util.h"
14 #include "media/base/video_decoder_config.h" 18 #include "media/base/video_decoder_config.h"
15 #include "media/ffmpeg/ffmpeg_common.h" 19 #include "media/ffmpeg/ffmpeg_common.h"
16 #include "media/filters/ffmpeg_glue.h" 20 #include "media/filters/ffmpeg_glue.h"
17 #include "media/filters/in_memory_url_protocol.h" 21 #include "media/filters/in_memory_url_protocol.h"
18 #include "testing/gtest/include/gtest/gtest.h" 22 #include "testing/gtest/include/gtest/gtest.h"
19 23
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 // values; diff should verify. 264 // values; diff should verify.
261 #if 0 265 #if 0
262 printf("<enum name=\"FFmpegCodecHashes\" type=\"int\">\n"); 266 printf("<enum name=\"FFmpegCodecHashes\" type=\"int\">\n");
263 for (const auto& kv : sorted_hashes) 267 for (const auto& kv : sorted_hashes)
264 printf(" <int value=\"%d\" label=\"%s\"/>\n", kv.first, kv.second); 268 printf(" <int value=\"%d\" label=\"%s\"/>\n", kv.first, kv.second);
265 printf("</enum>\n"); 269 printf("</enum>\n");
266 #endif 270 #endif
267 } 271 }
268 272
269 } // namespace media 273 } // namespace media
OLDNEW
« no previous file with comments | « media/ffmpeg/ffmpeg_common.cc ('k') | media/filters/audio_clock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698