[inter] write ref pic list to the bitstream

This commit is contained in:
Marko Viitanen 2021-09-08 13:50:35 +03:00
parent 63660e990c
commit 5271659f76

View file

@ -1263,6 +1263,7 @@ void kvz_encoder_state_write_bitstream_slice_header(
if (state->frame->pictype != KVZ_NAL_IDR_W_RADL if (state->frame->pictype != KVZ_NAL_IDR_W_RADL
&& state->frame->pictype != KVZ_NAL_IDR_N_LP) { && state->frame->pictype != KVZ_NAL_IDR_N_LP) {
WRITE_UE(stream, state->frame->slicetype, "sh_slice_type"); WRITE_UE(stream, state->frame->slicetype, "sh_slice_type");
kvz_encoder_state_write_bitstream_ref_pic_list(stream, state);
} }