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

Unified Diff: media/filters/h264_parser.h

Issue 145973012: Add support for aspect ratio VUI parameters in H264Parser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | media/filters/h264_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/h264_parser.h
diff --git a/media/filters/h264_parser.h b/media/filters/h264_parser.h
index 7f6eb3fff2769442fa813d28e6a23ccdee923541..f336032f50324549e9f659dc9689f72c1581c99a 100644
--- a/media/filters/h264_parser.h
+++ b/media/filters/h264_parser.h
@@ -89,6 +89,8 @@ struct MEDIA_EXPORT H264SPS {
int frame_crop_bottom_offset;
bool vui_parameters_present_flag;
int chroma_array_type;
+ int sar_width; // Set to 0 when not specified.
+ int sar_height; // Set to 0 when not specified.
};
struct MEDIA_EXPORT H264PPS {
« no previous file with comments | « no previous file | media/filters/h264_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698