From fd8a6f78c5b1c7d5553af58e275db9bef33915a9 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sat, 7 May 2022 08:54:18 +0200 Subject: [PATCH] avformat/utils: Move ff_format_set_url to avformat.c An auxiliary function for AVFormatContexts (mainly muxers, but potentially (e.g. rtsp) also demuxers). Signed-off-by: Andreas Rheinhardt --- libavformat/avformat.c | 7 +++++++ libavformat/utils.c | 7 ------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libavformat/avformat.c b/libavformat/avformat.c index eabccffcb0..414224187a 100644 --- a/libavformat/avformat.c +++ b/libavformat/avformat.c @@ -691,3 +691,10 @@ int ff_is_intra_only(enum AVCodecID id) return 0; return 1; } + +void ff_format_set_url(AVFormatContext *s, char *url) +{ + av_assert0(url); + av_freep(&s->url); + s->url = url; +} diff --git a/libavformat/utils.c b/libavformat/utils.c index 343d8e7374..866b80cffe 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -697,10 +697,3 @@ int ff_bprint_to_codecpar_extradata(AVCodecParameters *par, struct AVBPrint *buf par->extradata_size = buf->len; return 0; } - -void ff_format_set_url(AVFormatContext *s, char *url) -{ - av_assert0(url); - av_freep(&s->url); - s->url = url; -}