mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
jpeg2000parse: fix typo in sampling check
Fixing small typo that changes the value of the return.
This commit is contained in:
parent
dbda62f429
commit
276dd2750f
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ gst_jpeg2000_sampling_is_rgb (GstJPEG2000Sampling sampling)
|
||||||
gboolean
|
gboolean
|
||||||
gst_jpeg2000_sampling_is_yuv (GstJPEG2000Sampling sampling)
|
gst_jpeg2000_sampling_is_yuv (GstJPEG2000Sampling sampling)
|
||||||
{
|
{
|
||||||
return sampling = GST_JPEG2000_SAMPLING_YBRA4444_EXT ||
|
return sampling == GST_JPEG2000_SAMPLING_YBRA4444_EXT ||
|
||||||
sampling == GST_JPEG2000_SAMPLING_YBR444 ||
|
sampling == GST_JPEG2000_SAMPLING_YBR444 ||
|
||||||
sampling == GST_JPEG2000_SAMPLING_YBR422 ||
|
sampling == GST_JPEG2000_SAMPLING_YBR422 ||
|
||||||
sampling == GST_JPEG2000_SAMPLING_YBR420
|
sampling == GST_JPEG2000_SAMPLING_YBR420
|
||||||
|
|
Loading…
Reference in a new issue