summaryrefslogtreecommitdiff
path: root/libavformat/demux.h
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/demux.h
parent3cfae9e038a501d89af6cd11b6843e31dcf3c161 (diff)
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/demux.h')
-rw-r--r--libavformat/demux.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/demux.h b/libavformat/demux.h
index c667f304a5..ff8d998d56 100644
--- a/libavformat/demux.h
+++ b/libavformat/demux.h
@@ -171,4 +171,6 @@ void ff_rfps_calculate(AVFormatContext *ic);
void ff_rescale_interval(AVRational tb_in, AVRational tb_out,
int64_t *min_ts, int64_t *ts, int64_t *max_ts);
+void avpriv_stream_set_need_parsing(AVStream *st, enum AVStreamParseType type);
+
#endif /* AVFORMAT_DEMUX_H */