Upgrade to libvpx commit e479379a.
This version includes a critical bug fix for temporal layers. BUG= TEST= Review URL: https://webrtc-codereview.appspot.com/350012 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1454 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
		| @@ -7,9 +7,9 @@ vp8_block_zbin_extra EQU 32 | ||||
| vp8_block_zrun_zbin_boost EQU 24 | ||||
| vp8_block_quant_shift EQU 16 | ||||
| vp8_blockd_qcoeff EQU 0 | ||||
| vp8_blockd_dequant EQU 16 | ||||
| vp8_blockd_dequant EQU 12 | ||||
| vp8_blockd_dqcoeff EQU 4 | ||||
| vp8_blockd_eob EQU 44 | ||||
| vp8_blockd_eob EQU 40 | ||||
| vp8_block_base_src EQU 36 | ||||
| vp8_block_src EQU 40 | ||||
| vp8_block_src_diff EQU 0 | ||||
| @@ -21,6 +21,8 @@ vp8_writer_value EQU 8 | ||||
| vp8_writer_count EQU 12 | ||||
| vp8_writer_pos EQU 16 | ||||
| vp8_writer_buffer EQU 20 | ||||
| vp8_writer_buffer_end EQU 24 | ||||
| vp8_writer_error EQU 28 | ||||
| tokenextra_token EQU 6 | ||||
| tokenextra_extra EQU 4 | ||||
| tokenextra_context_tree EQU 0 | ||||
| @@ -33,10 +35,11 @@ vp8_extra_bit_struct_tree EQU 0 | ||||
| vp8_extra_bit_struct_prob EQU 4 | ||||
| vp8_extra_bit_struct_len EQU 8 | ||||
| vp8_extra_bit_struct_base_val EQU 12 | ||||
| vp8_comp_tplist EQU 181336 | ||||
| vp8_comp_common EQU 105408 | ||||
| vp8_comp_bc2 EQU 128480 | ||||
| vp8_comp_tplist EQU 170332 | ||||
| vp8_comp_common EQU 104544 | ||||
| vp8_comp_bc EQU 116896 | ||||
| vp8_writer_sz EQU 40 | ||||
| tokenlist_start EQU 0 | ||||
| tokenlist_stop EQU 4 | ||||
| TOKENLIST_SZ EQU 8 | ||||
| vp8_common_mb_rows EQU 12984 | ||||
| vp8_common_mb_rows EQU 2296 | ||||
|   | ||||
| @@ -7,8 +7,6 @@ ARCH_PPC64 equ 0 | ||||
| HAVE_ARMV5TE equ 0 | ||||
| HAVE_ARMV6 equ 0 | ||||
| HAVE_ARMV7 equ 0 | ||||
| HAVE_IWMMXT equ 0 | ||||
| HAVE_IWMMXT2 equ 0 | ||||
| HAVE_MIPS32 equ 0 | ||||
| HAVE_MMX equ 1 | ||||
| HAVE_SSE equ 1 | ||||
| @@ -63,3 +61,5 @@ CONFIG_STATIC equ 1 | ||||
| CONFIG_SMALL equ 0 | ||||
| CONFIG_POSTPROC_VISUALIZER equ 0 | ||||
| CONFIG_OS_SUPPORT equ 1 | ||||
| CONFIG_UNIT_TESTS equ 0 | ||||
| CONFIG_MULTI_RES_ENCODING equ 0 | ||||
|   | ||||
| @@ -1,2 +1,9 @@ | ||||
| static const char* const cfg = "--target=x86-linux-gcc --enable-pic --enable-error-concealment --disable-install-docs --disable-install-srcs --disable-examples --disable-internal-stats"; | ||||
| /* Copyright (c) 2011 The WebM project authors. All Rights Reserved. */ | ||||
| /*  */ | ||||
| /* Use of this source code is governed by a BSD-style license */ | ||||
| /* that can be found in the LICENSE file in the root of the source */ | ||||
| /* tree. An additional intellectual property rights grant can be found */ | ||||
| /* in the file PATENTS.  All contributing project authors may */ | ||||
| /* be found in the AUTHORS file in the root of the source tree. */ | ||||
| static const char* const cfg = "--target=x86-linux-gcc --enable-pic --enable-error-concealment --disable-install-docs --disable-install-srcs --disable-examples --disable-internal-stats --disable-install-libs --disable-install-bins --enable-realtime-only"; | ||||
| const char *vpx_codec_build_config(void) {return cfg;} | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| /* Copyright (c) 2011 The WebM project authors. All Rights Reserved. */ | ||||
| /*  */ | ||||
| /* Use of this source code is governed by a BSD-style license */ | ||||
| /* that can be found in the LICENSE file in the root of the source */ | ||||
| /* tree. An additional intellectual property rights grant can be found */ | ||||
| /* in the file PATENTS.  All contributing project authors may */ | ||||
| /* be found in the AUTHORS file in the root of the source tree. */ | ||||
| /* This file automatically generated by configure. Do not edit! */ | ||||
| #ifndef VPX_CONFIG_H | ||||
| #define VPX_CONFIG_H | ||||
| @@ -11,8 +18,6 @@ | ||||
| #define HAVE_ARMV5TE 0 | ||||
| #define HAVE_ARMV6 0 | ||||
| #define HAVE_ARMV7 0 | ||||
| #define HAVE_IWMMXT 0 | ||||
| #define HAVE_IWMMXT2 0 | ||||
| #define HAVE_MIPS32 0 | ||||
| #define HAVE_MMX 1 | ||||
| #define HAVE_SSE 1 | ||||
| @@ -67,4 +72,6 @@ | ||||
| #define CONFIG_SMALL 0 | ||||
| #define CONFIG_POSTPROC_VISUALIZER 0 | ||||
| #define CONFIG_OS_SUPPORT 1 | ||||
| #define CONFIG_UNIT_TESTS 0 | ||||
| #define CONFIG_MULTI_RES_ENCODING 0 | ||||
| #endif /* VPX_CONFIG_H */ | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
| #define VERSION_MAJOR  0 | ||||
| #define VERSION_MINOR  9 | ||||
| #define VERSION_PATCH  7 | ||||
| #define VERSION_EXTRA  "" | ||||
| #define VERSION_EXTRA  "p1-268-ge479379" | ||||
| #define VERSION_PACKED ((VERSION_MAJOR<<16)|(VERSION_MINOR<<8)|(VERSION_PATCH)) | ||||
| #define VERSION_STRING_NOSP "v0.9.7" | ||||
| #define VERSION_STRING      " v0.9.7" | ||||
| #define VERSION_STRING_NOSP "v0.9.7-p1-268-ge479379" | ||||
| #define VERSION_STRING      " v0.9.7-p1-268-ge479379" | ||||
|   | ||||
| @@ -7,9 +7,9 @@ vp8_block_zbin_extra EQU 64 | ||||
| vp8_block_zrun_zbin_boost EQU 48 | ||||
| vp8_block_quant_shift EQU 32 | ||||
| vp8_blockd_qcoeff EQU 0 | ||||
| vp8_blockd_dequant EQU 32 | ||||
| vp8_blockd_dequant EQU 24 | ||||
| vp8_blockd_dqcoeff EQU 8 | ||||
| vp8_blockd_eob EQU 72 | ||||
| vp8_blockd_eob EQU 64 | ||||
| vp8_block_base_src EQU 72 | ||||
| vp8_block_src EQU 80 | ||||
| vp8_block_src_diff EQU 0 | ||||
| @@ -21,6 +21,8 @@ vp8_writer_value EQU 8 | ||||
| vp8_writer_count EQU 12 | ||||
| vp8_writer_pos EQU 16 | ||||
| vp8_writer_buffer EQU 24 | ||||
| vp8_writer_buffer_end EQU 32 | ||||
| vp8_writer_error EQU 40 | ||||
| tokenextra_token EQU 10 | ||||
| tokenextra_extra EQU 8 | ||||
| tokenextra_context_tree EQU 0 | ||||
| @@ -33,10 +35,11 @@ vp8_extra_bit_struct_tree EQU 0 | ||||
| vp8_extra_bit_struct_prob EQU 8 | ||||
| vp8_extra_bit_struct_len EQU 16 | ||||
| vp8_extra_bit_struct_base_val EQU 20 | ||||
| vp8_comp_tplist EQU 183912 | ||||
| vp8_comp_common EQU 107360 | ||||
| vp8_comp_bc2 EQU 130832 | ||||
| vp8_comp_tplist EQU 173096 | ||||
| vp8_comp_common EQU 106496 | ||||
| vp8_comp_bc EQU 119232 | ||||
| vp8_writer_sz EQU 64 | ||||
| tokenlist_start EQU 0 | ||||
| tokenlist_stop EQU 8 | ||||
| TOKENLIST_SZ EQU 16 | ||||
| vp8_common_mb_rows EQU 13156 | ||||
| vp8_common_mb_rows EQU 2488 | ||||
|   | ||||
| @@ -7,8 +7,6 @@ ARCH_PPC64 equ 0 | ||||
| HAVE_ARMV5TE equ 0 | ||||
| HAVE_ARMV6 equ 0 | ||||
| HAVE_ARMV7 equ 0 | ||||
| HAVE_IWMMXT equ 0 | ||||
| HAVE_IWMMXT2 equ 0 | ||||
| HAVE_MIPS32 equ 0 | ||||
| HAVE_MMX equ 1 | ||||
| HAVE_SSE equ 1 | ||||
| @@ -63,3 +61,5 @@ CONFIG_STATIC equ 1 | ||||
| CONFIG_SMALL equ 0 | ||||
| CONFIG_POSTPROC_VISUALIZER equ 0 | ||||
| CONFIG_OS_SUPPORT equ 1 | ||||
| CONFIG_UNIT_TESTS equ 0 | ||||
| CONFIG_MULTI_RES_ENCODING equ 0 | ||||
|   | ||||
| @@ -1,2 +1,9 @@ | ||||
| static const char* const cfg = "--target=x86_64-linux-gcc --enable-pic --enable-error-concealment --disable-install-docs --disable-install-srcs --disable-examples --disable-internal-stats"; | ||||
| /* Copyright (c) 2011 The WebM project authors. All Rights Reserved. */ | ||||
| /*  */ | ||||
| /* Use of this source code is governed by a BSD-style license */ | ||||
| /* that can be found in the LICENSE file in the root of the source */ | ||||
| /* tree. An additional intellectual property rights grant can be found */ | ||||
| /* in the file PATENTS.  All contributing project authors may */ | ||||
| /* be found in the AUTHORS file in the root of the source tree. */ | ||||
| static const char* const cfg = "--target=x86_64-linux-gcc --enable-pic --enable-error-concealment --disable-install-docs --disable-install-srcs --disable-examples --disable-internal-stats --disable-install-libs --disable-install-bins --enable-realtime-only"; | ||||
| const char *vpx_codec_build_config(void) {return cfg;} | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| /* Copyright (c) 2011 The WebM project authors. All Rights Reserved. */ | ||||
| /*  */ | ||||
| /* Use of this source code is governed by a BSD-style license */ | ||||
| /* that can be found in the LICENSE file in the root of the source */ | ||||
| /* tree. An additional intellectual property rights grant can be found */ | ||||
| /* in the file PATENTS.  All contributing project authors may */ | ||||
| /* be found in the AUTHORS file in the root of the source tree. */ | ||||
| /* This file automatically generated by configure. Do not edit! */ | ||||
| #ifndef VPX_CONFIG_H | ||||
| #define VPX_CONFIG_H | ||||
| @@ -11,8 +18,6 @@ | ||||
| #define HAVE_ARMV5TE 0 | ||||
| #define HAVE_ARMV6 0 | ||||
| #define HAVE_ARMV7 0 | ||||
| #define HAVE_IWMMXT 0 | ||||
| #define HAVE_IWMMXT2 0 | ||||
| #define HAVE_MIPS32 0 | ||||
| #define HAVE_MMX 1 | ||||
| #define HAVE_SSE 1 | ||||
| @@ -67,4 +72,6 @@ | ||||
| #define CONFIG_SMALL 0 | ||||
| #define CONFIG_POSTPROC_VISUALIZER 0 | ||||
| #define CONFIG_OS_SUPPORT 1 | ||||
| #define CONFIG_UNIT_TESTS 0 | ||||
| #define CONFIG_MULTI_RES_ENCODING 0 | ||||
| #endif /* VPX_CONFIG_H */ | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
| #define VERSION_MAJOR  0 | ||||
| #define VERSION_MINOR  9 | ||||
| #define VERSION_PATCH  7 | ||||
| #define VERSION_EXTRA  "" | ||||
| #define VERSION_EXTRA  "p1-268-ge479379" | ||||
| #define VERSION_PACKED ((VERSION_MAJOR<<16)|(VERSION_MINOR<<8)|(VERSION_PATCH)) | ||||
| #define VERSION_STRING_NOSP "v0.9.7" | ||||
| #define VERSION_STRING      " v0.9.7" | ||||
| #define VERSION_STRING_NOSP "v0.9.7-p1-268-ge479379" | ||||
| #define VERSION_STRING      " v0.9.7-p1-268-ge479379" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 stefan@webrtc.org
					stefan@webrtc.org