From 45048ece81d395431d5604cf30596aaa62692da3 Mon Sep 17 00:00:00 2001 From: James Almer Date: Tue, 16 Apr 2019 23:00:49 -0300 Subject: avcodec/cbs_h2645: use the fixed() macro for forbidden_zero_bit This follows the spec definition, and removes a field from the relevant structs. Reviewed-by: Mark Thompson Signed-off-by: James Almer --- libavcodec/cbs_h264_syntax_template.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/cbs_h264_syntax_template.c') diff --git a/libavcodec/cbs_h264_syntax_template.c b/libavcodec/cbs_h264_syntax_template.c index cc9bd07590..95fc6d7194 100644 --- a/libavcodec/cbs_h264_syntax_template.c +++ b/libavcodec/cbs_h264_syntax_template.c @@ -33,7 +33,7 @@ static int FUNC(nal_unit_header)(CodedBitstreamContext *ctx, RWContext *rw, { int err; - u(1, forbidden_zero_bit, 0, 0); + fixed(1, forbidden_zero_bit, 0); ub(2, nal_ref_idc); ub(5, nal_unit_type); -- cgit v1.2.3