diff options
author | mjk <yuubi-san@users.noreply.github.com> | 2022-02-13 21:32:28 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2022-02-13 21:32:28 +0100 |
commit | 3719fcbefbad037c0ffa82ab3f26c19f0a9b5f74 (patch) | |
tree | d28b51ae35a04b4e7f8bf883607d3e224f4006d8 /plugins | |
parent | 9838d5679470d1add098accaeae8eaf0ee3c58ee (diff) | |
download | dino-3719fcbefbad037c0ffa82ab3f26c19f0a9b5f74.tar.gz dino-3719fcbefbad037c0ffa82ab3f26c19f0a9b5f74.zip |
RTP: clarify codec support warning
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/rtp/src/codec_util.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/rtp/src/codec_util.vala b/plugins/rtp/src/codec_util.vala index ac8c7f98..12fcfed7 100644 --- a/plugins/rtp/src/codec_util.vala +++ b/plugins/rtp/src/codec_util.vala @@ -295,7 +295,7 @@ public class Dino.Plugins.Rtp.CodecUtil { supported_elements.add(element_name); return true; } else { - warning("%s is not supported on this platform", element_name); + warning("%s is not installed or supported on this system", element_name); unsupported_elements.add(element_name); return false; } |