diff options
author | Peter Ross <pross@xvid.org> | 2011-03-19 22:11:03 +1100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-28 07:25:27 +0200 |
commit | c90626b2ea5434b6e6e77b654512f0e59e0ff29d (patch) | |
tree | 407e813e157e4441c05fb0df8c9301a030fd4f8a /libavfilter | |
parent | a1f4d07563c0489ee489343a4b6bfb0a7ef24300 (diff) | |
download | ffmpeg-c90626b2ea5434b6e6e77b654512f0e59e0ff29d.tar.gz |
hflip: 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_hflip.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_hflip.c b/libavfilter/vf_hflip.c index a232d26265..fb8911f851 100644 --- a/libavfilter/vf_hflip.c +++ b/libavfilter/vf_hflip.c @@ -38,6 +38,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, |