mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 00:45:56 +00:00
nvvp9dec: Fix return value
It should return GstFlowReturn value, not boolean Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3870>
This commit is contained in:
parent
b12c66042b
commit
29bd8de052
1 changed files with 1 additions and 1 deletions
|
@ -480,7 +480,7 @@ gst_nv_vp9_dec_decode_picture (GstVp9Decoder * decoder,
|
|||
dpb->pic_list[i]);
|
||||
if (!other_frame) {
|
||||
GST_ERROR_OBJECT (self, "Couldn't get decoder frame from picture");
|
||||
return FALSE;
|
||||
return GST_FLOW_ERROR;
|
||||
}
|
||||
|
||||
ref_frame_map[i] = other_frame->index;
|
||||
|
|
Loading…
Reference in a new issue