Signed-off-by: Paul B Mahol <[email protected]>
---
 libavformat/westwood_vqa.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/libavformat/westwood_vqa.c b/libavformat/westwood_vqa.c
index c4e19a9..bc3bdec 100644
--- a/libavformat/westwood_vqa.c
+++ b/libavformat/westwood_vqa.c
@@ -40,6 +40,7 @@
 #define SND1_TAG MKBETAG('S', 'N', 'D', '1')
 #define SND2_TAG MKBETAG('S', 'N', 'D', '2')
 #define VQFR_TAG MKBETAG('V', 'Q', 'F', 'R')
+#define VQFL_TAG MKBETAG('V', 'Q', 'F', 'L')
 
 /* don't know what these tags are for, but acknowledge their existence */
 #define CINF_TAG MKBETAG('C', 'I', 'N', 'F')
@@ -219,7 +220,8 @@ static int wsvqa_read_packet(AVFormatContext *s,
             return AVERROR_INVALIDDATA;
         }
 
-        if ((chunk_type == SND1_TAG) || (chunk_type == SND2_TAG) || 
(chunk_type == VQFR_TAG)) {
+        if ((chunk_type == SND1_TAG) || (chunk_type == SND2_TAG) ||
+            (chunk_type == VQFR_TAG) || (chunk_type == VQFL_TAG)) {
 
             if (av_new_packet(pkt, chunk_size))
                 return AVERROR(EIO);
-- 
1.7.7

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to