diff options
author | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2014-07-12 22:10:53 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-12 22:33:27 +0200 |
commit | 39a6e02fd4651f8300b2bbadffd5299452e00424 (patch) | |
tree | ef4f9480eaf9f335243d20a536d739f04a82bc5a /libavcodec/tiff_common.h | |
parent | 4470a3eeafa97d20b1e68a6b40490f71da726adf (diff) | |
download | ffmpeg-39a6e02fd4651f8300b2bbadffd5299452e00424.tar.gz |
fix spelling errors
Reviewed-by: Timothy Gu <timothygu99@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/tiff_common.h')
-rw-r--r-- | libavcodec/tiff_common.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/tiff_common.h b/libavcodec/tiff_common.h index 16c9e50850..03558c31a3 100644 --- a/libavcodec/tiff_common.h +++ b/libavcodec/tiff_common.h @@ -67,16 +67,16 @@ static const uint16_t ifd_tags[] = { */ int ff_tis_ifd(unsigned tag); -/** Reads a short from the bytestream using given endianess. */ +/** Reads a short from the bytestream using given endianness. */ unsigned ff_tget_short(GetByteContext *gb, int le); -/** Reads a long from the bytestream using given endianess. */ +/** Reads a long from the bytestream using given endianness. */ unsigned ff_tget_long(GetByteContext *gb, int le); -/** Reads a double from the bytestream using given endianess. */ +/** Reads a double from the bytestream using given endianness. */ double ff_tget_double(GetByteContext *gb, int le); -/** Reads a byte from the bytestream using given endianess. */ +/** Reads a byte from the bytestream using given endianness. */ unsigned ff_tget(GetByteContext *gb, int type, int le); /** Returns an allocated string containing count @@ -136,7 +136,7 @@ int ff_tadd_string_metadata(int count, const char *name, GetByteContext *gb, int le, AVDictionary **metadata); /** Decodes a TIFF header from the input bytestream - * and sets the endianess in *le and the offset to + * and sets the endianness in *le and the offset to * the first IFD in *ifd_offset accordingly. */ int ff_tdecode_header(GetByteContext *gb, int *le, int *ifd_offset); |