avformat/swf: add support for reading and writing VP6A and Flash Screen Video codecs

Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
Marton Balint
2020-10-07 22:21:27 +02:00
parent 8d5f2a005d
commit daac7f4d9c
3 changed files with 35 additions and 14 deletions

View File

@@ -23,7 +23,9 @@
#include "internal.h"
const AVCodecTag ff_swf_codec_tags[] = {
{ AV_CODEC_ID_FLV1, 0x02 },
{ AV_CODEC_ID_VP6F, 0x04 },
{ AV_CODEC_ID_NONE, 0 },
{ AV_CODEC_ID_FLV1, 0x02 },
{ AV_CODEC_ID_FLASHSV, 0x03 },
{ AV_CODEC_ID_VP6F, 0x04 },
{ AV_CODEC_ID_VP6A, 0x05 },
{ AV_CODEC_ID_NONE, 0 },
};