diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-10-21 20:43:43 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-10-21 20:43:43 +0000 |
commit | 9abba21ad3474ff5c49dd5cf17facc8330386a95 (patch) | |
tree | ddff88656a8fcc7fe169cfc780db2852890d49a5 /libavfilter/avfilter.h | |
parent | 1554fed2d69c8b1ead1529a74d88e99c8c0f1d21 (diff) | |
download | ffmpeg-9abba21ad3474ff5c49dd5cf17facc8330386a95.tar.gz |
Cosmetics: prefer "pix_fmts" over "pix_fmt" for the name of the
argument of avfilter_make_format_list(), as the argument represents a
list of elements.
Originally committed as revision 20341 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 2ebbc1fd2f..fe06f806d9 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -176,7 +176,7 @@ struct AVFilterFormats * @param pix_fmt list of pixel formats, terminated by PIX_FMT_NONE * @return the format list, with no existing references */ -AVFilterFormats *avfilter_make_format_list(const enum PixelFormat *pix_fmt); +AVFilterFormats *avfilter_make_format_list(const enum PixelFormat *pix_fmts); /** * Returns a list of all colorspaces supported by FFmpeg. |