summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/dashenc.c2
-rw-r--r--libavformat/demux.h2
-rw-r--r--libavformat/scd.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index 15f700acbc..2f5394c308 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -1454,7 +1454,7 @@ static int dash_init(AVFormatContext *s)
}
if (av_cmp_q(c->max_playback_rate, c->min_playback_rate) < 0) {
- av_log(s, AV_LOG_WARNING, "Minimum playback rate value is higer than the Maximum. Both will be ignored\n");
+ av_log(s, AV_LOG_WARNING, "Minimum playback rate value is higher than the Maximum. Both will be ignored\n");
c->min_playback_rate = c->max_playback_rate = (AVRational) {1, 1};
}
diff --git a/libavformat/demux.h b/libavformat/demux.h
index 1f57e062f6..d65eb16ff8 100644
--- a/libavformat/demux.h
+++ b/libavformat/demux.h
@@ -169,7 +169,7 @@ void ff_rfps_calculate(AVFormatContext *ic);
* Useful to simplify the rescaling of the arguments of AVInputFormat::read_seek2()
*
* @param[in] tb_in Timebase of the input `min_ts`, `ts` and `max_ts`
- * @param[in] tb_out Timebase of the ouput `min_ts`, `ts` and `max_ts`
+ * @param[in] tb_out Timebase of the output `min_ts`, `ts` and `max_ts`
* @param[in,out] min_ts Lower bound of the interval
* @param[in,out] ts Timestamp
* @param[in,out] max_ts Upper bound of the interval
diff --git a/libavformat/scd.c b/libavformat/scd.c
index 91b2262ff7..f0048bcc85 100644
--- a/libavformat/scd.c
+++ b/libavformat/scd.c
@@ -187,7 +187,7 @@ static int scd_read_track(AVFormatContext *s, SCDTrackHeader *track, int index)
/* Not sure what to do with these, it seems to be fine to ignore them. */
if (track->aux_count != 0)
- av_log(s, AV_LOG_DEBUG, "[%d] Track has %u auxillary chunk(s).\n", index, track->aux_count);
+ av_log(s, AV_LOG_DEBUG, "[%d] Track has %u auxiliary chunk(s).\n", index, track->aux_count);
if ((st = avformat_new_stream(s, NULL)) == NULL)
return AVERROR(ENOMEM);