diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-07 22:51:06 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-07 22:51:06 +0000 |
commit | c4d2e41ce4735d603e0ab969a396735da1ac7774 (patch) | |
tree | 67fd64e2e87ded0e08242bfac19246b81b437018 /libavfilter/avfilter.h | |
parent | e38215f2a4231af102a19a0e36e6c753b9318ef1 (diff) | |
download | ffmpeg-c4d2e41ce4735d603e0ab969a396735da1ac7774.tar.gz |
Avoid the use of the modal auxiliary "should" in the
AVFilter.query_formats doxy.
The doxy expresses what a function does, not what it should do.
Originally committed as revision 21075 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index a7e061b742..92f635d91c 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -419,11 +419,11 @@ typedef struct AVFilter void (*uninit)(AVFilterContext *ctx); /** - * Queries formats supported by the filter and its pads. Should set the + * Queries formats supported by the filter and its pads, and sets the * in_formats for links connected to its output pads, and out_formats * for links connected to its input pads. * - * Should return zero on success. + * Returns zero on success. */ int (*query_formats)(AVFilterContext *); |