mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
msdkav1enc: We should not set other alignment here
According to spec, we have 32bit alignment for height (progressive) and 16bit alignment for width, so here we don't need to add other alignment settings. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3050>
This commit is contained in:
parent
beece4e778
commit
03a24de4cb
1 changed files with 0 additions and 5 deletions
|
@ -143,11 +143,6 @@ gst_msdkav1enc_configure (GstMsdkEnc * encoder)
|
|||
break;
|
||||
}
|
||||
|
||||
encoder->param.mfx.FrameInfo.Width =
|
||||
GST_ROUND_UP_128 (encoder->param.mfx.FrameInfo.CropW);
|
||||
encoder->param.mfx.FrameInfo.Height =
|
||||
GST_ROUND_UP_32 (encoder->param.mfx.FrameInfo.CropH);
|
||||
|
||||
/* Always turn on this flag for AV1 */
|
||||
/* encoder->param.mfx.LowPower = MFX_CODINGOPTION_ON; */
|
||||
|
||||
|
|
Loading…
Reference in a new issue