Skip to content
Snippets Groups Projects
Commit fadd3a68 authored by Martin Storsjö's avatar Martin Storsjö
Browse files

smoothstreamingenc: Ignore the return value from mkdir


We don't need to return an error if the directory already existed.
We make sure that the directory actually is properly writeable later
within ism_write_header by writing a manifest anyway.

Signed-off-by: default avatarMartin Storsjö <martin@martin.st>
parent 8e276378
No related branches found
No related tags found
No related merge requests found
......@@ -285,12 +285,7 @@ static int ism_write_header(AVFormatContext *s)
int ret = 0, i;
AVOutputFormat *oformat;
ret = mkdir(s->filename, 0777);
if (ret) {
av_log(s, AV_LOG_ERROR, "mkdir(%s): %s\n", s->filename, strerror(errno));
return AVERROR(errno);
}
ret = 0;
mkdir(s->filename, 0777);
oformat = av_guess_format("ismv", NULL, NULL);
if (!oformat) {
......
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