diff options
author | Paul B Mahol <onemda@gmail.com> | 2021-01-17 12:06:01 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2021-01-17 12:06:01 +0100 |
commit | 9b44f99329927b4ddbb4f8215c1d39562797df8e (patch) | |
tree | 3b86698d6715f1bde18d04201bf93b3dff6ba3ab /libavfilter/bbox.h | |
parent | 294854bd0a4ec92431b96906cf47a3b02f6c3af4 (diff) | |
download | ffmpeg-9b44f99329927b4ddbb4f8215c1d39562797df8e.tar.gz |
avfilter/bbox: add support for >8 depth
Diffstat (limited to 'libavfilter/bbox.h')
-rw-r--r-- | libavfilter/bbox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/bbox.h b/libavfilter/bbox.h index cf026b81f9..116158d59e 100644 --- a/libavfilter/bbox.h +++ b/libavfilter/bbox.h @@ -39,6 +39,6 @@ typedef struct FFBoundingBox { */ int ff_calculate_bounding_box(FFBoundingBox *bbox, const uint8_t *data, int linesize, - int w, int h, int min_val); + int w, int h, int min_val, int depth); #endif /* AVFILTER_BBOX_H */ |