---
 libavformat/vqf.c |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 42 insertions(+), 0 deletions(-)

diff --git a/libavformat/vqf.c b/libavformat/vqf.c
index 3e79299..608ecbd 100644
--- a/libavformat/vqf.c
+++ b/libavformat/vqf.c
@@ -140,6 +140,48 @@ static int vqf_read_header(AVFormatContext *s, 
AVFormatParameters *ap)
         case MKTAG('G','E','N','R'):
             add_metadata(s, "genre"    , len, header_size);
             break;
+        case MKTAG('L','Y','R','C'):
+            add_metadata(s, "lyrics"   , len, header_size);
+            break;
+        case MKTAG('G','U','I','D'):
+            add_metadata(s, "GUID"     , len, header_size);
+            break;
+        case MKTAG('I','S','R','C'):
+            add_metadata(s, "ISRC"     , len, header_size);
+            break;
+        case MKTAG('W','O','R','D'):
+            add_metadata(s, "words"    , len, header_size);
+            break;
+        case MKTAG('M','U','S','C'):
+            add_metadata(s, "composer" , len, header_size);
+            break;
+        case MKTAG('A','R','N','G'):
+            add_metadata(s, "arranger" , len, header_size);
+            break;
+        case MKTAG('P','R','O','D'):
+            add_metadata(s, "producer" , len, header_size);
+            break;
+        case MKTAG('R','E','M','X'):
+            add_metadata(s, "remixer"  , len, header_size);
+            break;
+        case MKTAG('C','D','C','T'):
+            add_metadata(s, "conductor", len, header_size);
+            break;
+        case MKTAG('S','I','N','G'):
+            add_metadata(s, "singer"   , len, header_size);
+            break;
+        case MKTAG('B','A','N','D'):
+            add_metadata(s, "band"     , len, header_size);
+            break;
+        case MKTAG('P','R','S','N'):
+            add_metadata(s, "personnel", len, header_size);
+            break;
+        case MKTAG('L','A','B','L'):
+            add_metadata(s, "publisher", len, header_size);
+            break;
+        case MKTAG('N','O','T','E'):
+            add_metadata(s, "note"     , len, header_size);
+            break;
         default:
             av_log(s, AV_LOG_ERROR, "Unknown chunk: %c%c%c%c\n",
                    ((char*)&chunk_tag)[0], ((char*)&chunk_tag)[1],
-- 
1.7.7

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

Reply via email to