mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
cccombiner: fix CDP padding detection
While a cc_data_pkt with cc_valid 0 should be considered padding, it might be followed up by valid DTVCC packets, and should not cause the whole CDP packet to get discarded. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2440>
This commit is contained in:
parent
704689ec4a
commit
af7138ebc4
1 changed files with 1 additions and 1 deletions
|
@ -450,7 +450,7 @@ schedule_cdp (GstCCCombiner * self, const GstVideoTimeCode * tc,
|
|||
guint8 cc_type = cc_data[i * 3] & 0x03;
|
||||
|
||||
if (!cc_valid)
|
||||
break;
|
||||
continue;
|
||||
|
||||
if (cc_type == 0x00 || cc_type == 0x01) {
|
||||
if (cc_data[i * 3 + 1] != 0x80 || cc_data[i * 3 + 2] != 0x80) {
|
||||
|
|
Loading…
Reference in a new issue