rawdec: Support fourccs YV16 and YV24

This commit is contained in:
Piotr Bandurski 2011-12-28 04:50:27 +00:00 committed by Derek Buitenhuis
parent 34d908c083
commit 835a893bcb

View File

@ -179,6 +179,8 @@ static int raw_decode(AVCodecContext *avctx,
flip(avctx, picture);
if ( avctx->codec_tag == MKTAG('Y', 'V', '1', '2')
|| avctx->codec_tag == MKTAG('Y', 'V', '1', '6')
|| avctx->codec_tag == MKTAG('Y', 'V', '2', '4')
|| avctx->codec_tag == MKTAG('Y', 'V', 'U', '9'))
FFSWAP(uint8_t *, picture->data[1], picture->data[2]);