mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
rawparse: pass flow returns upstream
rawvideoparse wouldn't error out on not-negotiated, but would just keep on going, because it didn't pass the flow return value back to the parent class and thus upstream, so the source wouldnt' stop streaming.
This commit is contained in:
parent
685bb8edb3
commit
7d8cc8a2e6
1 changed files with 2 additions and 2 deletions
|
@ -590,9 +590,9 @@ gst_raw_base_parse_handle_frame (GstBaseParse * parse,
|
||||||
new_caps_event = NULL;
|
new_caps_event = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
flow_ret =
|
||||||
gst_base_parse_finish_frame (parse, frame, out_size + frame->overhead);
|
gst_base_parse_finish_frame (parse, frame, out_size + frame->overhead);
|
||||||
|
|
||||||
|
|
||||||
return flow_ret;
|
return flow_ret;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue