diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-07-06 09:53:50 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-06 20:46:06 +0200 |
commit | 0c58388211726497e9cab6ebe797b36c31604f18 (patch) | |
tree | e39fd4cb5e7730a51db56cf82a52f1f5d2710b93 | |
parent | 02ca9efdcd55cb5b2cb485c71bcc36b919b09ff1 (diff) | |
download | ffmpeg-0c58388211726497e9cab6ebe797b36c31604f18.tar.gz |
swresample: grammar/capitalization fixes
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libswresample/swresample.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h index 017a320c01..c62028a229 100644 --- a/libswresample/swresample.h +++ b/libswresample/swresample.h @@ -140,7 +140,7 @@ enum SwrFilterType { typedef struct SwrContext SwrContext; /** - * Get the AVClass for swrContext. It can be used in combination with + * Get the AVClass for SwrContext. It can be used in combination with * AV_OPT_SEARCH_FAKE_OBJ for examining options. * * @see av_opt_find(). @@ -205,10 +205,10 @@ void swr_free(struct SwrContext **s); /** * Closes the context so that swr_is_initialized() returns 0. * - * the context can be brougt back to life by running swr_init(), + * The context can be brought back to life by running swr_init(), * swr_init() can also be used without swr_close(). * This function is mainly provided for simplifying the usecase - * where one tries to support libavresample and libswresample + * where one tries to support libavresample and libswresample. */ void swr_close(struct SwrContext *s); |