Coding style updates to ASM folders and ~25% of Codec folder header files (#206)

Coding style cleanups
This commit is contained in:
adixonn 2019-04-01 13:33:35 -07:00 committed by Hassene Tmar
parent 36d5e870f7
commit 64fcdea750

View file

@ -696,13 +696,13 @@ gst_svtav1enc_encode (GstSvtAv1Enc * svtav1enc, GstVideoCodecFrame * frame)
return GST_FLOW_ERROR;
}
input_picture_buffer->yStride =
input_picture_buffer->y_stride =
GST_VIDEO_FRAME_COMP_STRIDE (&video_frame,
0) / GST_VIDEO_FRAME_COMP_PSTRIDE (&video_frame, 0);
input_picture_buffer->cbStride =
input_picture_buffer->cb_stride =
GST_VIDEO_FRAME_COMP_STRIDE (&video_frame,
1) / GST_VIDEO_FRAME_COMP_PSTRIDE (&video_frame, 1);
input_picture_buffer->crStride =
input_picture_buffer->cr_stride =
GST_VIDEO_FRAME_COMP_STRIDE (&video_frame,
2) / GST_VIDEO_FRAME_COMP_PSTRIDE (&video_frame, 2);