summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2014-07-12 22:10:53 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-07-12 22:33:27 +0200
commit39a6e02fd4651f8300b2bbadffd5299452e00424 (patch)
treeef4f9480eaf9f335243d20a536d739f04a82bc5a /libavutil
parent4470a3eeafa97d20b1e68a6b40490f71da726adf (diff)
fix spelling errors
Reviewed-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/downmix_info.h2
-rw-r--r--libavutil/dynarray.h2
-rw-r--r--libavutil/frame.h2
-rw-r--r--libavutil/utils.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/downmix_info.h b/libavutil/downmix_info.h
index 2fb9387a8d..221cf5bf9b 100644
--- a/libavutil/downmix_info.h
+++ b/libavutil/downmix_info.h
@@ -100,7 +100,7 @@ typedef struct AVDownmixInfo {
* @param frame the frame for which the side data is to be obtained or created
*
* @return the AVDownmixInfo structure to be edited by the caller, or NULL if
- * the sturcture cannot be allocated.
+ * the structure cannot be allocated.
*/
AVDownmixInfo *av_downmix_info_update_side_data(AVFrame *frame);
diff --git a/libavutil/dynarray.h b/libavutil/dynarray.h
index 00b19bc2a7..4947d93dc8 100644
--- a/libavutil/dynarray.h
+++ b/libavutil/dynarray.h
@@ -35,7 +35,7 @@
* the type of the size
* @param av_elt_size size of the elements in the array, in bytes
* @param av_array pointer to the array, must be a lvalue
- * @param av_size size of the array, must be an interger lvalue
+ * @param av_size size of the array, must be an integer lvalue
* @param av_success statement to execute on success; at this point, the
* size variable is not yet incremented
* @param av_failure statement to execute on failure; if this happens, the
diff --git a/libavutil/frame.h b/libavutil/frame.h
index c23e5af8d5..a39c8d07ff 100644
--- a/libavutil/frame.h
+++ b/libavutil/frame.h
@@ -214,7 +214,7 @@ typedef struct AVFrame {
int64_t pkt_pts;
/**
- * DTS copied from the AVPacket that triggered returning this frame. (if frame threading isnt used)
+ * DTS copied from the AVPacket that triggered returning this frame. (if frame threading isn't used)
* This is also the Presentation time of this AVFrame calculated from
* only AVPacket.dts values without pts values.
*/
diff --git a/libavutil/utils.c b/libavutil/utils.c
index 6c9b493a8f..aafd3b909e 100644
--- a/libavutil/utils.c
+++ b/libavutil/utils.c
@@ -40,7 +40,7 @@ unsigned avutil_version(void)
av_assert0(LIBAVUTIL_VERSION_MICRO >= 100);
av_assert0(HAVE_MMX2 == HAVE_MMXEXT);
- av_assert0(((size_t)-1) > 0); // C gurantees this but if false on a platform we care about revert at least b284e1ffe343d6697fb950d1ee517bafda8a9844
+ av_assert0(((size_t)-1) > 0); // C guarantees this but if false on a platform we care about revert at least b284e1ffe343d6697fb950d1ee517bafda8a9844
if (av_sat_dadd32(1, 2) != 5) {
av_log(NULL, AV_LOG_FATAL, "Libavutil has been build with a broken binutils, please upgrade binutils and rebuild\n");