Skip to content

Commit 7d22f47

Browse files
luzpazbmatherly
authored andcommitted
Fix source documentation typos
Fixed various typos in the source that would show up in documentation or user-facing context.
1 parent 493ac32 commit 7d22f47

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

demo/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Audio Stuff
8383
video clip has a "floating" amplitude normalisation filter applied.
8484
Typically, audio normalisation applies a constant gain factor across the
8585
entire duration of an audio segment from a single source where the
86-
gain factor is automatically determined by anaylsing the maximum "power"
86+
gain factor is automatically determined by analysing the maximum "power"
8787
or peak levels. However, in news production, a popular requirement is to
8888
to dynamically boost the amplitude in soft areas and reduce the amplitude
8989
in louder areas. Thus, the gain analysis is performed using a "sliding

src/framework/mlt_animation.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@ static inline double interpolate_value(double x0,
13471347
* \private \memberof mlt_animation_s
13481348
*
13491349
* \param item an unpopulated animation item to be interpolated.
1350-
* The frame and keyframe_type fields must already be set. The value for "frame" is the postion
1350+
* The frame and keyframe_type fields must already be set. The value for "frame" is the position
13511351
* at which the value will be interpolated. The value for "keyframe_type" determines which
13521352
* interpolation will be used.
13531353
* \param p a sequential array of 4 animation items. The frame value for item must lie between the

src/framework/mlt_producer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
* or infinity. Those producers tend to not override the default length and one
6464
* expect the app or user to set the length. The default value of 15000 was chosen
6565
* to provide something useful - not too long or short and convenient to simply
66-
* set an out point without necessarily nedding to extend the length.
66+
* set an out point without necessarily needing to extend the length.
6767
* \todo define the media metadata taxonomy
6868
*/
6969

src/framework/mlt_repository.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ static char *getenv_locale()
517517
/** Return a list of user-preferred language codes taken from environment variables.
518518
*
519519
* A module should use this to locate a localized YAML Tiny file from which to build
520-
* its metadata strucutured properties.
520+
* its metadata structured properties.
521521
*
522522
* \public \memberof mlt_repository_s
523523
* \param self a repository

src/modules/core/filter_autofade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tags:
1111
description: >
1212
Automatically fade audio between clips in a playlist.
1313
This filter will fade the audio out at the end of a clip and fade the
14-
audio in at the begining of a clip.
14+
audio in at the beginning of a clip.
1515
Only to be used as a filter on playlist producers.
1616
Uses the "meta.playlist.clip_position" and "meta.playlist.clip_length"
1717
properties that are added by the playlist producer to determine where

src/modules/decklink/consumer_decklink.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ class DeckLinkConsumer : public IDeckLinkVideoOutputCallback, public IDeckLinkAu
10351035
if (m_currentSpeed || preroll) {
10361036
if (!preroll && m_previousSpeed != 1 && m_currentSpeed == 1) {
10371037
// Resume
1038-
mlt_log_verbose(getConsumer(), "Resuming foward 1x playback\n");
1038+
mlt_log_verbose(getConsumer(), "Resuming forward 1x playback\n");
10391039
m_deckLinkOutput->StopScheduledPlayback(0, nullptr, 0);
10401040
m_count = 0;
10411041
if (m_isAudio)

src/modules/gdk/producer_pixbuf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ parameters:
117117
mutable: yes
118118

119119
- identifier: loop
120-
title: Loop sequence of images indefinitively
120+
title: Loop sequence of images indefinitely
121121
description: when 1 (default) loop sequences of images, when 0, play them only once
122122
type: boolean
123123
default: 1

src/modules/plus/filter_subtitle_feed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ parameters:
2626
title: Text
2727
type: string
2828
description: >
29-
A string that containes a complete SRT document.
29+
A string that contains a complete SRT document.
3030
This parameter is ignored if resource is set.
3131
required: no
3232
readonly: no

src/modules/qt/filter_gpstext.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ parameters:
4949
Keywords returning numeric values can use the extra word "decimals" to forcefully
5050
set a specific number of decimals (0-9). Example: #gps_speed decimals 3#.
5151
Time-based keywords can include a strftime format string to customize the
52-
output and a number (representing seconds) preceeded by '+' or '-' which will
52+
output and a number (representing seconds) preceded by '+' or '-' which will
5353
offset the actual time. For example, "#gps_datetime_now %I:%M:%S %p +3600#" shows
5454
only the time in 12-hour format, offset by 1 hour.
5555
The speed keyword can have an extra "vertical" or "3D" word as a format to show

0 commit comments

Comments
 (0)