Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2020-10-07 23:21:27 +0300
committerMarton Balint <cus@passwd.hu>2021-01-23 22:10:05 +0300
commitdaac7f4d9cbbaa85abc37d3e079dd23e531a709b (patch)
treebdc0b33e5d0e9da0d7aac080258a95c7238825da /libavformat/swf.c
parent8d5f2a005d46f67f5d4e0b2da6c728b91ccdec3e (diff)
avformat/swf: add support for reading and writing VP6A and Flash Screen Video codecs
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/swf.c')
-rw-r--r--libavformat/swf.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/libavformat/swf.c b/libavformat/swf.c
index 1aa434a0ea..a3471d917a 100644
--- a/libavformat/swf.c
+++ b/libavformat/swf.c
@@ -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 },
};