Commit a233eaa6 authored by Aurelien Jacobs's avatar Aurelien Jacobs

use new metadata API in nsv demuxer

Originally committed as revision 17407 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4b358c3e
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment