diff options
author | Eric Zimmerman | 2014-10-09 10:12:44 -0700 |
---|---|---|
committer | Michael Niedermayer | 2014-10-24 19:36:09 +0200 |
commit | 4ba5420e4d3699b89c9f7f15928cd486f88e9562 (patch) | |
tree | 41914667254e1abf0ff4116f2f5a77aa7ae28c93 /libavcodec | |
parent | 4641ae352ec587355764ffd5c43dd0d0ebd47654 (diff) |
Added support for G2M5 codec
This has also been independently found and fixed similarly by carl in
f4a3bbf4a3cd375121ea2495817f3e50e831ed48
The 2nd magic check is taken from carls implementation
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/g2meet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index 1004e1921e..41ad943150 100644 --- a/libavcodec/g2meet.c +++ b/libavcodec/g2meet.c @@ -683,12 +683,12 @@ static int g2m_decode_frame(AVCodecContext *avctx, void *data, magic = bytestream2_get_be32(&bc); if ((magic & ~0xF) != MKBETAG('G', '2', 'M', '0') || - (magic & 0xF) < 2 || (magic & 0xF) > 4) { + (magic & 0xF) < 2 || (magic & 0xF) > 5) { av_log(avctx, AV_LOG_ERROR, "Wrong magic %08X\n", magic); return AVERROR_INVALIDDATA; } - if ((magic & 0xF) != 4) { + if ((magic & 0xF) < 4) { av_log(avctx, AV_LOG_ERROR, "G2M2 and G2M3 are not yet supported\n"); return AVERROR(ENOSYS); } |