diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-07-29 22:05:39 -0700 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-07-31 10:19:03 -0700 |
commit | 04da20e58fd78617e9f4afc17ce7d04e4f839b7f (patch) | |
tree | 3f79420609301882dae9d018a51c399ba750c99d /libavutil/dynarray.h | |
parent | c9ae8be5a87ce6fc6cd3ddc5ac590c0245dc8928 (diff) | |
download | ffmpeg-04da20e58fd78617e9f4afc17ce7d04e4f839b7f.tar.gz |
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.
Diffstat (limited to 'libavutil/dynarray.h')
-rw-r--r-- | libavutil/dynarray.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/dynarray.h b/libavutil/dynarray.h index 4947d93dc8..034a9fedfe 100644 --- a/libavutil/dynarray.h +++ b/libavutil/dynarray.h @@ -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); \ |