| OLD | NEW |
| 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 "base/macros.h" |
| 9 |
| 8 namespace media { | 10 namespace media { |
| 9 | 11 |
| 10 struct H264SPS; | 12 struct H264SPS; |
| 11 struct H264SliceHeader; | 13 struct H264SliceHeader; |
| 12 | 14 |
| 13 class MEDIA_EXPORT H264POC { | 15 class MEDIA_EXPORT H264POC { |
| 14 public: | 16 public: |
| 15 H264POC(); | 17 H264POC(); |
| 16 ~H264POC(); | 18 ~H264POC(); |
| 17 | 19 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 31 int32_t ref_pic_order_cnt_lsb_; | 33 int32_t ref_pic_order_cnt_lsb_; |
| 32 int32_t prev_frame_num_; | 34 int32_t prev_frame_num_; |
| 33 int32_t prev_frame_num_offset_; | 35 int32_t prev_frame_num_offset_; |
| 34 | 36 |
| 35 DISALLOW_COPY_AND_ASSIGN(H264POC); | 37 DISALLOW_COPY_AND_ASSIGN(H264POC); |
| 36 }; | 38 }; |
| 37 | 39 |
| 38 } // namespace media | 40 } // namespace media |
| 39 | 41 |
| 40 #endif // MEDIA_VIDEO_H264_POC_H_ | 42 #endif // MEDIA_VIDEO_H264_POC_H_ |
| OLD | NEW |