diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-04 12:42:12 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-10-07 22:34:43 +0200 |
commit | 05f557b2591094f1885e7f91660dd8c937cbe785 (patch) | |
tree | dfe49827d9889f4f58521b4c0f8817cc22b1463a /libavcodec | |
parent | e1ba00ac8f755f37ebc8448d3dbea906d7b79da2 (diff) | |
download | ffmpeg-05f557b2591094f1885e7f91660dd8c937cbe785.tar.gz |
avcodec/wavpack: Use RefStruct API for DSD context
It avoids allocations and the corresponding error checks.
It also avoids indirections and casts.
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/wavpack.c | 25 |
1 files changed, 8 insertions, 17 deletions
diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c index 966f4b83db..97705c8854 100644 --- a/libavcodec/wavpack.c +++ b/libavcodec/wavpack.c @@ -28,6 +28,7 @@ #include "bytestream.h" #include "codec_internal.h" #include "get_bits.h" +#include "refstruct.h" #include "thread.h" #include "threadframe.h" #include "unary.h" @@ -110,8 +111,7 @@ typedef struct WavpackContext { ThreadFrame curr_frame, prev_frame; Modulation modulation; - AVBufferRef *dsd_ref; - DSDContext *dsdctx; + DSDContext *dsdctx; ///< RefStruct reference int dsd_channels; } WavpackContext; @@ -990,9 +990,8 @@ static int wv_dsd_reset(WavpackContext *s, int channels) { int i; - s->dsdctx = NULL; s->dsd_channels = 0; - av_buffer_unref(&s->dsd_ref); + ff_refstruct_unref(&s->dsdctx); if (!channels) return 0; @@ -1000,10 +999,9 @@ static int wv_dsd_reset(WavpackContext *s, int channels) if (channels > INT_MAX / sizeof(*s->dsdctx)) return AVERROR(EINVAL); - s->dsd_ref = av_buffer_allocz(channels * sizeof(*s->dsdctx)); - if (!s->dsd_ref) + s->dsdctx = ff_refstruct_allocz(channels * sizeof(*s->dsdctx)); + if (!s->dsdctx) return AVERROR(ENOMEM); - s->dsdctx = (DSDContext*)s->dsd_ref->data; s->dsd_channels = channels; for (i = 0; i < channels; i++) @@ -1028,15 +1026,8 @@ static int update_thread_context(AVCodecContext *dst, const AVCodecContext *src) return ret; } - fdst->dsdctx = NULL; - fdst->dsd_channels = 0; - ret = av_buffer_replace(&fdst->dsd_ref, fsrc->dsd_ref); - if (ret < 0) - return ret; - if (fsrc->dsd_ref) { - fdst->dsdctx = (DSDContext*)fdst->dsd_ref->data; - fdst->dsd_channels = fsrc->dsd_channels; - } + ff_refstruct_replace(&fdst->dsdctx, fsrc->dsdctx); + fdst->dsd_channels = fsrc->dsd_channels; return 0; } @@ -1076,7 +1067,7 @@ static av_cold int wavpack_decode_end(AVCodecContext *avctx) ff_thread_release_ext_buffer(avctx, &s->prev_frame); av_frame_free(&s->prev_frame.f); - av_buffer_unref(&s->dsd_ref); + ff_refstruct_unref(&s->dsdctx); return 0; } |