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/mpeg12dec.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/mpeg12dec.c')
-rw-r--r-- | libavcodec/mpeg12dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12dec.c b/libavcodec/mpeg12dec.c index 1accd07e9e..677360f954 100644 --- a/libavcodec/mpeg12dec.c +++ b/libavcodec/mpeg12dec.c @@ -1168,7 +1168,7 @@ static enum AVPixelFormat mpeg_get_pixelformat(AVCodecContext *avctx) else pix_fmts = mpeg12_pixfmt_list_444; - return ff_thread_get_format(avctx, pix_fmts); + return ff_get_format(avctx, pix_fmts); } /* Call this function when we know all parameters. |