diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-03-31 16:38:07 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-05-17 20:29:50 +0200 |
commit | b01f6041f4260fba053c2f96ce1611ea77e833a0 (patch) | |
tree | a25c3ecccfc7f802b9384dfcc598302f28109883 /libavfilter/formats.h | |
parent | e27f4b7cbf8a3fde313cfe4b3a1880bf5031e9ae (diff) | |
download | ffmpeg-b01f6041f4260fba053c2f96ce1611ea77e833a0.tar.gz |
lavfi: rename AVFilterFormats.format_count to nb_formats
This is more consistent with naming in the rest of Libav.
Diffstat (limited to 'libavfilter/formats.h')
-rw-r--r-- | libavfilter/formats.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/formats.h b/libavfilter/formats.h index 0e1628c850..2e44792f3c 100644 --- a/libavfilter/formats.h +++ b/libavfilter/formats.h @@ -62,7 +62,7 @@ * pointer to each of the pointers to itself. */ struct AVFilterFormats { - unsigned format_count; ///< number of formats + unsigned nb_formats; ///< number of formats int *formats; ///< list of media formats unsigned refcount; ///< number of references to this list |