summaryrefslogtreecommitdiff
path: root/libavformat/utils.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-05-06 19:52:26 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-05-10 07:37:50 +0200
commit284313c664293cbbf115d1b41353b43a4c0dcb94 (patch)
tree3c8a0a8fda0f811a2be90b1007511a61e64b107c /libavformat/utils.c
parent3cfae9e038a501d89af6cd11b6843e31dcf3c161 (diff)
downloadffmpeg-284313c664293cbbf115d1b41353b43a4c0dcb94.tar.gz
avformat/utils: Move parser functions to a new file, demux_utils.c
This file is both for the various public APIs that are demuxer-only as well as for the demuxer-only internal functions. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 175f9caf8a..2d5ee8f7bc 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -63,16 +63,6 @@ int ff_unlock_avformat(void)
return ff_mutex_unlock(&avformat_mutex) ? -1 : 0;
}
-struct AVCodecParserContext *av_stream_get_parser(const AVStream *st)
-{
- return cffstream(st)->parser;
-}
-
-void avpriv_stream_set_need_parsing(AVStream *st, enum AVStreamParseType type)
-{
- ffstream(st)->need_parsing = type;
-}
-
void av_format_inject_global_side_data(AVFormatContext *s)
{
FFFormatContext *const si = ffformatcontext(s);