diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2012-07-15 13:25:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-15 14:49:32 +0200 |
commit | 96e25073637f1fdc4818e193e74c38570c390d70 (patch) | |
tree | e1f8f01ff2baf0866c542debed29eb45f4f0e4de /libavcodec | |
parent | 198c4ea200f0d9e3058938688acb47036991f2c8 (diff) | |
download | ffmpeg-96e25073637f1fdc4818e193e74c38570c390d70.tar.gz |
isom: add "NO16" FourCC
samples:
http://www.datafilehost.com/download-46d9a0fa.html
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/rawdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index ba416db897..cabc8c4b4b 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -94,7 +94,7 @@ static av_cold int raw_init_decoder(AVCodecContext *avctx) { RawVideoContext *context = avctx->priv_data; - if (avctx->codec_tag == MKTAG('r','a','w',' ')) + if (avctx->codec_tag == MKTAG('r','a','w',' ') || avctx->codec_tag == MKTAG('N','O','1','6')) avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_mov, avctx->bits_per_coded_sample); else if (avctx->codec_tag == MKTAG('W','R','A','W')) avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_avi, avctx->bits_per_coded_sample); |