dynarray: Change AV_ to FF_ for AV_DYNARRAY_ADD

The header is not installed and the macro isn't used outside libavutil,
so it is obviously privat to libavutil. Make the name reflect that.
This commit is contained in:
Timothy Gu
2016-07-29 22:05:39 -07:00
parent c9ae8be5a8
commit 04da20e58f
2 changed files with 4 additions and 4 deletions

View File

@@ -42,7 +42,7 @@
* array and size are not changed; the statement can end
* with a return or a goto
*/
#define AV_DYNARRAY_ADD(av_size_max, av_elt_size, av_array, av_size, \
#define FF_DYNARRAY_ADD(av_size_max, av_elt_size, av_array, av_size, \
av_success, av_failure) \
do { \
size_t av_size_new = (av_size); \