diff --git a/gst/videoscale/gstvideoscale.c b/gst/videoscale/gstvideoscale.c index 686c196204..a8fec8ad64 100644 --- a/gst/videoscale/gstvideoscale.c +++ b/gst/videoscale/gstvideoscale.c @@ -112,6 +112,17 @@ enum #undef GST_VIDEO_SIZE_RANGE #define GST_VIDEO_SIZE_RANGE "(int) [ 1, 32767]" +/* FIXME: add v210 support + * FIXME: add v216 support + * FIXME: add NV21 support + * FIXME: add UYVP support + * FIXME: add A420 support + * FIXME: add YUV9 support + * FIXME: add YVU9 support + * FIXME: add IYU1 support + * FIXME: add r210 support + */ + /* FIXME: if we can do NV12, NV21 shouldn't be so hard */ #define GST_VIDEO_FORMATS "{ I420, YV12, YUY2, UYVY, AYUV, RGBx, " \ "BGRx, xRGB, xBGR, RGBA, BGRA, ARGB, ABGR, RGB, " \ diff --git a/tests/check/elements/videoscale.c b/tests/check/elements/videoscale.c index 4b5b9660f7..b5bd59f984 100644 --- a/tests/check/elements/videoscale.c +++ b/tests/check/elements/videoscale.c @@ -99,7 +99,7 @@ check_pad_template (GstPadTemplate * tmpl) static gboolean shown_fixme[100] = { FALSE, }; if (!shown_fixme[i]) { - GST_ERROR ("FIXME: add %s support to videoscale", fmt_str); + GST_FIXME ("FIXME: add %s support to videoscale", fmt_str); shown_fixme[i] = TRUE; } break;