Hi,

On Sun, Dec 4, 2011 at 6:56 AM, Luca Barbato <[email protected]> wrote:

> ---
>  libavcodec/raw.c |    6 ++++++
>  1 files changed, 6 insertions(+), 0 deletions(-)
>
> diff --git a/libavcodec/raw.c b/libavcodec/raw.c
> index cdd2175..c41f756 100644
> --- a/libavcodec/raw.c
> +++ b/libavcodec/raw.c
> @@ -108,6 +108,12 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
>     { PIX_FMT_BGR48BE,  MKTAG( 48, 'B', 'G', 'R') },
>     { PIX_FMT_GRAY16LE,    MKTAG('Y', '1',  0 , 16 ) },
>     { PIX_FMT_GRAY16BE,    MKTAG(16 ,  0 , '1', 'Y') },
> +    { PIX_FMT_YUV420P10LE, MKTAG('Y', '3', 11 , 10 ) },
> +    { PIX_FMT_YUV420P10BE, MKTAG(10 , 11 , '3', 'Y') },
> +    { PIX_FMT_YUV422P10LE, MKTAG('Y', '3', 10 , 10 ) },
> +    { PIX_FMT_YUV422P10BE, MKTAG(10 , 10 , '3', 'Y') },
> +    { PIX_FMT_YUV444P10LE, MKTAG('Y', '3',  0 , 10 ) },
> +    { PIX_FMT_YUV444P10BE, MKTAG(10 ,  0 , '3', 'Y') },


Who made these up? Microsoft says this (P410 isn't in their list but can
easily be derived):

P010 planar YUV420 10-bit
P210 Planar YUV422 10-bit
P410 planar YUV444 10-bit

http://msdn.microsoft.com/en-us/library/windows/desktop/bb970578(v=vs.85).aspx


Ronald
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to