From 0fc9b0b289cb7c886df65c950df56ee1ae27bbff Mon Sep 17 00:00:00 2001 From: Robert Swain Date: Mon, 10 Jan 2011 10:36:43 +0100 Subject: [PATCH] interlace: Add more verbose hints about field patterns --- gst/interlace/gstinterlace.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gst/interlace/gstinterlace.c b/gst/interlace/gstinterlace.c index 6a8f3f3..6e29784 100644 --- a/gst/interlace/gstinterlace.c +++ b/gst/interlace/gstinterlace.c @@ -135,11 +135,13 @@ gst_interlace_pattern_get_type (void) { static GType interlace_pattern_type = 0; static const GEnumValue pattern_types[] = { - {GST_INTERLACE_PATTERN_1_1, "1:1", "1:1"}, - {GST_INTERLACE_PATTERN_2_2, "2:2", "2:2"}, - {GST_INTERLACE_PATTERN_2_3, "2:3", "2:3"}, - {GST_INTERLACE_PATTERN_2_3_3_2, "2:3:3:2", "2:3:3:2"}, - {GST_INTERLACE_PATTERN_EURO, "Euro 2-11:3", "2-11:3"}, + {GST_INTERLACE_PATTERN_1_1, "1:1 (e.g. 60p -> 60i)", "1:1"}, + {GST_INTERLACE_PATTERN_2_2, "2:2 (e.g. 30p -> 60i)", "2:2"}, + {GST_INTERLACE_PATTERN_2_3, "2:3 (e.g. 24p -> 60i telecine)", "2:3"}, + {GST_INTERLACE_PATTERN_2_3_3_2, "2:3:3:2 (e.g. 24p -> 60i telecine)", + "2:3:3:2"}, + {GST_INTERLACE_PATTERN_EURO, "Euro 2-11:3 (e.g. 24p -> 50i telecine)", + "2-11:3"}, {0, NULL, NULL} }; -- 2.7.4