[FFmpeg-cvslog] lavfi/boxblur: Fix colourspace list.

Carl Eugen Hoyos git at videolan.org
Fri Mar 13 09:47:13 CET 2015


ffmpeg | branch: release/2.6 | Carl Eugen Hoyos <cehoyos at ag.or.at> | Tue Mar 10 22:55:30 2015 +0100| [77621ca31127d3cc2ba6134dfb1e2d5c1c40ca3e] | committer: Carl Eugen Hoyos

lavfi/boxblur: Fix colourspace list.

Fixes ticket #4363.
(cherry picked from commit 0637b59c2c6aeadead256bdc60fbce32d3d43615)

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

 libavfilter/vf_boxblur.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/vf_boxblur.c b/libavfilter/vf_boxblur.c
index 3ccf268..bcf0ca5 100644
--- a/libavfilter/vf_boxblur.c
+++ b/libavfilter/vf_boxblur.c
@@ -124,7 +124,7 @@ static int query_formats(AVFilterContext *ctx)
         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
         if (!(desc->flags & (AV_PIX_FMT_FLAG_HWACCEL | AV_PIX_FMT_FLAG_BITSTREAM | AV_PIX_FMT_FLAG_PAL)) &&
             (desc->flags & AV_PIX_FMT_FLAG_PLANAR || desc->nb_components == 1) &&
-            (!(desc->flags & AV_PIX_FMT_FLAG_BE) == !HAVE_BIGENDIAN) || desc->comp[0].depth_minus1 == 7)
+            (!(desc->flags & AV_PIX_FMT_FLAG_BE) == !HAVE_BIGENDIAN || desc->comp[0].depth_minus1 == 7))
             ff_add_format(&formats, fmt);
     }
 



More information about the ffmpeg-cvslog mailing list