summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_onyx_if.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2013-04-11 15:17:03 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2013-04-11 15:17:03 -0700
commit44dc18064e13cc2362dd37b9672c0f34f28ccd00 (patch)
tree853d5be05d7203db5ec2de268395532eb66f91e7 /vp9/encoder/vp9_onyx_if.c
parent69902c6bf0a1744265cc8937609f7e9eef0b8d95 (diff)
parent2e2b8a53cc481a02a07584e1c13c994374b0990e (diff)
downloadlibvpx-44dc18064e13cc2362dd37b9672c0f34f28ccd00.tar
libvpx-44dc18064e13cc2362dd37b9672c0f34f28ccd00.tar.gz
libvpx-44dc18064e13cc2362dd37b9672c0f34f28ccd00.tar.bz2
libvpx-44dc18064e13cc2362dd37b9672c0f34f28ccd00.zip
Merge "Remove "tplist" from VP9_COMP." into experimental
Diffstat (limited to 'vp9/encoder/vp9_onyx_if.c')
-rw-r--r--vp9/encoder/vp9_onyx_if.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/vp9/encoder/vp9_onyx_if.c b/vp9/encoder/vp9_onyx_if.c
index 0102e6d7c..21413408f 100644
--- a/vp9/encoder/vp9_onyx_if.c
+++ b/vp9/encoder/vp9_onyx_if.c
@@ -300,9 +300,6 @@ static void setup_features(VP9_COMP *cpi) {
static void dealloc_compressor_data(VP9_COMP *cpi) {
- vpx_free(cpi->tplist);
- cpi->tplist = NULL;
-
// Delete last frame MV storage buffers
vpx_free(cpi->lfmv);
cpi->lfmv = 0;
@@ -934,11 +931,6 @@ void vp9_alloc_compressor_data(VP9_COMP *cpi) {
!cpi->twopass.this_frame_stats)
vpx_internal_error(&cpi->common.error, VPX_CODEC_MEM_ERROR,
"Failed to allocate firstpass stats");
-
- vpx_free(cpi->tplist);
-
- CHECK_MEM_ERROR(cpi->tplist,
- vpx_malloc(sizeof(TOKENLIST) * (cpi->common.mb_rows)));
}