Mercurial > mplayer.hg
diff libmpcodecs/mp_image.c @ 33364:e1ee4895e500
Support displaying of 9- and 10-bit pixel formats,
as used by v210 and H264.
Patch by Arne Bochem, arneb D mp a ccan D de
| author | cehoyos |
|---|---|
| date | Tue, 10 May 2011 08:42:52 +0000 |
| parents | 7af3e6f901fd |
| children | 706871635af7 |
line wrap: on
line diff
--- a/libmpcodecs/mp_image.c Mon May 09 18:47:27 2011 +0000 +++ b/libmpcodecs/mp_image.c Tue May 10 08:42:52 2011 +0000 @@ -147,8 +147,14 @@ case IMGFMT_444P16_BE: case IMGFMT_422P16_LE: case IMGFMT_422P16_BE: + case IMGFMT_422P10_LE: + case IMGFMT_422P10_BE: case IMGFMT_420P16_LE: case IMGFMT_420P16_BE: + case IMGFMT_420P10_LE: + case IMGFMT_420P10_BE: + case IMGFMT_420P9_LE: + case IMGFMT_420P9_BE: return; case IMGFMT_Y800: case IMGFMT_Y8:
