The former has been deprecated.
Signed-off-by: Martin Storsjö <martin@martin.st>
if (!s->model_name)
return AVERROR(EINVAL);
- f = av_fopen_utf8(s->model_name, "r");
+ f = avpriv_fopen_utf8(s->model_name, "r");
if (!f) {
av_log(ctx, AV_LOG_ERROR, "Failed to open model file: %s\n", s->model_name);
return AVERROR(EINVAL);
const char *src_const;
int err;
- file = av_fopen_utf8(filename, "r");
+ file = avpriv_fopen_utf8(filename, "r");
if (!file) {
av_log(avctx, AV_LOG_ERROR, "Unable to open program "
"source file \"%s\".\n", filename);
AVBPrint buf;
const double scale = 1. / (lut_size - 1);
static const char * const colors[] = { "red", "green", "blue", "#404040", };
- FILE *f = av_fopen_utf8(fname, "w");
+ FILE *f = avpriv_fopen_utf8(fname, "w");
av_assert0(FF_ARRAY_ELEMS(colors) == NB_COMP + 1);
FILE *file;
DnnClassifyContext *ctx = context->priv;
- file = av_fopen_utf8(ctx->labels_filename, "r");
+ file = avpriv_fopen_utf8(ctx->labels_filename, "r");
if (!file){
av_log(context, AV_LOG_ERROR, "failed to open file %s\n", ctx->labels_filename);
return AVERROR(EINVAL);
FILE *file;
DnnDetectContext *ctx = context->priv;
- file = av_fopen_utf8(ctx->labels_filename, "r");
+ file = avpriv_fopen_utf8(ctx->labels_filename, "r");
if (!file){
av_log(context, AV_LOG_ERROR, "failed to open file %s\n", ctx->labels_filename);
return AVERROR(EINVAL);
av_log(ctx, AV_LOG_ERROR, "Hint file must be set.\n");
return AVERROR(EINVAL);
}
- s->hint = av_fopen_utf8(s->hint_file_str, "r");
+ s->hint = avpriv_fopen_utf8(s->hint_file_str, "r");
if (!s->hint) {
ret = AVERROR(errno);
av_log(ctx, AV_LOG_ERROR, "%s: %s\n", s->hint_file_str, av_err2str(ret));
return set_identity_matrix(ctx, 32);
}
- f = av_fopen_utf8(lut3d->file, "r");
+ f = avpriv_fopen_utf8(lut3d->file, "r");
if (!f) {
ret = AVERROR(errno);
av_log(ctx, AV_LOG_ERROR, "%s: %s\n", lut3d->file, av_err2str(ret));
return 0;
}
- f = av_fopen_utf8(lut1d->file, "r");
+ f = avpriv_fopen_utf8(lut1d->file, "r");
if (!f) {
ret = AVERROR(errno);
av_log(ctx, AV_LOG_ERROR, "%s: %s\n", lut1d->file, av_err2str(ret));
size_t bytes_read;
int ret = 0;
- weights_file = av_fopen_utf8(s->weights_file, "rb");
+ weights_file = avpriv_fopen_utf8(s->weights_file, "rb");
if (!weights_file) {
av_log(ctx, AV_LOG_ERROR, "No weights file provided, aborting!\n");
return AVERROR(EINVAL);
static int disp_tree(const struct color_node *node, const char *fname)
{
AVBPrint buf;
- FILE *f = av_fopen_utf8(fname, "w");
+ FILE *f = avpriv_fopen_utf8(fname, "w");
if (!f) {
int ret = AVERROR(errno);
}
// Get the contents of the gateway file.
- gateway_file = av_fopen_utf8(ipfs_gateway_file, "r");
+ gateway_file = avpriv_fopen_utf8(ipfs_gateway_file, "r");
if (!gateway_file) {
av_log(h, AV_LOG_WARNING,
"The IPFS gateway file (full uri: %s) doesn't exist. "