mirror of https://github.com/mpv-player/mpv
Add support for 440p colorspace.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30140 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
8e35068138
commit
cc46a64a26
|
@ -155,6 +155,7 @@ static int add_to_format(char *s, char *alias,unsigned int *fourcc, unsigned int
|
|||
{"444P", IMGFMT_444P},
|
||||
{"422P", IMGFMT_422P},
|
||||
{"411P", IMGFMT_411P},
|
||||
{"440P", IMGFMT_440P},
|
||||
{"Y800", IMGFMT_Y800},
|
||||
{"Y8", IMGFMT_Y8},
|
||||
|
||||
|
|
|
@ -58,6 +58,7 @@ static const struct {
|
|||
{IMGFMT_411P, PIX_FMT_YUV411P},
|
||||
{IMGFMT_422P, PIX_FMT_YUV422P},
|
||||
{IMGFMT_444P, PIX_FMT_YUV444P},
|
||||
{IMGFMT_440P, PIX_FMT_YUV440P},
|
||||
|
||||
// YUVJ are YUV formats that use the full Y range and not just
|
||||
// 16 - 235 (see colorspaces.txt).
|
||||
|
@ -65,6 +66,7 @@ static const struct {
|
|||
{IMGFMT_YV12, PIX_FMT_YUVJ420P},
|
||||
{IMGFMT_422P, PIX_FMT_YUVJ422P},
|
||||
{IMGFMT_444P, PIX_FMT_YUVJ444P},
|
||||
{IMGFMT_440P, PIX_FMT_YUVJ440P},
|
||||
|
||||
{IMGFMT_XVMC_MOCO_MPEG2, PIX_FMT_XVMC_MPEG2_MC},
|
||||
{IMGFMT_XVMC_IDCT_MPEG2, PIX_FMT_XVMC_MPEG2_IDCT},
|
||||
|
|
|
@ -108,6 +108,10 @@ int mp_get_chroma_shift(int format, int *x_shift, int *y_shift)
|
|||
xs = 2;
|
||||
ys = 0;
|
||||
break;
|
||||
case IMGFMT_440P:
|
||||
xs = 0;
|
||||
ys = 1;
|
||||
break;
|
||||
default:
|
||||
err = 1;
|
||||
break;
|
||||
|
|
|
@ -71,6 +71,7 @@
|
|||
#define IMGFMT_444P 0x50343434
|
||||
#define IMGFMT_422P 0x50323234
|
||||
#define IMGFMT_411P 0x50313134
|
||||
#define IMGFMT_440P 0x50303434
|
||||
#define IMGFMT_HM12 0x32314D48
|
||||
|
||||
/* Packed YUV Formats */
|
||||
|
|
|
@ -151,6 +151,7 @@ static inline void mp_image_setfmt(mp_image_t* mpi,unsigned int out_fmt){
|
|||
case IMGFMT_444P:
|
||||
case IMGFMT_422P:
|
||||
case IMGFMT_411P:
|
||||
case IMGFMT_440P:
|
||||
return;
|
||||
case IMGFMT_Y800:
|
||||
case IMGFMT_Y8:
|
||||
|
|
|
@ -1035,6 +1035,7 @@ static struct {
|
|||
{"444p", IMGFMT_444P},
|
||||
{"422p", IMGFMT_422P},
|
||||
{"411p", IMGFMT_411P},
|
||||
{"440p", IMGFMT_440P},
|
||||
{"yuy2", IMGFMT_YUY2},
|
||||
{"uyvy", IMGFMT_UYVY},
|
||||
{"yvu9", IMGFMT_YVU9},
|
||||
|
|
Loading…
Reference in New Issue