Mercurial > libavformat.hg
changeset 6052:d742150345d6 libavformat
Add missing codec id <-> codec tag entries:
CODEC_ID_RAWVIDEO <-> Y41B
CODEC_ID_RAWVIDEO <-> Y42B
CODEC_ID_RAWVIDEO <-> YUV9
CODEC_ID_RAWVIDEO <-> YVU9
These codec tags are listed in fourcc.org, and are already listed in
libavcodec/raw.c:ff_raw_pix_fmt_tags as AVI tags.
author | stefano |
---|---|
date | Mon, 24 May 2010 20:35:01 +0000 |
parents | 5a9972bd90b6 |
children | 1b6a5459ff73 |
files | riff.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/riff.c Mon May 24 17:49:26 2010 +0000 +++ b/riff.c Mon May 24 20:35:01 2010 +0000 @@ -171,6 +171,10 @@ { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '1', '1') }, { CODEC_ID_RAWVIDEO, MKTAG('N', 'V', '1', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('N', 'V', '2', '1') }, + { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '1', 'B') }, + { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '2', 'B') }, + { 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_R210, MKTAG('r', '2', '1', '0') }, { CODEC_ID_V210, MKTAG('v', '2', '1', '0') },