mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-11 03:32:39 +00:00
avformat/file: Add crypto to default whitelist
Fixes Ticket5287 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
068026b0f7
commit
efa98cdc2f
@ -345,7 +345,7 @@ const URLProtocol ff_file_protocol = {
|
|||||||
.url_open_dir = file_open_dir,
|
.url_open_dir = file_open_dir,
|
||||||
.url_read_dir = file_read_dir,
|
.url_read_dir = file_read_dir,
|
||||||
.url_close_dir = file_close_dir,
|
.url_close_dir = file_close_dir,
|
||||||
.default_whitelist = "file"
|
.default_whitelist = "file,crypto"
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* CONFIG_FILE_PROTOCOL */
|
#endif /* CONFIG_FILE_PROTOCOL */
|
||||||
@ -384,7 +384,7 @@ const URLProtocol ff_pipe_protocol = {
|
|||||||
.url_check = file_check,
|
.url_check = file_check,
|
||||||
.priv_data_size = sizeof(FileContext),
|
.priv_data_size = sizeof(FileContext),
|
||||||
.priv_data_class = &pipe_class,
|
.priv_data_class = &pipe_class,
|
||||||
.default_whitelist = "none"
|
.default_whitelist = "crypto"
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* CONFIG_PIPE_PROTOCOL */
|
#endif /* CONFIG_PIPE_PROTOCOL */
|
||||||
|
Loading…
Reference in New Issue
Block a user