diff options
author | James Almer <jamrial@gmail.com> | 2024-10-12 16:55:05 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-10-13 20:54:07 -0300 |
commit | 667e22e85dcdf85975cd1f6a9b2bb4d110ff7823 (patch) | |
tree | 6dbc1a1557789bae6c5b3c843e72f86aa4462c86 /libavfilter/drawutils.h | |
parent | e347b4ff313107de9012e755e14f829ccdc6fbcb (diff) | |
download | ffmpeg-667e22e85dcdf85975cd1f6a9b2bb4d110ff7823.tar.gz |
avfilter/vsdc_testsrc: simplify yuvtest_fill_picture
Copy what's done for rgbtest_fill_picture.
It will be useful for the following commit.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavfilter/drawutils.h')
-rw-r--r-- | libavfilter/drawutils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/drawutils.h b/libavfilter/drawutils.h index 90df55107a..f4903d1a86 100644 --- a/libavfilter/drawutils.h +++ b/libavfilter/drawutils.h @@ -29,6 +29,7 @@ #include "libavutil/pixfmt.h" int ff_fill_rgba_map(uint8_t *rgba_map, enum AVPixelFormat pix_fmt); +int ff_fill_ayuv_map(uint8_t *ayuv_map, enum AVPixelFormat pix_fmt); #define MAX_PLANES 4 |