diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-10 14:12:16 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-13 22:04:22 +0200 |
commit | 6434e440039910f12f7c08072b7db3c5e99c3025 (patch) | |
tree | bd29932d353073aa5736815fcc063d31a0dcf84f /libavcodec/vp9.c | |
parent | 0058f6013f5286d5e1b7403dfce0d97069cd8f91 (diff) | |
download | ffmpeg-6434e440039910f12f7c08072b7db3c5e99c3025.tar.gz |
avcodec/thread: Remove ff_thread_get_format define
Unnecessary since FF_API_THREAD_SAFE_CALLBACKS is no more.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/vp9.c')
-rw-r--r-- | libavcodec/vp9.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c index 89f7549ef0..3cc27aa812 100644 --- a/libavcodec/vp9.c +++ b/libavcodec/vp9.c @@ -250,7 +250,7 @@ static int update_size(AVCodecContext *avctx, int w, int h) *fmtp++ = s->pix_fmt; *fmtp = AV_PIX_FMT_NONE; - ret = ff_thread_get_format(avctx, pix_fmts); + ret = ff_get_format(avctx, pix_fmts); if (ret < 0) return ret; |