diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-07-28 12:46:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-07-28 12:46:26 +0000 |
commit | df3a80b50a452f54878f5011207a864d703a943d (patch) | |
tree | f33f2102df6183e8c6225adeda1ced76cc4542ec /libavcodec/avcodec.h | |
parent | bd35bdf1b2e716e7d0ea600d1af9a782ebc2ec61 (diff) | |
download | ffmpeg-df3a80b50a452f54878f5011207a864d703a943d.tar.gz |
cosmetics: misc typo fixes
Originally committed as revision 9815 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7b47b98fe9..1fd891caa1 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2834,7 +2834,7 @@ void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size); * Frees all static arrays and resets their pointers to 0. * Call this function to release all statically allocated tables. * - * @deprecated. Code which uses av_free_static is broken/missdesigned + * @deprecated. Code which uses av_free_static is broken/misdesigned * and should correctly use static arrays * */ @@ -2847,7 +2847,7 @@ attribute_deprecated void av_free_static(void); * * @param[in] size The amount of memory you need in bytes. * @return block of memory of the requested size - * @deprecated. Code which uses av_mallocz_static is broken/missdesigned + * @deprecated. Code which uses av_mallocz_static is broken/misdesigned * and should correctly use static arrays */ attribute_deprecated void *av_mallocz_static(unsigned int size); |