From 5b4a946e3568a5abbd5e4f2bfe6b532e01d6cc94 Mon Sep 17 00:00:00 2001 From: noarkhh Date: Wed, 26 Jun 2024 15:17:48 +0200 Subject: [PATCH] Improve descriptions --- lib/membrane_vpx/decoder/vp8_decoder.ex | 2 +- lib/membrane_vpx/decoder/vp9_decoder.ex | 2 +- lib/membrane_vpx/encoder/vp8_encoder.ex | 2 +- lib/membrane_vpx/encoder/vp9_encoder.ex | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/membrane_vpx/decoder/vp8_decoder.ex b/lib/membrane_vpx/decoder/vp8_decoder.ex index 897beb5..4ea89d6 100644 --- a/lib/membrane_vpx/decoder/vp8_decoder.ex +++ b/lib/membrane_vpx/decoder/vp8_decoder.ex @@ -24,7 +24,7 @@ defmodule Membrane.VP8.Decoder do spec: {non_neg_integer(), pos_integer()} | nil, default: nil, description: """ - Framerate, needed if not provided with stream format. If it's not specified either in this option or the stream format, the element will crash. + Framerate of the stream. """ ] diff --git a/lib/membrane_vpx/decoder/vp9_decoder.ex b/lib/membrane_vpx/decoder/vp9_decoder.ex index 08eae14..a89a737 100644 --- a/lib/membrane_vpx/decoder/vp9_decoder.ex +++ b/lib/membrane_vpx/decoder/vp9_decoder.ex @@ -24,7 +24,7 @@ defmodule Membrane.VP9.Decoder do spec: {non_neg_integer(), pos_integer()} | nil, default: nil, description: """ - Framerate, needed if not provided with stream format. If it's not specified either in this option or the stream format, the element will crash. + Framerate of the stream. """ ] diff --git a/lib/membrane_vpx/encoder/vp8_encoder.ex b/lib/membrane_vpx/encoder/vp8_encoder.ex index 12e1630..ba749d7 100644 --- a/lib/membrane_vpx/encoder/vp8_encoder.ex +++ b/lib/membrane_vpx/encoder/vp8_encoder.ex @@ -13,7 +13,7 @@ defmodule Membrane.VP8.Encoder do Determines how long should it take the encoder to encode a frame (in microseconds). The longer the encoding takes the better the quality will be. If set to 0 the encoder will take as long as it needs to produce the best frame possible. Note that - this is a soft limit, there is no guarantee that te encoding will never exceed it. + this is a soft limit, there is no guarantee that the encoding process will never exceed it. """ ] diff --git a/lib/membrane_vpx/encoder/vp9_encoder.ex b/lib/membrane_vpx/encoder/vp9_encoder.ex index 7c46ca7..20b3536 100644 --- a/lib/membrane_vpx/encoder/vp9_encoder.ex +++ b/lib/membrane_vpx/encoder/vp9_encoder.ex @@ -13,7 +13,7 @@ defmodule Membrane.VP9.Encoder do Determines how long should it take the encoder to encode a frame (in microseconds). The longer the encoding takes the better the quality will be. If set to 0 the encoder will take as long as it needs to produce the best frame possible. Note that - this is a soft limit, there is no guarantee that te encoding will never exceed it. + this is a soft limit, there is no guarantee that the encoding process will never exceed it. """ ]