From 8c85795e92b00d3f4d32df1820ca19671a25bb03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 15 May 2015 20:44:08 +0100 Subject: [PATCH] fakesrc: fix property description We're enterprise now folks. --- plugins/elements/gstfakesrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/elements/gstfakesrc.c b/plugins/elements/gstfakesrc.c index fbcbca967f..1b2952cd53 100644 --- a/plugins/elements/gstfakesrc.c +++ b/plugins/elements/gstfakesrc.c @@ -183,7 +183,7 @@ gst_fake_src_filltype_get_type (void) static const GEnumValue fakesrc_filltype[] = { {FAKE_SRC_FILLTYPE_NOTHING, "Leave data as malloced", "nothing"}, {FAKE_SRC_FILLTYPE_ZERO, "Fill buffers with zeros", "zero"}, - {FAKE_SRC_FILLTYPE_RANDOM, "Fill buffers with random crap", "random"}, + {FAKE_SRC_FILLTYPE_RANDOM, "Fill buffers with random data", "random"}, {FAKE_SRC_FILLTYPE_PATTERN, "Fill buffers with pattern 0x00 -> 0xff", "pattern"}, {FAKE_SRC_FILLTYPE_PATTERN_CONT,