diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-15 18:08:11 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-26 06:36:43 +0100 |
commit | 4a4dcde339b8e50f5cf77a6048bf665a2be27133 (patch) | |
tree | 379389db0376b874cca571dc5b9b272b26499387 /libavformat/mov.c | |
parent | 27af88fb7fe6ecbcda60f46f8f22f2ca324eb7ec (diff) | |
download | ffmpeg-4a4dcde339b8e50f5cf77a6048bf665a2be27133.tar.gz |
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>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 9f2ea97a5b..4e265cf662 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -10308,7 +10308,7 @@ const FFInputFormat ff_mov_demuxer = { .p.extensions = "mov,mp4,m4a,3gp,3g2,mj2,psp,m4b,ism,ismv,isma,f4v,avif,heic,heif", .p.flags = AVFMT_NO_BYTE_SEEK | AVFMT_SEEK_TO_PTS | AVFMT_SHOW_IDS, .priv_data_size = sizeof(MOVContext), - .flags_internal = FF_FMT_INIT_CLEANUP, + .flags_internal = FF_INFMT_FLAG_INIT_CLEANUP, .read_probe = mov_probe, .read_header = mov_read_header, .read_packet = mov_read_packet, |