diff options
author | Marvin W <git@larma.de> | 2022-01-21 15:23:38 +0100 |
---|---|---|
committer | Marvin W <git@larma.de> | 2022-01-21 15:23:38 +0100 |
commit | 37cfbd8c76a457ca6fc882eefde0764cbd10f096 (patch) | |
tree | 0f95bd4b7802e289fea19fbe5df2c43fe12f2935 /plugins/rtp/src | |
parent | eefce3fd81d7fcb349acb073941ebf5ca9140507 (diff) | |
download | dino-37cfbd8c76a457ca6fc882eefde0764cbd10f096.tar.gz dino-37cfbd8c76a457ca6fc882eefde0764cbd10f096.zip |
RTP: Use VP8 wait-for-keyframe only for GStreamer 1.18+
Diffstat (limited to 'plugins/rtp/src')
-rw-r--r-- | plugins/rtp/src/codec_util.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/rtp/src/codec_util.vala b/plugins/rtp/src/codec_util.vala index 6fb5e7aa..9709025e 100644 --- a/plugins/rtp/src/codec_util.vala +++ b/plugins/rtp/src/codec_util.vala @@ -132,8 +132,8 @@ public class Dino.Plugins.Rtp.CodecUtil { } public static string? get_encode_prefix(string media, string codec, string encode, JingleRtp.PayloadType? payload_type) { - if (encode == "msdkh264enc") return "video/x-raw,format=NV12 ! "; - if (encode == "vaapih264enc") return "video/x-raw,format=NV12 ! "; + if (encode == "msdkh264enc") return "capsfilter caps=video/x-raw,format=NV12 ! "; + if (encode == "vaapih264enc") return "capsfilter caps=video/x-raw,format=NV12 ! "; return null; } @@ -228,7 +228,7 @@ public class Dino.Plugins.Rtp.CodecUtil { } public static string? get_depay_args(string media, string codec, string encode, JingleRtp.PayloadType? payload_type) { -#if GST_1_16 +#if GST_1_18 if (codec == "vp8") return " wait-for-keyframe=true"; #endif return null; |