2003-03-16 21:03:20 +00:00
|
|
|
/*
|
|
|
|
* Raw Video Codec
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2001 Fabrice Bellard
|
2003-03-16 21:03:20 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2003-03-16 21:03:20 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-03-16 21:03:20 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2003-03-16 21:03:20 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-03-16 21:03:20 +00:00
|
|
|
*/
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-03-16 21:03:20 +00:00
|
|
|
/**
|
|
|
|
* @file raw.c
|
|
|
|
* Raw Video Codec
|
|
|
|
*/
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-03-16 21:03:20 +00:00
|
|
|
#include "avcodec.h"
|
2007-07-09 16:26:11 +00:00
|
|
|
#include "raw.h"
|
2003-03-16 21:03:20 +00:00
|
|
|
|
2007-07-09 16:26:11 +00:00
|
|
|
const PixelFormatTag ff_raw_pixelFormatTags[] = {
|
2003-05-07 19:01:45 +00:00
|
|
|
{ PIX_FMT_YUV420P, MKTAG('I', '4', '2', '0') }, /* Planar formats */
|
|
|
|
{ PIX_FMT_YUV420P, MKTAG('I', 'Y', 'U', 'V') },
|
2006-08-18 07:55:08 +00:00
|
|
|
{ PIX_FMT_YUV420P, MKTAG('Y', 'V', '1', '2') },
|
2003-05-07 19:01:45 +00:00
|
|
|
{ PIX_FMT_YUV410P, MKTAG('Y', 'U', 'V', '9') },
|
|
|
|
{ PIX_FMT_YUV411P, MKTAG('Y', '4', '1', 'B') },
|
|
|
|
{ PIX_FMT_YUV422P, MKTAG('Y', '4', '2', 'B') },
|
|
|
|
{ PIX_FMT_GRAY8, MKTAG('Y', '8', '0', '0') },
|
|
|
|
{ PIX_FMT_GRAY8, MKTAG(' ', ' ', 'Y', '8') },
|
|
|
|
|
|
|
|
|
2007-02-07 01:48:09 +00:00
|
|
|
{ PIX_FMT_YUYV422, MKTAG('Y', 'U', 'Y', '2') }, /* Packed formats */
|
|
|
|
{ PIX_FMT_YUYV422, MKTAG('Y', '4', '2', '2') },
|
2004-07-26 16:39:01 +00:00
|
|
|
{ PIX_FMT_UYVY422, MKTAG('U', 'Y', 'V', 'Y') },
|
2007-09-21 18:23:46 +00:00
|
|
|
{ PIX_FMT_UYVY422, MKTAG('H', 'D', 'Y', 'C') },
|
2003-05-07 19:01:45 +00:00
|
|
|
{ PIX_FMT_GRAY8, MKTAG('G', 'R', 'E', 'Y') },
|
2006-10-27 19:50:31 +00:00
|
|
|
{ PIX_FMT_RGB555, MKTAG('R', 'G', 'B', 15) },
|
|
|
|
{ PIX_FMT_BGR555, MKTAG('B', 'G', 'R', 15) },
|
2006-10-27 19:53:41 +00:00
|
|
|
{ PIX_FMT_RGB565, MKTAG('R', 'G', 'B', 16) },
|
|
|
|
{ PIX_FMT_BGR565, MKTAG('B', 'G', 'R', 16) },
|
2003-05-07 19:01:45 +00:00
|
|
|
|
2006-05-14 14:21:06 +00:00
|
|
|
/* quicktime */
|
|
|
|
{ PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') },
|
2007-03-03 14:11:45 +00:00
|
|
|
{ PIX_FMT_UYVY422, MKTAG('A', 'V', 'U', 'I') }, /* FIXME merge both fields */
|
2008-12-04 02:59:11 +00:00
|
|
|
{ PIX_FMT_PAL8, MKTAG('W', 'R', 'A', 'W') },
|
2006-05-14 14:21:06 +00:00
|
|
|
|
2008-10-13 07:42:11 +00:00
|
|
|
{ PIX_FMT_NONE, 0 },
|
2003-03-16 21:03:20 +00:00
|
|
|
};
|
|
|
|
|
2004-11-08 23:36:32 +00:00
|
|
|
unsigned int avcodec_pix_fmt_to_codec_tag(enum PixelFormat fmt)
|
2003-05-07 19:01:45 +00:00
|
|
|
{
|
2007-07-09 16:26:11 +00:00
|
|
|
const PixelFormatTag * tags = ff_raw_pixelFormatTags;
|
2003-05-07 19:01:45 +00:00
|
|
|
while (tags->pix_fmt >= 0) {
|
|
|
|
if (tags->pix_fmt == fmt)
|
2005-12-22 01:10:11 +00:00
|
|
|
return tags->fourcc;
|
|
|
|
tags++;
|
2003-05-07 19:01:45 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|