[FFmpeg-devel] [PATCH] lavfi: recognize GBR9-14P as RGB in ff_fill_rgba_map().
Paul B Mahol
onemda at gmail.com
Thu Jan 21 18:50:20 CET 2016
On 1/21/16, Ronald S. Bultje <rsbultje at gmail.com> wrote:
> ---
> libavfilter/drawutils.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/libavfilter/drawutils.c b/libavfilter/drawutils.c
> index 3257192..f9a5eb8 100644
> --- a/libavfilter/drawutils.c
> +++ b/libavfilter/drawutils.c
> @@ -52,6 +52,10 @@ int ff_fill_rgba_map(uint8_t *rgba_map, enum
> AVPixelFormat pix_fmt)
> case AV_PIX_FMT_BGRA:
> case AV_PIX_FMT_BGR0:
> case AV_PIX_FMT_BGR24: rgba_map[BLUE ] = 0; rgba_map[GREEN] = 1;
> rgba_map[RED ] = 2; rgba_map[ALPHA] = 3; break;
> + case AV_PIX_FMT_GBRP9:
> + case AV_PIX_FMT_GBRP10:
> + case AV_PIX_FMT_GBRP12:
> + case AV_PIX_FMT_GBRP14:
> case AV_PIX_FMT_GBRAP:
> case AV_PIX_FMT_GBRP: rgba_map[GREEN] = 0; rgba_map[BLUE ] = 1;
> rgba_map[RED ] = 2; rgba_map[ALPHA] = 3; break;
> default: /* unsupported */
> --
> 2.1.2
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
ok, but note that drawutils doesnt have >8 bit support
More information about the ffmpeg-devel
mailing list