mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +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
|
||||
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_YBR422 ||
|
||||
sampling == GST_JPEG2000_SAMPLING_YBR420
|
||||
|
|
Loading…
Reference in a new issue