0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

DOCS/tech/colorspaces.txt says I420 and IYUV are the same, so add IYUV at the

same place. It can't break anything worse than it is now (i.e. not working/supported
at all) and hopefully triggers a bug report so it gets fixed if it's wrong ;-)


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24436 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-09-12 17:59:31 +00:00
parent aa86532434
commit aef93d245d

View File

@ -57,6 +57,7 @@ enum PixelFormat imgfmt2pixfmt(int fmt)
case IMGFMT_YVU9:
return PIX_FMT_YUV410P;
case IMGFMT_I420:
case IMGFMT_IYUV:
case IMGFMT_YV12:
return PIX_FMT_YUV420P;
case IMGFMT_411P: