mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
codecparsers: av1: Fix a typo in frame_restoration_type setting.
Fixes: #1500 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1974>
This commit is contained in:
parent
7196abf7a3
commit
e8ec8f7dd7
1 changed files with 3 additions and 3 deletions
|
@ -2602,9 +2602,9 @@ gst_av1_parse_loop_restoration_params (GstAV1Parser * parser,
|
|||
|
||||
if (frame_header->all_lossless || frame_header->allow_intrabc
|
||||
|| !seq_header->enable_restoration) {
|
||||
lr_params->frame_restoration_type[0] = GST_AV1_FRAME_RESTORE_NONE;
|
||||
lr_params->frame_restoration_type[0] = GST_AV1_FRAME_RESTORE_NONE;
|
||||
lr_params->frame_restoration_type[0] = GST_AV1_FRAME_RESTORE_NONE;
|
||||
for (i = 0; i < GST_AV1_MAX_NUM_PLANES; i++)
|
||||
lr_params->frame_restoration_type[i] = GST_AV1_FRAME_RESTORE_NONE;
|
||||
|
||||
lr_params->uses_lr = 0;
|
||||
goto success;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue