diff options
author | Thierry Foucu <tfoucu@gmail.com> | 2011-08-09 11:32:25 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-08-09 21:53:48 +0200 |
commit | 63377695a66097b4ebc31afde4ba845854e1e8ca (patch) | |
tree | c479fd407c40b2a56fe43177fa468f5c20074ed2 /libavformat/riff.c | |
parent | 2a41701300fb96758e47e31de69ed3b365b87812 (diff) | |
download | ffmpeg-63377695a66097b4ebc31afde4ba845854e1e8ca.tar.gz |
AVCodecTag: Add MKTAG for Go2Meeting video codec
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 636d05c636..2212a7fac5 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -273,6 +273,9 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_DPX, MKTAG('d', 'p', 'x', ' ') }, { CODEC_ID_KGV1, MKTAG('K', 'G', 'V', '1') }, { CODEC_ID_LAGARITH, MKTAG('L', 'A', 'G', 'S') }, + { CODEC_ID_G2M, MKTAG('G', '2', 'M', '2') }, + { CODEC_ID_G2M, MKTAG('G', '2', 'M', '3') }, + { CODEC_ID_G2M, MKTAG('G', '2', 'M', '4') }, { CODEC_ID_NONE, 0 } }; |