mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
omxvideodec: Check return values of buffer pool config parsing functions
CID 1214588
This commit is contained in:
parent
59ac1dd03b
commit
e08c0dc88a
1 changed files with 10 additions and 2 deletions
|
@ -561,8 +561,16 @@ gst_omx_video_dec_allocate_output_buffers (GstOMXVideoDec * self)
|
||||||
GstAllocator *allocator;
|
GstAllocator *allocator;
|
||||||
|
|
||||||
config = gst_buffer_pool_get_config (pool);
|
config = gst_buffer_pool_get_config (pool);
|
||||||
gst_buffer_pool_config_get_params (config, &caps, NULL, &min, &max);
|
if (!gst_buffer_pool_config_get_params (config, &caps, NULL, &min, &max)) {
|
||||||
gst_buffer_pool_config_get_allocator (config, &allocator, NULL);
|
GST_ERROR_OBJECT (self, "Can't get buffer pool params");
|
||||||
|
err = OMX_ErrorUndefined;
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
if (!gst_buffer_pool_config_get_allocator (config, &allocator, NULL)) {
|
||||||
|
GST_ERROR_OBJECT (self, "Can't get buffer pool allocator");
|
||||||
|
err = OMX_ErrorUndefined;
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
|
||||||
/* Need at least 2 buffers for anything meaningful */
|
/* Need at least 2 buffers for anything meaningful */
|
||||||
min = MAX (MAX (min, port->port_def.nBufferCountMin), 4);
|
min = MAX (MAX (min, port->port_def.nBufferCountMin), 4);
|
||||||
|
|
Loading…
Reference in a new issue