videoparsers: Fix parsing of ATSC AFD data

The test for 0x40 being set is repeated by
gst_video_parse_utils_parse_afd, which also extracts the low nibble
again, so we must not clear it here.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1394>
This commit is contained in:
Jan Alexander Steffens (heftig) 2020-07-01 17:52:39 +02:00 committed by GStreamer Merge Bot
parent cedb07fe46
commit 01896c11d2

View file

@ -116,7 +116,6 @@ gst_video_parse_user_data (GstElement * elt, GstVideoParseUserData * user_data,
"Missing active format description, ignoring");
break;
}
temp = temp & 0xF;
GST_LOG_OBJECT (elt, "parsed active format description (AFD): %d",
temp);