Skip to content
Snippets Groups Projects
Commit a233eaa6 authored by Aurelien Jacobs's avatar Aurelien Jacobs
Browse files

use new metadata API in nsv demuxer

Originally committed as revision 17407 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4b358c3e
No related branches found
No related tags found
No related merge requests found
...@@ -337,15 +337,7 @@ static int nsv_parse_NSVf_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -337,15 +337,7 @@ static int nsv_parse_NSVf_header(AVFormatContext *s, AVFormatParameters *ap)
break; break;
*p++ = '\0'; *p++ = '\0';
PRINT(("NSV NSVf INFO: %s='%s'\n", token, value)); PRINT(("NSV NSVf INFO: %s='%s'\n", token, value));
if (!strcmp(token, "ASPECT")) { av_metadata_set(&s->metadata, token, value);
/* 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_free(strings); av_free(strings);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment