Commit 183faf51 authored by stefano's avatar stefano

Make avfilter_all_colorspaces() add to the returned list of pixel

formats only the non-HW-accelerated formats, for which there is no
sense in filtering.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21009 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7f0170d6
......@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/pixdesc.h"
#include "avfilter.h"
/**
......@@ -101,14 +102,12 @@ int avfilter_add_colorspace(AVFilterFormats *avff, enum PixelFormat pix_fmt)
AVFilterFormats *avfilter_all_colorspaces(void)
{
AVFilterFormats *ret;
int i;
enum PixelFormat pix_fmt;
ret = av_mallocz(sizeof(AVFilterFormats));
ret->formats = av_malloc(sizeof(*ret->formats) * PIX_FMT_NB);
ret->format_count = PIX_FMT_NB;
for(i = 0; i < PIX_FMT_NB; i ++)
ret->formats[i] = i;
for (pix_fmt = 0; pix_fmt < PIX_FMT_NB; pix_fmt++)
if (!(av_pix_fmt_descriptors[pix_fmt].flags & PIX_FMT_HWACCEL))
avfilter_add_colorspace(ret, pix_fmt);
return ret;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment