#include "avcodec.h"
#include "raw.h"
Go to the source code of this file.
Functions | |
| unsigned int | avcodec_pix_fmt_to_codec_tag (enum PixelFormat fmt) | 
Variables | |
| const PixelFormatTag | ff_raw_pixelFormatTags [] | 
Definition in file raw.c.
| unsigned int avcodec_pix_fmt_to_codec_tag | ( | enum PixelFormat | fmt | ) | 
| const PixelFormatTag ff_raw_pixelFormatTags[] | 
Initial value:
 {
    { PIX_FMT_YUV420P, MKTAG('I', '4', '2', '0') }, 
    { PIX_FMT_YUV420P, MKTAG('I', 'Y', 'U', 'V') },
    { PIX_FMT_YUV420P, MKTAG('Y', 'V', '1', '2') },
    { 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') },
    { PIX_FMT_YUYV422, MKTAG('Y', 'U', 'Y', '2') }, 
    { PIX_FMT_YUYV422, MKTAG('Y', '4', '2', '2') },
    { PIX_FMT_UYVY422, MKTAG('U', 'Y', 'V', 'Y') },
    { PIX_FMT_UYVY422, MKTAG('H', 'D', 'Y', 'C') },
    { PIX_FMT_GRAY8,   MKTAG('G', 'R', 'E', 'Y') },
    { PIX_FMT_RGB555,  MKTAG('R', 'G', 'B', 15) },
    { PIX_FMT_BGR555,  MKTAG('B', 'G', 'R', 15) },
    { PIX_FMT_RGB565,  MKTAG('R', 'G', 'B', 16) },
    { PIX_FMT_BGR565,  MKTAG('B', 'G', 'R', 16) },
    
    { PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') },
    { PIX_FMT_UYVY422, MKTAG('A', 'V', 'U', 'I') }, 
    { PIX_FMT_PAL8,    MKTAG('W', 'R', 'A', 'W') },
    { PIX_FMT_NONE, 0 },
}
Definition at line 30 of file raw.c.
Referenced by raw_init_decoder().
 1.5.8