diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.com> | 2020-04-10 09:59:02 +0200 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.com> | 2020-04-10 11:37:58 +0200 |
commit | 8530407ebe1135b0f01d970e7e830219b2666ff3 (patch) | |
tree | a75bc6018f249d6a954d8f946c923d6773b7bcfa | |
parent | d5e278e36239d6eedc6bb92e31b8918aaec535e8 (diff) |
video: remove BGR from supported format
It's not supported by either decoder or encoder and is even not listed in
gst_omx_video_get_format_from_omx() so it can't work.
-rw-r--r-- | omx/gstomxvideo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/omx/gstomxvideo.h b/omx/gstomxvideo.h index e124382..4e5ac43 100644 --- a/omx/gstomxvideo.h +++ b/omx/gstomxvideo.h @@ -36,7 +36,7 @@ G_BEGIN_DECLS /* Keep synced with gst_omx_video_get_format_from_omx(). Sort by decreasing quality */ #define GST_OMX_VIDEO_SUPPORTED_FORMATS "{ NV16_10LE32, NV12_10LE32, " \ - "NV16, YUY2, YVYU, UYVY, NV12, I420, RGB16, BGR16, ABGR, ARGB, BGR, GRAY8 }" + "NV16, YUY2, YVYU, UYVY, NV12, I420, RGB16, BGR16, ABGR, ARGB, GRAY8 }" typedef struct { |