h265parse: Don't enable passthrough by default

SEI messages contain various information which wouldn't be conveyed
by using upstream CAPS (HDR, timecode for example).

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1639>
This commit is contained in:
Seungha Yang 2020-10-04 02:02:16 +09:00
parent 94e1623434
commit 634eb1fc38

View file

@ -2978,7 +2978,13 @@ gst_h265_parse_set_caps (GstBaseParse * parse, GstCaps * caps)
if (format == h265parse->format && align == h265parse->align) {
/* do not set CAPS and passthrough mode if SPS/PPS have not been parsed */
if (h265parse->have_sps && h265parse->have_pps) {
/* Don't enable passthrough here. This element will parse various
* SEI messages which would be very important/useful for downstream
* (HDR, timecode for example)
*/
#if 0
gst_base_parse_set_passthrough (parse, TRUE);
#endif
/* we did parse codec-data and might supplement src caps */
gst_h265_parse_update_src_caps (h265parse, caps);