From 9b8da1acfba677f7c6256dfe717f68d4fd2dba9a Mon Sep 17 00:00:00 2001 From: David Schleef Date: Fri, 10 Sep 2010 12:03:07 -0700 Subject: [PATCH] videotestsrc: Fix recent breakage of smpte75 pattern --- gst/videotestsrc/videotestsrc.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gst/videotestsrc/videotestsrc.c b/gst/videotestsrc/videotestsrc.c index de25727..4f4dfe8 100644 --- a/gst/videotestsrc/videotestsrc.c +++ b/gst/videotestsrc/videotestsrc.c @@ -920,6 +920,11 @@ gst_video_test_src_smpte75 (GstVideoTestSrc * v, unsigned char *dest, int w, struct fourcc_list_struct *fourcc; videotestsrc_setup_paintinfo (v, p, w, h); + if (v->color_spec == GST_VIDEO_TEST_SRC_BT601) { + p->colors = vts_colors_bt601_ycbcr_75; + } else { + p->colors = vts_colors_bt709_ycbcr_75; + } fourcc = v->fourcc; if (fourcc == NULL) return; -- 2.7.4