Merge remote branch 'internal/upstream-experimental' into HEAD
authorJohn Koleszar <jkoleszar@google.com>
Thu, 11 Aug 2011 17:01:45 +0000 (13:01 -0400)
committerJohn Koleszar <jkoleszar@google.com>
Thu, 11 Aug 2011 17:01:45 +0000 (13:01 -0400)
Conflicts:
vp8/decoder/detokenize.c
vp8/decoder/onyxd_if.c
vp8/vp8_common.mk

Change-Id: Ifca1108186a8bc715da86a44021ee2fa5550b5b8

1  2 
configure
vp8/common/onyxc_int.h
vp8/decoder/detokenize.c
vp8/decoder/onyxd_if.c
vp8/decoder/onyxd_int.h
vp8/encoder/encodeframe.c
vp8/encoder/onyx_if.c
vp8/encoder/onyx_int.h
vp8/encoder/rdopt.c
vp8/vp8_common.mk
vpxenc.c

diff --cc configure
Simple merge
Simple merge
Simple merge
@@@ -328,26 -288,10 +328,26 @@@ static int swap_frame_buffers (VP8_COMM
      return err;
  }
  
- int vp8dx_receive_compressed_data(VP8D_PTR ptr, unsigned long size, const unsigned char *source, INT64 time_stamp)
 +/*
 +static void vp8_print_yuv_rec_mb(VP8_COMMON *cm, int mb_row, int mb_col)
 +{
 +  YV12_BUFFER_CONFIG *s = cm->frame_to_show;
 +  unsigned char *src = s->y_buffer;
 +  int i, j;
 +
 +  printf("After loop filter\n");
 +  for (i=0;i<16;i++) {
 +    for (j=0;j<16;j++)
 +      printf("%3d ", src[(mb_row*16+i)*s->y_stride + mb_col*16+j]);
 +    printf("\n");
 +  }
 +}
 +*/
 +
+ int vp8dx_receive_compressed_data(VP8D_PTR ptr, unsigned long size, const unsigned char *source, int64_t time_stamp)
  {
  #if HAVE_ARMV7
-     INT64 dx_store_reg[8];
+     int64_t dx_store_reg[8];
  #endif
      VP8D_COMP *pbi = (VP8D_COMP *) ptr;
      VP8_COMMON *cm = &pbi->common;
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
@@@ -101,14 -102,7 +102,12 @@@ VP8_COMMON_SRCS-$(HAVE_SSE2) += common/
  endif
  
  # common (c)
- VP8_COMMON_SRCS-$(ARCH_ARM)  += common/asm_com_offsets.c
 +ifeq ($(CONFIG_CSM),yes)
 +VP8_COMMON_SRCS-yes += common/maskingmv.c
 +VP8_COMMON_SRCS-$(HAVE_SSE3) += common/x86/mask_sse3.asm
 +endif
 +
  VP8_COMMON_SRCS-$(ARCH_ARM)  += common/arm/arm_systemdependent.c
  VP8_COMMON_SRCS-$(ARCH_ARM)  += common/arm/bilinearfilter_arm.c
  VP8_COMMON_SRCS-$(ARCH_ARM)  += common/arm/bilinearfilter_arm.h
  VP8_COMMON_SRCS-$(ARCH_ARM)  += common/arm/filter_arm.c
diff --cc vpxenc.c
Simple merge