diff options
author | Peter Ross <pross@xvid.org> | 2011-03-19 22:05:53 +1100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-28 07:25:27 +0200 |
commit | a1f4d07563c0489ee489343a4b6bfb0a7ef24300 (patch) | |
tree | 26b0fcb1cef32559d4c0354684f9f207747546c8 /libavfilter | |
parent | 1afbae100becbfff0dcad43610326a1dadcc315d (diff) | |
download | ffmpeg-a1f4d07563c0489ee489343a4b6bfb0a7ef24300.tar.gz |
crop: make the filter accept PIX_FMT_BGR48LE and PIX_FMT_BGR48BE pixel formats
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_crop.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c index 105c3901c9..9f71b9e7dc 100644 --- a/libavfilter/vf_crop.c +++ b/libavfilter/vf_crop.c @@ -80,6 +80,7 @@ static int query_formats(AVFilterContext *ctx) { static const enum PixelFormat pix_fmts[] = { PIX_FMT_RGB48BE, PIX_FMT_RGB48LE, + PIX_FMT_BGR48BE, PIX_FMT_BGR48LE, PIX_FMT_ARGB, PIX_FMT_RGBA, PIX_FMT_ABGR, PIX_FMT_BGRA, PIX_FMT_RGB24, PIX_FMT_BGR24, |