summaryrefslogtreecommitdiff
path: root/gst/mpegtsdemux
diff options
context:
space:
mode:
authorAaron Boxer <aaron.boxer@collabora.com>2019-09-02 15:08:44 -0400
committerAaron Boxer <aaron.boxer@collabora.com>2019-11-05 09:11:25 -0500
commit6d3429af34ed0b5905faf32d2f22b9db2451f116 (patch)
treef18e8fed7a80ddd4db89a76bab109fcd37a76819 /gst/mpegtsdemux
parent2386858a9179aff2ec249bdffa904bf407de455f (diff)
downloadgstreamer-plugins-bad-6d3429af34ed0b5905faf32d2f22b9db2451f116.tar.gz
documentation: fixed a heap o' typos
Diffstat (limited to 'gst/mpegtsdemux')
-rw-r--r--gst/mpegtsdemux/TODO6
-rw-r--r--gst/mpegtsdemux/mpegtsbase.c2
-rw-r--r--gst/mpegtsdemux/mpegtsbase.h2
-rw-r--r--gst/mpegtsdemux/mpegtspacketizer.c4
-rw-r--r--gst/mpegtsdemux/tsdemux.c2
5 files changed, 8 insertions, 8 deletions
diff --git a/gst/mpegtsdemux/TODO b/gst/mpegtsdemux/TODO
index d4d2563a7..62449ef56 100644
--- a/gst/mpegtsdemux/TODO
+++ b/gst/mpegtsdemux/TODO
@@ -1,7 +1,7 @@
tsdemux/tsparse TODO
--------------------
-* Perfomance
+* Performance
* Bufferlist : Creating/Destroying very small buffers is too
costly. Switch to pre-/re-allocating outgoing buffers in which we
copy the data.
@@ -18,7 +18,7 @@ tsdemux/tsparse TODO
* mpegtsparser
* SERIOUS room for improvement performance-wise (see callgrind),
- mostly related to performance issues mentionned above.
+ mostly related to performance issues mentioned above.
* Random-access seeking
* Do minimal parsing of video headers to detect keyframes and use
@@ -92,7 +92,7 @@ of the stream.
Since no prerolling is happening downstream and the incoming buffers
do not have capture timestamps, we need to ensure the first buffer
- we push out corresponds to the base segment start runing time.
+ we push out corresponds to the base segment start running time.
=> The packetizer keeps track of PCR locations and offsets in
addition to the clock skew (in the case of upstream buffers
diff --git a/gst/mpegtsdemux/mpegtsbase.c b/gst/mpegtsdemux/mpegtsbase.c
index d49ab5eb9..d2d973ad5 100644
--- a/gst/mpegtsdemux/mpegtsbase.c
+++ b/gst/mpegtsdemux/mpegtsbase.c
@@ -1116,7 +1116,7 @@ mpegts_base_apply_pmt (MpegTSBase * base, GstMpegtsSection * section)
program = mpegts_base_new_program (base, program_number, section->pid);
program->patcount = old_program->patcount;
- /* Desactivate the old program */
+ /* Deactivate the old program */
/* FIXME : THIS IS BREAKING THE STREAM SWITCHING LOGIC !
* */
if (klass->can_remove_program (base, old_program)) {
diff --git a/gst/mpegtsdemux/mpegtsbase.h b/gst/mpegtsdemux/mpegtsbase.h
index 79705a77b..30a41ba86 100644
--- a/gst/mpegtsdemux/mpegtsbase.h
+++ b/gst/mpegtsdemux/mpegtsbase.h
@@ -201,7 +201,7 @@ struct _MpegTSBaseClass {
GstFlowReturn (*drain) (MpegTSBase * base);
/* flush all streams
- * The hard inicator is used to flush completelly on FLUSH_STOP events
+ * The hard inicator is used to flush completely on FLUSH_STOP events
* or partially in pull mode seeks of tsdemux */
void (*flush) (MpegTSBase * base, gboolean hard);
diff --git a/gst/mpegtsdemux/mpegtspacketizer.c b/gst/mpegtsdemux/mpegtspacketizer.c
index b16c9b094..b793f8545 100644
--- a/gst/mpegtsdemux/mpegtspacketizer.c
+++ b/gst/mpegtsdemux/mpegtspacketizer.c
@@ -1280,7 +1280,7 @@ mpegts_packetizer_resync (MpegTSPCR * pcr, GstClockTime time,
* Cri : The time of the clock at the receiver for packet i
* D + ni : The jitter when receiving packet i
*
- * We see that the network delay is irrelevant here as we can elliminate D:
+ * We see that the network delay is irrelevant here as we can eliminate D:
*
* recv_diff(i) = (Cri + ni) - (Cr0 + n0))
*
@@ -1613,7 +1613,7 @@ _reevaluate_group_pcr_offset (MpegTSPCR * pcrtable, PCROffsetGroup * group)
* We will use raw (non-corrected/non-absolute) PCR values in a first time
* to detect wraparound/resets/gaps...
*
- * We will use the corrected/asolute PCR values to calculate
+ * We will use the corrected/absolute PCR values to calculate
* bitrate and estimate the target group pcr_offset.
* */
diff --git a/gst/mpegtsdemux/tsdemux.c b/gst/mpegtsdemux/tsdemux.c
index 8bc973690..f19925765 100644
--- a/gst/mpegtsdemux/tsdemux.c
+++ b/gst/mpegtsdemux/tsdemux.c
@@ -1222,7 +1222,7 @@ create_pad_for_stream (MpegTSBase * base, MpegTSBaseStream * bstream,
case ST_PS_VIDEO_MPEG2_DCII:
/* FIXME : Use DCII registration code (ETV1 ?) to handle that special
* Stream type (ST_PS_VIDEO_MPEG2_DCII) */
- /* FIXME : Use video decriptor (0x1) to refine caps with:
+ /* FIXME : Use video descriptor (0x1) to refine caps with:
* * frame_rate
* * profile_and_level
*/