Commit 0c583882 authored by Timothy Gu's avatar Timothy Gu Committed by Michael Niedermayer

swresample: grammar/capitalization fixes

Signed-off-by: 's avatarTimothy Gu <timothygu99@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 02ca9efd
...@@ -140,7 +140,7 @@ enum SwrFilterType { ...@@ -140,7 +140,7 @@ enum SwrFilterType {
typedef struct SwrContext SwrContext; 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. * AV_OPT_SEARCH_FAKE_OBJ for examining options.
* *
* @see av_opt_find(). * @see av_opt_find().
...@@ -205,10 +205,10 @@ void swr_free(struct SwrContext **s); ...@@ -205,10 +205,10 @@ void swr_free(struct SwrContext **s);
/** /**
* Closes the context so that swr_is_initialized() returns 0. * 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(). * swr_init() can also be used without swr_close().
* This function is mainly provided for simplifying the usecase * 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); void swr_close(struct SwrContext *s);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment