summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2021-07-08 02:24:18 +0200
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-07-08 00:26:05 +0000
commit64190e745298e0144b3683c2a227a13b2009c539 (patch)
tree491ff1d0d8fe11c0daf52326f727cdddf6f0d658 /ext
parent2cd83fb4ef07eceb26b4e69cb84bf8dfc5809a2d (diff)
downloadgstreamer-plugins-bad-64190e745298e0144b3683c2a227a13b2009c539.tar.gz
cccombiner: mark field 0 as valid when generating padding CDP
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2383>
Diffstat (limited to 'ext')
-rw-r--r--ext/closedcaption/gstcccombiner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/closedcaption/gstcccombiner.c b/ext/closedcaption/gstcccombiner.c
index 1c2f03220..aef5e6c36 100644
--- a/ext/closedcaption/gstcccombiner.c
+++ b/ext/closedcaption/gstcccombiner.c
@@ -331,7 +331,7 @@ make_padding (GstCCCombiner * self, const GstVideoTimeCode * tc, guint field)
switch (self->caption_type) {
case GST_VIDEO_CAPTION_TYPE_CEA708_CDP:
{
- const guint8 cc_data[6] = { 0xf8, 0x80, 0x80, 0xf9, 0x80, 0x80 };
+ const guint8 cc_data[6] = { 0xfc, 0x80, 0x80, 0xf9, 0x80, 0x80 };
ret = make_cdp (self, cc_data, 6, self->cdp_fps_entry, tc);
break;