avformat/internal: Move FF_FMT_INIT_CLEANUP to demux.h

and rename it to FF_INFMT_INIT_CLEANUP. This flag is demuxer-only,
so this is the more appropriate place for it.
This does not preclude adding internal flags common to both
demuxer and muxer in the future.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2024-03-15 18:08:11 +01:00
parent 27af88fb7f
commit 4a4dcde339
65 changed files with 74 additions and 74 deletions

View file

@ -4265,7 +4265,7 @@ const FFInputFormat ff_mxf_demuxer = {
.p.flags = AVFMT_SEEK_TO_PTS,
.p.priv_class = &demuxer_class,
.priv_data_size = sizeof(MXFContext),
.flags_internal = FF_FMT_INIT_CLEANUP,
.flags_internal = FF_INFMT_FLAG_INIT_CLEANUP,
.read_probe = mxf_probe,
.read_header = mxf_read_header,
.read_packet = mxf_read_packet,