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

Side by Side Diff: media/video/h264_poc.h

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/video/gpu_memory_buffer_video_frame_pool_unittest.cc ('k') | media/video/h264_poc.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef MEDIA_VIDEO_H264_POC_H_ 5 #ifndef MEDIA_VIDEO_H264_POC_H_
6 #define MEDIA_VIDEO_H264_POC_H_ 6 #define MEDIA_VIDEO_H264_POC_H_
7 7
8 #include <stdint.h>
9
8 #include "base/macros.h" 10 #include "base/macros.h"
9 11
10 namespace media { 12 namespace media {
11 13
12 struct H264SPS; 14 struct H264SPS;
13 struct H264SliceHeader; 15 struct H264SliceHeader;
14 16
15 class MEDIA_EXPORT H264POC { 17 class MEDIA_EXPORT H264POC {
16 public: 18 public:
17 H264POC(); 19 H264POC();
(...skipping 15 matching lines...) Expand all
33 int32_t ref_pic_order_cnt_lsb_; 35 int32_t ref_pic_order_cnt_lsb_;
34 int32_t prev_frame_num_; 36 int32_t prev_frame_num_;
35 int32_t prev_frame_num_offset_; 37 int32_t prev_frame_num_offset_;
36 38
37 DISALLOW_COPY_AND_ASSIGN(H264POC); 39 DISALLOW_COPY_AND_ASSIGN(H264POC);
38 }; 40 };
39 41
40 } // namespace media 42 } // namespace media
41 43
42 #endif // MEDIA_VIDEO_H264_POC_H_ 44 #endif // MEDIA_VIDEO_H264_POC_H_
OLDNEW
« no previous file with comments | « media/video/gpu_memory_buffer_video_frame_pool_unittest.cc ('k') | media/video/h264_poc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698