]> granicus.if.org Git - libvpx/commitdiff
VP9_COMMON: remove unused temp_scale_frame
authorJames Zern <jzern@google.com>
Mon, 22 Jul 2013 20:42:11 +0000 (13:42 -0700)
committerJames Zern <jzern@google.com>
Mon, 22 Jul 2013 20:42:11 +0000 (13:42 -0700)
Change-Id: I696a0dca1d02d365e283029d1d077710bd5680e0

vp9/common/vp9_alloccommon.c
vp9/common/vp9_onyxc_int.h

index 0a4f921c2bf22bbd1a5fecdb9683c9db3a81f22a..554a31730dadb2814a32dfdc81426f6f811a137f 100644 (file)
@@ -53,7 +53,6 @@ void vp9_free_frame_buffers(VP9_COMMON *oci) {
   for (i = 0; i < NUM_YV12_BUFFERS; i++)
     vp9_free_frame_buffer(&oci->yv12_fb[i]);
 
-  vp9_free_frame_buffer(&oci->temp_scale_frame);
   vp9_free_frame_buffer(&oci->post_proc_buffer);
 
   vpx_free(oci->mip);
@@ -121,10 +120,6 @@ int vp9_alloc_frame_buffers(VP9_COMMON *oci, int width, int height) {
     oci->fb_idx_ref_cnt[i] = 1;
   }
 
-  if (vp9_alloc_frame_buffer(&oci->temp_scale_frame, width, 16, ss_x, ss_y,
-                             VP9BORDERINPIXELS) < 0)
-    goto fail;
-
   if (vp9_alloc_frame_buffer(&oci->post_proc_buffer, width, height, ss_x, ss_y,
                              VP9BORDERINPIXELS) < 0)
     goto fail;
index 2efdf8fa3b5a4b27410c96f85e42f9266e7bc3bb..8b76ac71104e2d27273116e3d168c39bbdaedbd5 100644 (file)
@@ -130,10 +130,7 @@ typedef struct VP9Common {
   struct scale_factors active_ref_scale[ALLOWED_REFS_PER_FRAME];
   int new_fb_idx;
 
-
   YV12_BUFFER_CONFIG post_proc_buffer;
-  YV12_BUFFER_CONFIG temp_scale_frame;
-
 
   FRAME_TYPE last_frame_type;  /* Save last frame's frame type for motion search. */
   FRAME_TYPE frame_type;