Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2013-11-17 00:22:06 +0400
committerClément Bœsch <u@pkh.me>2013-11-17 01:34:23 +0400
commitc20a7ce62d02d29e5222595c76b0a2563c9348b4 (patch)
treeb2062a21888826b4c5246e177d4ceda38c136b10 /libavcodec/vp9.c
parent7e704b1e109b3c48b3175bf0eac7bb5bf0c66e75 (diff)
avcodec/vp9: remove some reset-to-zero from vp9_decode_free().
Those should not be necessary. Original change by one of these developers: Anton Khirnov <anton@khirnov.net> Diego Biurrun <diego@biurrun.de> Luca Barbato <lu_zero@gentoo.org> Martin Storsjö <martin@martin.st> See 97962b2 / 72ca830
Diffstat (limited to 'libavcodec/vp9.c')
-rw-r--r--libavcodec/vp9.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c
index e2cb388fc9..745bbd6218 100644
--- a/libavcodec/vp9.c
+++ b/libavcodec/vp9.c
@@ -3560,17 +3560,7 @@ static av_cold int vp9_decode_free(AVCodecContext *ctx)
av_frame_free(&s->fb[i]);
}
av_freep(&s->above_partition_ctx);
- s->above_skip_ctx = s->above_txfm_ctx = s->above_mode_ctx = NULL;
- s->above_y_nnz_ctx = s->above_uv_nnz_ctx[0] = s->above_uv_nnz_ctx[1] = NULL;
- s->intra_pred_data[0] = s->intra_pred_data[1] = s->intra_pred_data[2] = NULL;
- s->above_segpred_ctx = s->above_intra_ctx = s->above_comp_ctx = NULL;
- s->above_ref_ctx = s->above_filter_ctx = NULL;
- s->above_mv_ctx = NULL;
- s->segmentation_map = NULL;
- s->mv[0] = s->mv[1] = NULL;
- s->lflvl = NULL;
av_freep(&s->c_b);
- s->c_b_size = 0;
return 0;
}