From a233eaa618b8d94cfb46bd0b6b0ad911f368a44e Mon Sep 17 00:00:00 2001
From: Aurelien Jacobs <aurel@gnuage.org>
Date: Wed, 18 Feb 2009 00:02:38 +0000
Subject: [PATCH] use new metadata API in nsv demuxer

Originally committed as revision 17407 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/nsvdec.c | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c
index 4f09e6a7f37..719337c898d 100644
--- a/libavformat/nsvdec.c
+++ b/libavformat/nsvdec.c
@@ -337,15 +337,7 @@ static int nsv_parse_NSVf_header(AVFormatContext *s, AVFormatParameters *ap)
                 break;
             *p++ = '\0';
             PRINT(("NSV NSVf INFO: %s='%s'\n", token, value));
-            if (!strcmp(token, "ASPECT")) {
-                /* don't care */
-            } else if (!strcmp(token, "CREATOR") || !strcmp(token, "Author")) {
-                strncpy(s->author, value, 512-1);
-            } else if (!strcmp(token, "Copyright")) {
-                strncpy(s->copyright, value, 512-1);
-            } else if (!strcmp(token, "TITLE") || !strcmp(token, "Title")) {
-                strncpy(s->title, value, 512-1);
-            }
+            av_metadata_set(&s->metadata, token, value);
         }
         av_free(strings);
     }
-- 
GitLab