Mercurial > libavformat.hg
changeset 6474:3ec611be7d7a libavformat
Add R10k decoder.
Original patch by Zhou Zongyi, zhouzy A os pku edu cn, resubmitted by
James Darnley, james.darnley gmail, changes by me.
author | cehoyos |
---|---|
date | Mon, 13 Sep 2010 22:08:51 +0000 |
parents | 1a62da965733 |
children | 2da74be1a3d8 |
files | isom.c riff.c |
diffstat | 2 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/isom.c Sat Sep 11 16:29:23 2010 +0000 +++ b/isom.c Mon Sep 13 22:08:51 2010 +0000 @@ -77,6 +77,7 @@ { CODEC_ID_RAWVIDEO, MKTAG('b', '1', '6', 'g') }, { CODEC_ID_RAWVIDEO, MKTAG('b', '4', '8', 'r') }, + { CODEC_ID_R10K, MKTAG('R', '1', '0', 'k') }, /* UNCOMPRESSED 10BIT RGB */ { CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, /* UNCOMPRESSED 10BIT RGB */ { CODEC_ID_V210, MKTAG('v', '2', '1', '0') }, /* UNCOMPRESSED 10BIT 4:2:2 */
--- a/riff.c Sat Sep 11 16:29:23 2010 +0000 +++ b/riff.c Mon Sep 13 22:08:51 2010 +0000 @@ -179,6 +179,7 @@ { CODEC_ID_RAWVIDEO, MKTAG('Y', 'U', 'V', '9') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', 'U', '9') }, { CODEC_ID_FRWU, MKTAG('F', 'R', 'W', 'U') }, + { CODEC_ID_R10K, MKTAG('R', '1', '0', 'k') }, { CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, { CODEC_ID_V210, MKTAG('v', '2', '1', '0') }, { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') },