[FFmpeg-cvslog] avfilter/vf_cropdetect: add RGB & RGBA support

Michael Niedermayer git at videolan.org
Tue Dec 30 02:26:09 CET 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Dec 30 02:19:05 2014 +0100| [17dc83ab5e69dda27bc97f41c1301b9368d52670] | committer: Michael Niedermayer

avfilter/vf_cropdetect: add RGB & RGBA support

These where already supported in the code but not listed in the supported
pixel formats.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=17dc83ab5e69dda27bc97f41c1301b9368d52670
---

 libavfilter/vf_cropdetect.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavfilter/vf_cropdetect.c b/libavfilter/vf_cropdetect.c
index c2c1bc4..fb7be8e 100644
--- a/libavfilter/vf_cropdetect.c
+++ b/libavfilter/vf_cropdetect.c
@@ -52,6 +52,8 @@ static int query_formats(AVFilterContext *ctx)
         AV_PIX_FMT_YUV411P, AV_PIX_FMT_GRAY8,
         AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV410P,
         AV_PIX_FMT_NV12,    AV_PIX_FMT_NV21,
+        AV_PIX_FMT_RGB24,   AV_PIX_FMT_BGR24,
+        AV_PIX_FMT_RGBA,    AV_PIX_FMT_BGRA,
         AV_PIX_FMT_NONE
     };
 



More information about the ffmpeg-cvslog mailing list