webrtcsink: Add VP9 parser after the encoder for VP9 too

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1572>
This commit is contained in:
cdelguercio 2024-05-15 11:37:04 -07:00 committed by Sebastian Dröge
parent f5a7de9dc3
commit c99cabfbc5

View file

@ -678,6 +678,7 @@ impl Codec {
pub fn build_parser(&self) -> Result<Option<gst::Element>, Error> {
match self.name.as_str() {
"VP9" => make_element("vp9parse", None),
"H264" => make_element("h264parse", None),
"H265" => make_element("h265parse", None),
"AV1" => make_element("av1parse", None),