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

Side by Side Diff: media/formats/webm/webm_colour_parser.h

Issue 2803563007: Refactoring of media::HDRMetadata struct (Closed)
Patch Set: Add: using Chromaticity = gfx::PointF Created 3 years, 8 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/hdr_metadata.h ('k') | media/formats/webm/webm_colour_parser.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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_FORMATS_WEBM_WEBM_COLOUR_PARSER_H_ 5 #ifndef MEDIA_FORMATS_WEBM_WEBM_COLOUR_PARSER_H_
6 #define MEDIA_FORMATS_WEBM_WEBM_COLOUR_PARSER_H_ 6 #define MEDIA_FORMATS_WEBM_WEBM_COLOUR_PARSER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "media/base/hdr_metadata.h" 9 #include "media/base/hdr_metadata.h"
10 #include "media/base/video_color_space.h" 10 #include "media/base/video_color_space.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 int64_t bits_per_channel_; 69 int64_t bits_per_channel_;
70 int64_t chroma_subsampling_horz_; 70 int64_t chroma_subsampling_horz_;
71 int64_t chroma_subsampling_vert_; 71 int64_t chroma_subsampling_vert_;
72 int64_t cb_subsampling_horz_; 72 int64_t cb_subsampling_horz_;
73 int64_t cb_subsampling_vert_; 73 int64_t cb_subsampling_vert_;
74 int64_t chroma_siting_horz_; 74 int64_t chroma_siting_horz_;
75 int64_t chroma_siting_vert_; 75 int64_t chroma_siting_vert_;
76 int64_t range_; 76 int64_t range_;
77 int64_t transfer_characteristics_; 77 int64_t transfer_characteristics_;
78 int64_t primaries_; 78 int64_t primaries_;
79 int64_t max_cll_; 79 int64_t max_content_light_level_;
80 int64_t max_fall_; 80 int64_t max_frame_average_light_level_;
81 81
82 WebMMasteringMetadataParser mastering_metadata_parser_; 82 WebMMasteringMetadataParser mastering_metadata_parser_;
83 bool mastering_metadata_parsed_ = false; 83 bool mastering_metadata_parsed_ = false;
84 84
85 DISALLOW_COPY_AND_ASSIGN(WebMColourParser); 85 DISALLOW_COPY_AND_ASSIGN(WebMColourParser);
86 }; 86 };
87 87
88 } // namespace media 88 } // namespace media
89 89
90 #endif // MEDIA_FORMATS_WEBM_WEBM_COLOUR_PARSER_H_ 90 #endif // MEDIA_FORMATS_WEBM_WEBM_COLOUR_PARSER_H_
OLDNEW
« no previous file with comments | « media/base/hdr_metadata.h ('k') | media/formats/webm/webm_colour_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698