mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
jpeg2000sampling: fix critical when sampling is missing from caps
This can happen with real files
This commit is contained in:
parent
761f0d1ca9
commit
e5a0c4a751
1 changed files with 2 additions and 1 deletions
|
@ -46,7 +46,8 @@ GstJPEG2000Sampling
|
|||
gst_jpeg2000_sampling_from_string (const gchar * sampling_string)
|
||||
{
|
||||
GstJPEG2000Sampling i;
|
||||
g_return_val_if_fail (sampling_string != NULL, GST_JPEG2000_SAMPLING_NONE);
|
||||
if (sampling_string == NULL)
|
||||
return GST_JPEG2000_SAMPLING_NONE;
|
||||
for (i = 0; i < G_N_ELEMENTS (gst_jpeg2000_sampling_strings); ++i) {
|
||||
if (!g_strcmp0 (sampling_string, gst_jpeg2000_sampling_strings[i]))
|
||||
return (i + 1);
|
||||
|
|
Loading…
Reference in a new issue