diff options
author | James Almer <jamrial@gmail.com> | 2022-03-15 18:15:44 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-03-16 13:00:42 -0300 |
commit | 11c4f4b455dcc39146e0caa09b1f5fc09c58cf06 (patch) | |
tree | 758d4bbf2aa194614b473915e8d1a73390f4815f /fftools/ffmpeg.c | |
parent | 8ddf1795b96d6176b0ddcd4693c28a3da9b2ac50 (diff) | |
download | ffmpeg-11c4f4b455dcc39146e0caa09b1f5fc09c58cf06.tar.gz |
ffmpeg: remove usage of internal deprecation macro
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'fftools/ffmpeg.c')
-rw-r--r-- | fftools/ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 5e4a256aad..7191650e05 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -2881,9 +2881,9 @@ static int init_input_stream(int ist_index, char *error, int error_len) ist->dec_ctx->opaque = ist; ist->dec_ctx->get_format = get_format; #if LIBAVCODEC_VERSION_MAJOR < 60 -FF_DISABLE_DEPRECATION_WARNINGS + AV_NOWARN_DEPRECATED({ ist->dec_ctx->thread_safe_callbacks = 1; -FF_ENABLE_DEPRECATION_WARNINGS + }) #endif if (ist->dec_ctx->codec_id == AV_CODEC_ID_DVB_SUBTITLE && |