mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-22 23:10:00 +01:00
avformat/mux: Rename FF_FMT_ALLOW_FLUSH->FF_OFMT_FLAG_ALLOW_FLUSH
It better reflects that this is a muxer-only flag. Also document the flag. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -8241,7 +8241,7 @@ const FFOutputFormat ff_mov_muxer = {
|
||||
},
|
||||
.check_bitstream = mov_check_bitstream,
|
||||
.p.priv_class = &mov_isobmff_muxer_class,
|
||||
.flags_internal = FF_FMT_ALLOW_FLUSH,
|
||||
.flags_internal = FF_OFMT_FLAG_ALLOW_FLUSH,
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_TGP_MUXER
|
||||
@@ -8265,7 +8265,7 @@ const FFOutputFormat ff_tgp_muxer = {
|
||||
.p.codec_tag = codec_3gp_tags_list,
|
||||
.check_bitstream = mov_check_bitstream,
|
||||
.p.priv_class = &mov_isobmff_muxer_class,
|
||||
.flags_internal = FF_FMT_ALLOW_FLUSH,
|
||||
.flags_internal = FF_OFMT_FLAG_ALLOW_FLUSH,
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_MP4_MUXER
|
||||
@@ -8291,7 +8291,7 @@ const FFOutputFormat ff_mp4_muxer = {
|
||||
.p.codec_tag = mp4_codec_tags_list,
|
||||
.check_bitstream = mov_check_bitstream,
|
||||
.p.priv_class = &mov_isobmff_muxer_class,
|
||||
.flags_internal = FF_FMT_ALLOW_FLUSH,
|
||||
.flags_internal = FF_OFMT_FLAG_ALLOW_FLUSH,
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_PSP_MUXER
|
||||
@@ -8316,7 +8316,7 @@ const FFOutputFormat ff_psp_muxer = {
|
||||
.p.codec_tag = mp4_codec_tags_list,
|
||||
.check_bitstream = mov_check_bitstream,
|
||||
.p.priv_class = &mov_isobmff_muxer_class,
|
||||
.flags_internal = FF_FMT_ALLOW_FLUSH,
|
||||
.flags_internal = FF_OFMT_FLAG_ALLOW_FLUSH,
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_TG2_MUXER
|
||||
@@ -8340,7 +8340,7 @@ const FFOutputFormat ff_tg2_muxer = {
|
||||
.p.codec_tag = codec_3gp_tags_list,
|
||||
.check_bitstream = mov_check_bitstream,
|
||||
.p.priv_class = &mov_isobmff_muxer_class,
|
||||
.flags_internal = FF_FMT_ALLOW_FLUSH,
|
||||
.flags_internal = FF_OFMT_FLAG_ALLOW_FLUSH,
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_IPOD_MUXER
|
||||
@@ -8365,7 +8365,7 @@ const FFOutputFormat ff_ipod_muxer = {
|
||||
.p.codec_tag = (const AVCodecTag* const []){ codec_ipod_tags, 0 },
|
||||
.check_bitstream = mov_check_bitstream,
|
||||
.p.priv_class = &mov_isobmff_muxer_class,
|
||||
.flags_internal = FF_FMT_ALLOW_FLUSH,
|
||||
.flags_internal = FF_OFMT_FLAG_ALLOW_FLUSH,
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_ISMV_MUXER
|
||||
@@ -8391,7 +8391,7 @@ const FFOutputFormat ff_ismv_muxer = {
|
||||
codec_mp4_tags, codec_ism_tags, 0 },
|
||||
.check_bitstream = mov_check_bitstream,
|
||||
.p.priv_class = &mov_isobmff_muxer_class,
|
||||
.flags_internal = FF_FMT_ALLOW_FLUSH,
|
||||
.flags_internal = FF_OFMT_FLAG_ALLOW_FLUSH,
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_F4V_MUXER
|
||||
@@ -8416,7 +8416,7 @@ const FFOutputFormat ff_f4v_muxer = {
|
||||
.p.codec_tag = (const AVCodecTag* const []){ codec_f4v_tags, 0 },
|
||||
.check_bitstream = mov_check_bitstream,
|
||||
.p.priv_class = &mov_isobmff_muxer_class,
|
||||
.flags_internal = FF_FMT_ALLOW_FLUSH,
|
||||
.flags_internal = FF_OFMT_FLAG_ALLOW_FLUSH,
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_AVIF_MUXER
|
||||
@@ -8439,6 +8439,6 @@ const FFOutputFormat ff_avif_muxer = {
|
||||
#endif
|
||||
.p.codec_tag = codec_avif_tags_list,
|
||||
.p.priv_class = &mov_avif_muxer_class,
|
||||
.flags_internal = FF_FMT_ALLOW_FLUSH,
|
||||
.flags_internal = FF_OFMT_FLAG_ALLOW_FLUSH,
|
||||
};
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user