summaryrefslogtreecommitdiff
path: root/libavcodec/truemotion2.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-09-27 14:31:46 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-11-06 13:57:49 +0100
commit52cd5508cce5ce9af1031df11824ed9354186e3b (patch)
tree9179821b56362c742986f5d4cd4a3561e1cf4f0f /libavcodec/truemotion2.c
parent9eb22ca804c328e52759d93fa8196b58ad76b205 (diff)
avcodec/truemotion2: Remove redundant initializations
The codec's private context has already been zeroed generically. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/truemotion2.c')
-rw-r--r--libavcodec/truemotion2.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libavcodec/truemotion2.c b/libavcodec/truemotion2.c
index 51266e5744..1ae13bbf06 100644
--- a/libavcodec/truemotion2.c
+++ b/libavcodec/truemotion2.c
@@ -950,7 +950,7 @@ static int decode_frame(AVCodecContext *avctx,
static av_cold int decode_init(AVCodecContext *avctx)
{
TM2Context * const l = avctx->priv_data;
- int i, w = avctx->width, h = avctx->height;
+ int w = avctx->width, h = avctx->height;
if ((avctx->width & 3) || (avctx->height & 3)) {
av_log(avctx, AV_LOG_ERROR, "Width and height must be multiple of 4\n");
@@ -969,11 +969,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
l->last = av_malloc_array(w >> 2, 4 * sizeof(*l->last) );
l->clast = av_malloc_array(w >> 2, 4 * sizeof(*l->clast));
- for (i = 0; i < TM2_NUM_STREAMS; i++) {
- l->tokens[i] = NULL;
- l->tok_lens[i] = 0;
- }
-
w += 8;
h += 8;
l->Y1_base = av_calloc(w * h, sizeof(*l->Y1_base));
@@ -986,7 +981,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
l->U2_base = av_calloc(w * h, sizeof(*l->U2_base));
l->V2_base = av_calloc(w * h, sizeof(*l->V1_base));
l->uv_stride = w;
- l->cur = 0;
if (!l->Y1_base || !l->Y2_base || !l->U1_base ||
!l->V1_base || !l->U2_base || !l->V2_base ||
!l->last || !l->clast) {