diff --git a/doc/spa/pod.md b/doc/spa/pod.md index 9184d412f..af8775176 100644 --- a/doc/spa/pod.md +++ b/doc/spa/pod.md @@ -96,7 +96,7 @@ pod = spa_pod_builder_pop(&b, &f); `spa_pod_builder_pop()` returns a reference to the object we completed on the stack. -## Using varags builder. +## Using varargs builder. We can also use the following construct to make POD objects: diff --git a/man/pw-metadata.1.xml.in b/man/pw-metadata.1.xml.in index f35e01235..7fae21f2b 100644 --- a/man/pw-metadata.1.xml.in +++ b/man/pw-metadata.1.xml.in @@ -15,7 +15,7 @@ This file is part of PipeWire.

Monitor, set and delete metadata on PipeWire objects.

-

Metadata are key/type/value tripplets attached to objects identified +

Metadata are key/type/value triplets attached to objects identified by id. The metadata is shared between all applications binding to the same metadata object. When an object is destroyed, all its metadata is automatically removed.

diff --git a/pipewire-jack/jack/jack.h b/pipewire-jack/jack/jack.h index afc56fbdb..2b83cb100 100644 --- a/pipewire-jack/jack/jack.h +++ b/pipewire-jack/jack/jack.h @@ -321,7 +321,7 @@ int jack_set_thread_init_callback (jack_client_t *client, * * Register a function (and argument) to be called if and when the * JACK server shuts down the client thread. The function must - * be written as if it were an asynchonrous POSIX signal + * be written as if it were an asynchronous POSIX signal * handler --- use only async-safe functions, and remember that it * is executed from another thread. A typical function might * set a flag or write to a pipe so that the rest of the @@ -352,7 +352,7 @@ void jack_on_shutdown (jack_client_t *client, * * Register a function (and argument) to be called if and when the * JACK server shuts down the client thread. The function must - * be written as if it were an asynchonrous POSIX signal + * be written as if it were an asynchronous POSIX signal * handler --- use only async-safe functions, and remember that it * is executed from another thread. A typical function might * set a flag or write to a pipe so that the rest of the diff --git a/spa/plugins/audioconvert/biquad.h b/spa/plugins/audioconvert/biquad.h index bb8f2fb91..8b7ecccaa 100644 --- a/spa/plugins/audioconvert/biquad.h +++ b/spa/plugins/audioconvert/biquad.h @@ -15,7 +15,7 @@ extern "C" { * are stored in x1 and x2, and the previous two outputs are stored in y1 and * y2. * - * We use double during the coefficients calculation for better accurary, but + * We use double during the coefficients calculation for better accuracy, but * float is used during the actual filtering for faster computation. */ struct biquad { diff --git a/spa/plugins/videoconvert/videoadapter.c b/spa/plugins/videoconvert/videoadapter.c index f150d48c5..53d19053e 100644 --- a/spa/plugins/videoconvert/videoadapter.c +++ b/spa/plugins/videoconvert/videoadapter.c @@ -894,7 +894,7 @@ impl_init(const struct spa_handle_factory *factory, #if 0 this->hnd_convert = SPA_MEMBER(this, sizeof(struct impl), struct spa_handle); - spa_handle_factory_init(&spa_videooconvert_factory, + spa_handle_factory_init(&spa_videoconvert_factory, this->hnd_convert, info, support, n_support); diff --git a/src/pipewire/main-loop.c b/src/pipewire/main-loop.c index c2075b643..bf115bdeb 100644 --- a/src/pipewire/main-loop.c +++ b/src/pipewire/main-loop.c @@ -78,7 +78,7 @@ error_cleanup: return NULL; } -/** Create a new new main loop +/** Create a new main loop * \return a newly allocated \ref pw_main_loop * * \memberof pw_main_loop diff --git a/src/pipewire/stream.h b/src/pipewire/stream.h index b7aab32f4..41cc54165 100644 --- a/src/pipewire/stream.h +++ b/src/pipewire/stream.h @@ -116,7 +116,7 @@ extern "C" { * * \subsection ssec_consume Consume data * - * The process event is emitted for each new buffer that can can be + * The process event is emitted for each new buffer that can be * consumed. * * \ref pw_stream_dequeue_buffer() should be used to get the data and diff --git a/src/pipewire/version.h.in b/src/pipewire/version.h.in index 52b0b1f65..55604d074 100644 --- a/src/pipewire/version.h.in +++ b/src/pipewire/version.h.in @@ -65,4 +65,4 @@ const char* pw_get_library_version(void); } #endif -#endif /* PIPEWIRE_VERION_H */ +#endif /* PIPEWIRE_VERSION_H */