diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-01-24 20:36:55 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-01-28 11:00:01 +0100 |
commit | 341d0419e1291d5af524405d21d564aaf23dd409 (patch) | |
tree | 7b8368108f744a56be591f0443e08bcd6a55b40e /libavcodec/texturedsp.c | |
parent | 4f58372c10dfc5d8c4ae46738b5a1c79633ee5ff (diff) | |
download | ffmpeg-341d0419e1291d5af524405d21d564aaf23dd409.tar.gz |
avcodec/texturedsp: Factor common code out
Namely calling avctx->execute2(avctx,...).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/texturedsp.c')
-rw-r--r-- | libavcodec/texturedsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/texturedsp.c b/libavcodec/texturedsp.c index b8938213ef..5fb79937da 100644 --- a/libavcodec/texturedsp.c +++ b/libavcodec/texturedsp.c @@ -653,6 +653,6 @@ av_cold void ff_texturedsp_init(TextureDSPContext *c) c->dxn3dc_block = dxn3dc_block; } -#define TEXTUREDSP_FUNC_NAME ff_texturedsp_decompress_thread +#define TEXTUREDSP_FUNC_NAME ff_texturedsp_exec_decompress_threads #define TEXTUREDSP_TEX_FUNC(a, b, c) tex_funct(a, b, c) #include "texturedsp_template.c" |