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

Side by Side Diff: media/filters/vpx_video_decoder.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 5 years 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/vp9_raw_bits_reader_unittest.cc ('k') | media/filters/webvtt_util.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 "media/filters/vpx_video_decoder.h" 5 #include "media/filters/vpx_video_decoder.h"
6 6
7 #include <stddef.h>
8 #include <stdint.h>
9
7 #include <algorithm> 10 #include <algorithm>
8 #include <string> 11 #include <string>
9 #include <vector> 12 #include <vector>
10 13
11 #include "base/bind.h" 14 #include "base/bind.h"
12 #include "base/callback_helpers.h" 15 #include "base/callback_helpers.h"
13 #include "base/command_line.h" 16 #include "base/command_line.h"
14 #include "base/location.h" 17 #include "base/location.h"
15 #include "base/logging.h" 18 #include "base/logging.h"
19 #include "base/macros.h"
16 #include "base/metrics/histogram_macros.h" 20 #include "base/metrics/histogram_macros.h"
17 #include "base/single_thread_task_runner.h" 21 #include "base/single_thread_task_runner.h"
18 #include "base/stl_util.h" 22 #include "base/stl_util.h"
19 #include "base/strings/string_number_conversions.h" 23 #include "base/strings/string_number_conversions.h"
20 #include "base/sys_byteorder.h" 24 #include "base/sys_byteorder.h"
21 #include "base/sys_info.h" 25 #include "base/sys_info.h"
22 #include "base/trace_event/memory_allocator_dump.h" 26 #include "base/trace_event/memory_allocator_dump.h"
23 #include "base/trace_event/memory_dump_manager.h" 27 #include "base/trace_event/memory_dump_manager.h"
24 #include "base/trace_event/memory_dump_provider.h" 28 #include "base/trace_event/memory_dump_provider.h"
25 #include "base/trace_event/process_memory_dump.h" 29 #include "base/trace_event/process_memory_dump.h"
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 (*video_frame)->visible_data(VideoFrame::kUPlane), 620 (*video_frame)->visible_data(VideoFrame::kUPlane),
617 (*video_frame)->stride(VideoFrame::kUPlane), 621 (*video_frame)->stride(VideoFrame::kUPlane),
618 (*video_frame)->visible_data(VideoFrame::kVPlane), 622 (*video_frame)->visible_data(VideoFrame::kVPlane),
619 (*video_frame)->stride(VideoFrame::kVPlane), coded_size.width(), 623 (*video_frame)->stride(VideoFrame::kVPlane), coded_size.width(),
620 coded_size.height()); 624 coded_size.height());
621 625
622 return true; 626 return true;
623 } 627 }
624 628
625 } // namespace media 629 } // namespace media
OLDNEW
« no previous file with comments | « media/filters/vp9_raw_bits_reader_unittest.cc ('k') | media/filters/webvtt_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698