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/options.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/options.c')
-rw-r--r-- | libavformat/options.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/options.c b/libavformat/options.c index b314cd4a35..76b91169a5 100644 --- a/libavformat/options.c +++ b/libavformat/options.c @@ -250,7 +250,6 @@ const AVClass *av_stream_get_class(void) AVStream *avformat_new_stream(AVFormatContext *s, const AVCodec *c) { - FFFormatContext *const si = ffformatcontext(s); FFStream *sti; AVStream *st; AVStream **streams; @@ -322,10 +321,6 @@ AVStream *avformat_new_stream(AVFormatContext *s, const AVCodec *c) sti->transferred_mux_tb = (AVRational) { 0, 1 };; #endif -#if FF_API_AVSTREAM_SIDE_DATA - sti->inject_global_side_data = si->inject_global_side_data; -#endif - sti->need_context_update = 1; s->streams[s->nb_streams++] = st; |