diff options
author | James Almer <jamrial@gmail.com> | 2025-02-19 12:47:24 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2025-03-28 14:33:07 -0300 |
commit | ec8e796b42bccf999fdf31c110385e2cc119b7f2 (patch) | |
tree | 628602fe58d7fec9bda484c195635e7817be2fbe /libavformat/demux_utils.c | |
parent | c153238275c28ec1891df696114c152285dc9680 (diff) | |
download | ffmpeg-ec8e796b42bccf999fdf31c110385e2cc119b7f2.tar.gz |
avformat: remove deprecated FF_API_AVSTREAM_SIDE_DATA
Deprecated since 2023-10-06.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/demux_utils.c')
-rw-r--r-- | libavformat/demux_utils.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libavformat/demux_utils.c b/libavformat/demux_utils.c index 9aae521c6c..b632277460 100644 --- a/libavformat/demux_utils.c +++ b/libavformat/demux_utils.c @@ -81,18 +81,6 @@ AVChapter *avpriv_new_chapter(AVFormatContext *s, int64_t id, AVRational time_ba return chapter; } -#if FF_API_AVSTREAM_SIDE_DATA -void av_format_inject_global_side_data(AVFormatContext *s) -{ - FFFormatContext *const si = ffformatcontext(s); - si->inject_global_side_data = 1; - for (unsigned i = 0; i < s->nb_streams; i++) { - AVStream *st = s->streams[i]; - ffstream(st)->inject_global_side_data = 1; - } -} -#endif - int avformat_queue_attached_pictures(AVFormatContext *s) { FormatContextInternal *const fci = ff_fc_internal(s); |