File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -91,8 +91,8 @@ pub struct ReferenceFrame<T: Pixel> {
91
91
92
92
#[ derive( Debug , Clone , Default ) ]
93
93
pub struct ReferenceFramesSet < T : Pixel > {
94
- pub frames : [ Option < Arc < ReferenceFrame < T > > > ; ( REF_FRAMES as usize ) ] ,
95
- pub deblock : [ DeblockState ; ( REF_FRAMES as usize ) ] ,
94
+ pub frames : [ Option < Arc < ReferenceFrame < T > > > ; REF_FRAMES as usize ] ,
95
+ pub deblock : [ DeblockState ; REF_FRAMES as usize ] ,
96
96
}
97
97
98
98
impl < T : Pixel > ReferenceFramesSet < T > {
@@ -874,7 +874,7 @@ impl<T: Pixel> FrameInvariants<T> {
874
874
} ;
875
875
// use a reference to the previous frame in the same level
876
876
// (horizontally) as a third reference
877
- fi. ref_frames [ ref_in_previous_group. to_index ( ) ] = { slot_idx as u8 }
877
+ fi. ref_frames [ ref_in_previous_group. to_index ( ) ] = slot_idx as u8 ;
878
878
}
879
879
880
880
fi. set_ref_frame_sign_bias ( ) ;
You can’t perform that action at this time.
0 commit comments