summaryrefslogtreecommitdiffstats
path: root/fmt-conversion.h
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-12 17:59:31 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-12 17:59:31 +0000
commitaef93d245d49997b5f148347325233377ae61ffd (patch)
tree77d3d42026aa82dfdef1b7b1ae0bb6d1ed3123dc /fmt-conversion.h
parentaa8653243467e94cb322070d4538ed82671c0465 (diff)
downloadmpv-aef93d245d49997b5f148347325233377ae61ffd.tar.bz2
mpv-aef93d245d49997b5f148347325233377ae61ffd.tar.xz
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
Diffstat (limited to 'fmt-conversion.h')
-rw-r--r--fmt-conversion.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/fmt-conversion.h b/fmt-conversion.h
index d89ba7c204..a0619c5a55 100644
--- a/fmt-conversion.h
+++ b/fmt-conversion.h
@@ -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: