summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2017-04-17 10:59:31 -0700
committerJames Zern <jzern@google.com>2017-04-17 10:59:31 -0700
commit20aeee4fc99f241872dba4f93da50bd1cdef836d (patch)
tree43bad7cd04531acb5892617df3d32916553f58ed /libavformat
parent62c27fdba43def4cdc2fb6f2df60c7ac87918d6c (diff)
matroskadec,cosmetics: fix a couple typos
Signed-off-by: James Zern <jzern@google.com>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/matroskadec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c
index d42113be94..9adca8dcc0 100644
--- a/libavformat/matroskadec.c
+++ b/libavformat/matroskadec.c
@@ -362,7 +362,7 @@ typedef struct MatroskaDemuxContext {
/* File has SSA subtitles which prevent incremental cluster parsing. */
int contains_ssa;
- /* WebM DASH Manifest live flag/ */
+ /* WebM DASH Manifest live flag */
int is_live;
/* Bandwidth value for WebM DASH Manifest */
@@ -3575,7 +3575,7 @@ typedef struct {
int64_t end_offset;
} CueDesc;
-/* This function searches all the Cues and returns the CueDesc corresponding the
+/* This function searches all the Cues and returns the CueDesc corresponding to
* the timestamp ts. Returned CueDesc will be such that start_time_ns <= ts <
* end_time_ns. All 4 fields will be set to -1 if ts >= file's duration.
*/