aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/apvdec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2025-04-27 20:20:02 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2025-04-30 23:34:47 +0200
commitc681d8e8a8180c74e0f0edd8c50f996862c30708 (patch)
tree1e45856678c3aa75233ce96c285388bb2ff15eff /libavformat/apvdec.c
parentf98c63e417d13dc5a30a1d2c2de550d8958f7b10 (diff)
downloadffmpeg-c681d8e8a8180c74e0f0edd8c50f996862c30708.tar.gz
avformat/apvdec: Remove inappropriate INIT_CLEANUP flag
The init-cleanup flag makes no sense for a demuxer without a read_close() function. Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/apvdec.c')
-rw-r--r--libavformat/apvdec.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/apvdec.c b/libavformat/apvdec.c
index d2c2a50629..f87fb477a9 100644
--- a/libavformat/apvdec.c
+++ b/libavformat/apvdec.c
@@ -244,7 +244,6 @@ const FFInputFormat ff_apv_demuxer = {
.p.long_name = NULL_IF_CONFIG_SMALL("APV raw bitstream"),
.p.extensions = "apv",
.p.flags = AVFMT_GENERIC_INDEX | AVFMT_NOTIMESTAMPS,
- .flags_internal = FF_INFMT_FLAG_INIT_CLEANUP,
.read_probe = apv_probe,
.read_header = apv_read_header,
.read_packet = apv_read_packet,