mirror of https://github.com/mpv-player/mpv
NV12 added
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6492 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
9fc6c93c8b
commit
1bf7748010
|
@ -22,6 +22,7 @@ char *vo_format_name(int format)
|
|||
case IMGFMT_CLPL: return("Planar CLPL");
|
||||
case IMGFMT_Y800: return("Planar Y800");
|
||||
case IMGFMT_Y8: return("Planar Y8");
|
||||
case IMGFMT_NV12: return("Planar NV12");
|
||||
case IMGFMT_IUYV: return("Packed IUYV");
|
||||
case IMGFMT_IY41: return("Packed IY41");
|
||||
case IMGFMT_IYU1: return("Packed IYU1");
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
#define IMGFMT_CLPL 0x4C504C43
|
||||
#define IMGFMT_Y800 0x30303859
|
||||
#define IMGFMT_Y8 0x20203859
|
||||
#define IMGFMT_NV12 0x3231564E
|
||||
|
||||
/* Packed YUV Formats */
|
||||
|
||||
|
|
Loading…
Reference in New Issue