aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/decoder_state.h')
-rw-r--r--src/decoder_state.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/decoder_state.h b/src/decoder_state.h
index 897c99f..ea5c792 100644
--- a/src/decoder_state.h
+++ b/src/decoder_state.h
@@ -33,7 +33,6 @@ struct DecoderState {
for (int ref_index = 0, mask = refresh_frame_flags; mask != 0;
++ref_index, mask >>= 1) {
if ((mask & 1) != 0) {
- reference_valid[ref_index] = true;
reference_frame_id[ref_index] = current_frame_id;
reference_frame[ref_index] = current_frame;
reference_order_hint[ref_index] = order_hint;
@@ -43,7 +42,6 @@ struct DecoderState {
// Clears all the reference frames.
void ClearReferenceFrames() {
- reference_valid = {};
reference_frame_id = {};
reference_order_hint = {};
for (int ref_index = 0; ref_index < kNumReferenceFrameTypes; ++ref_index) {
@@ -51,12 +49,11 @@ struct DecoderState {
}
}
- // reference_valid and reference_frame_id are used only if
- // sequence_header_.frame_id_numbers_present is true.
- // The reference_valid array is indexed by a reference picture slot number.
- // A value (boolean) in the array signifies whether the corresponding
- // reference picture slot is valid for use as a reference picture.
- std::array<bool, kNumReferenceFrameTypes> reference_valid = {};
+ // reference_frame_id and current_frame_id have meaningful values and are used
+ // in checks only if sequence_header_.frame_id_numbers_present is true. If
+ // sequence_header_.frame_id_numbers_present is false, reference_frame_id and
+ // current_frame_id are assigned the default value 0 and are not used in
+ // checks.
std::array<uint16_t, kNumReferenceFrameTypes> reference_frame_id = {};
// A valid value of current_frame_id is an unsigned integer of at most 16
// bits. -1 indicates current_frame_id is not initialized.
@@ -81,6 +78,11 @@ struct DecoderState {
// * |true| indicates that the reference frame is a backwards reference.
// Note: reference_frame_sign_bias[0] (for kReferenceFrameIntra) is not used.
std::array<bool, kNumReferenceFrameTypes> reference_frame_sign_bias = {};
+ // The RefValid[i] variable in the spec does not need to be stored explicitly.
+ // If the RefValid[i] variable in the spec is 0, then reference_frame[i] is a
+ // null pointer. (Whenever the spec sets the RefValid[i] variable to 0, we set
+ // reference_frame[i] to a null pointer.) If the RefValid[i] variable in the
+ // spec is 1, then reference_frame[i] contains a frame buffer pointer.
std::array<RefCountedBufferPtr, kNumReferenceFrameTypes> reference_frame;
};