rawdec: Support fourccs YV16 and YV24

pull/5/head
Piotr Bandurski 13 years ago committed by Derek Buitenhuis
parent 34d908c083
commit 835a893bcb
  1. 2
      libavcodec/rawdec.c

@ -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]);

Loading…
Cancel
Save