mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
g2meet: Support G2M5 codec variant
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
This commit is contained in:
parent
88d1fb4e3f
commit
eb31256f12
3 changed files with 4 additions and 3 deletions
|
|
@ -685,12 +685,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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue