Commit e132fae1 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avcodec/cbs_h266: Remove double ;

Fixes a warning from GCC when in pedantic mode:
"extra semicolon in struct or union specified"
May also fix compilation with MSVC, see
https://fate.ffmpeg.org/report.cgi?time=20230629174305&slot=x86_64-msvc17-windows-nativeReviewed-by: 's avatarJames Almer <jamrial@gmail.com>
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent 9367b58e
......@@ -80,7 +80,7 @@ typedef struct H266GeneralConstraintsInfo {
/* inter */
uint8_t gci_no_ref_pic_resampling_constraint_flag;
uint8_t gci_no_res_change_in_clvs_constraint_flag;;
uint8_t gci_no_res_change_in_clvs_constraint_flag;
uint8_t gci_no_weighted_prediction_constraint_flag;
uint8_t gci_no_ref_wraparound_constraint_flag;
uint8_t gci_no_temporal_mvp_constraint_flag;
......@@ -211,7 +211,7 @@ typedef struct H266RawVUI {
uint8_t vui_aspect_ratio_idc;
uint16_t vui_sar_width;
uint16_t vui_sar_height;;
uint16_t vui_sar_height;
uint8_t vui_overscan_info_present_flag;
uint8_t vui_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