mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
Coding style updates to ASM folders and ~25% of Codec folder header files (#206)
Coding style cleanups
This commit is contained in:
parent
36d5e870f7
commit
64fcdea750
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue