mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
omxvideodec: fix pool caps reference stealing
gst_buffer_pool_config_get_params() doesn't ref the returning caps; so gst_caps_replace() was unreffing the reference owned by the pool. https://bugzilla.gnome.org/show_bug.cgi?id=796918
This commit is contained in:
parent
0996019c07
commit
9ed1c2e75e
1 changed files with 1 additions and 1 deletions
|
@ -721,7 +721,7 @@ gst_omx_video_dec_allocate_output_buffers (GstOMXVideoDec * self)
|
|||
max = min;
|
||||
} else if (max < min) {
|
||||
/* Can't use pool because can't have enough buffers */
|
||||
gst_caps_replace (&caps, NULL);
|
||||
caps = NULL;
|
||||
} else {
|
||||
min = max;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue