Unverified Commit 317fa3bd authored by Lynne's avatar Lynne

h2645_vui: expose aspect_ratio_info_present_flag

parent dc269455
......@@ -36,12 +36,10 @@
void ff_h2645_decode_common_vui_params(GetBitContext *gb, H2645VUI *vui, void *logctx)
{
int aspect_ratio_info_present_flag;
av_log(logctx, AV_LOG_DEBUG, "Decoding VUI\n");
aspect_ratio_info_present_flag = get_bits1(gb);
if (aspect_ratio_info_present_flag) {
vui->aspect_ratio_info_present_flag = get_bits1(gb);
if (vui->aspect_ratio_info_present_flag) {
vui->aspect_ratio_idc = get_bits(gb, 8);
if (vui->aspect_ratio_idc < FF_ARRAY_ELEMS(ff_h2645_pixel_aspect))
vui->sar = ff_h2645_pixel_aspect[vui->aspect_ratio_idc];
......
......@@ -27,6 +27,7 @@
typedef struct H2645VUI {
AVRational sar;
int aspect_ratio_idc;
int aspect_ratio_info_present_flag;
int overscan_info_present_flag;
int overscan_appropriate_flag;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment