line21dec: If CCs are not found at the previous line, reset and search from the beginning again

This commit is contained in:
Sebastian Dröge 2018-12-10 15:43:19 +02:00 committed by Sebastian Dröge
parent 36ba1e80b6
commit f9e4ed99b0

View file

@ -396,6 +396,11 @@ gst_line_21_decoder_scan (GstLine21Decoder * self, GstVideoFrame * frame)
self->line21_offset = i;
found = TRUE;
break;
} else if (i == self->line21_offset) {
/* Otherwise if this was the previously probed line offset,
* reset and start searching again from the beginning */
i = -1;
self->line21_offset = -1;
}
}