From 4d81f9631de70cd460413bc6aad22005c8dc6bf0 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Thu, 13 Oct 2016 12:14:20 +0200 Subject: [PATCH] lavf/riff: Support Verint NetDVR II ("VSM4") h263 video in asf. --- libavformat/riff.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/riff.c b/libavformat/riff.c index 72ad5d977a..dceb9797bf 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -56,6 +56,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_H263I, MKTAG('I', '2', '6', '3') }, /* Intel H.263 */ { AV_CODEC_ID_H261, MKTAG('H', '2', '6', '1') }, { AV_CODEC_ID_H263, MKTAG('U', '2', '6', '3') }, + { AV_CODEC_ID_H263, MKTAG('V', 'S', 'M', '4') }, { AV_CODEC_ID_MPEG4, MKTAG('F', 'M', 'P', '4') }, { AV_CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', 'X') }, { AV_CODEC_ID_MPEG4, MKTAG('D', 'X', '5', '0') },