diff options
author | Lou Logan <lou@lrcd.com> | 2016-03-28 14:07:47 -0800 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2016-03-28 14:13:17 -0800 |
commit | 06eef96b69d73a31f2b390955d1be0537214a0c8 (patch) | |
tree | ca45453b9853a6ad358966292639148a036f3a1a /libavutil | |
parent | 99f2a59c2f298c2a8c0d1058759fd0ae81bc8c2e (diff) | |
download | ffmpeg-06eef96b69d73a31f2b390955d1be0537214a0c8.tar.gz |
fix some a/an typos
Signed-off-by: Lou Logan <lou@lrcd.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/avstring.h | 2 | ||||
-rw-r--r-- | libavutil/cpu.h | 2 | ||||
-rw-r--r-- | libavutil/tree.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/avstring.h b/libavutil/avstring.h index 15b04babef..dd2876990f 100644 --- a/libavutil/avstring.h +++ b/libavutil/avstring.h @@ -156,7 +156,7 @@ static inline size_t av_strnlen(const char *s, size_t len) char *av_asprintf(const char *fmt, ...) av_printf_format(1, 2); /** - * Convert a number to a av_malloced string. + * Convert a number to an av_malloced string. */ char *av_d2str(double d); diff --git a/libavutil/cpu.h b/libavutil/cpu.h index cc4e30c4cd..4bff16714a 100644 --- a/libavutil/cpu.h +++ b/libavutil/cpu.h @@ -70,7 +70,7 @@ /** * Return the flags which specify extensions supported by the CPU. * The returned value is affected by av_force_cpu_flags() if that was used - * before. So av_get_cpu_flags() can easily be used in a application to + * before. So av_get_cpu_flags() can easily be used in an application to * detect the enabled cpu flags. */ int av_get_cpu_flags(void); diff --git a/libavutil/tree.h b/libavutil/tree.h index e1aefaa9f6..9a9e11b92c 100644 --- a/libavutil/tree.h +++ b/libavutil/tree.h @@ -120,8 +120,8 @@ void av_tree_destroy(struct AVTreeNode *t); /** * Apply enu(opaque, &elem) to all the elements in the tree in a given range. * - * @param cmp a comparison function that returns < 0 for a element below the - * range, > 0 for a element above the range and == 0 for a + * @param cmp a comparison function that returns < 0 for an element below the + * range, > 0 for an element above the range and == 0 for an * element inside the range * * @note The cmp function should use the same ordering used to construct the |