mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-11-02 13:24:20 +08:00
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:
@@ -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); \
|
||||
|
||||
Reference in New Issue
Block a user