You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-16 08:36:51 +02:00
lavf/mov: Tell users about the use_absolute_path option.
Fixes ticket #4539.
This commit is contained in:
@@ -2662,6 +2662,11 @@ static int mov_open_dref(MOVContext *c, AVIOContext **pb, const char *src, MOVDr
|
|||||||
} else if (c->fc->open_cb) {
|
} else if (c->fc->open_cb) {
|
||||||
if (!open_func(c->fc, pb, ref->path, AVIO_FLAG_READ, int_cb, NULL))
|
if (!open_func(c->fc, pb, ref->path, AVIO_FLAG_READ, int_cb, NULL))
|
||||||
return 0;
|
return 0;
|
||||||
|
} else {
|
||||||
|
av_log(c->fc, AV_LOG_ERROR,
|
||||||
|
"Absolute path %s not tried for security reasons, "
|
||||||
|
"set demuxer option use_absolute_path to allow absolute paths\n",
|
||||||
|
ref->path);
|
||||||
}
|
}
|
||||||
|
|
||||||
return AVERROR(ENOENT);
|
return AVERROR(ENOENT);
|
||||||
|
Reference in New Issue
Block a user