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"
|
||||
|
||||
@@ -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 181220
|
||||
vp8_comp_common EQU 105408
|
||||
vp8_comp_bc2 EQU 128400
|
||||
vp8_comp_tplist EQU 170216
|
||||
vp8_comp_common EQU 104544
|
||||
vp8_comp_bc EQU 116816
|
||||
vp8_writer_sz EQU 40
|
||||
tokenlist_start EQU 0
|
||||
tokenlist_stop EQU 4
|
||||
TOKENLIST_SZ EQU 8
|
||||
vp8_common_mb_rows EQU 12904
|
||||
vp8_common_mb_rows EQU 2216
|
||||
|
||||
@@ -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-darwin9-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-darwin9-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 183768
|
||||
vp8_comp_common EQU 107360
|
||||
vp8_comp_bc2 EQU 130768
|
||||
vp8_comp_tplist EQU 172952
|
||||
vp8_comp_common EQU 106496
|
||||
vp8_comp_bc EQU 119168
|
||||
vp8_writer_sz EQU 64
|
||||
tokenlist_start EQU 0
|
||||
tokenlist_stop EQU 8
|
||||
TOKENLIST_SZ EQU 16
|
||||
vp8_common_mb_rows EQU 13092
|
||||
vp8_common_mb_rows EQU 2424
|
||||
|
||||
@@ -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-darwin10-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-darwin10-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"
|
||||
|
||||
@@ -1,14 +1,3 @@
|
||||
detok_scan EQU 0
|
||||
detok_ptr_block2leftabove EQU 4
|
||||
detok_coef_tree_ptr EQU 8
|
||||
detok_norm_ptr EQU 12
|
||||
detok_ptr_coef_bands_x EQU 16
|
||||
detok_A EQU 20
|
||||
detok_L EQU 24
|
||||
detok_qcoeff_start_ptr EQU 28
|
||||
detok_current_bc EQU 32
|
||||
detok_coef_probs EQU 36
|
||||
detok_eob EQU 52
|
||||
bool_decoder_user_buffer_end EQU 0
|
||||
bool_decoder_user_buffer EQU 4
|
||||
bool_decoder_value EQU 8
|
||||
|
||||
@@ -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,11 +35,12 @@ 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 181240
|
||||
vp8_comp_common EQU 105408
|
||||
vp8_comp_bc2 EQU 128400
|
||||
vp8_comp_tplist EQU 170224
|
||||
vp8_comp_common EQU 104544
|
||||
vp8_comp_bc EQU 116800
|
||||
vp8_writer_sz EQU 40
|
||||
tokenlist_start EQU 0
|
||||
tokenlist_stop EQU 4
|
||||
TOKENLIST_SZ EQU 8
|
||||
vp8_common_mb_rows EQU 12888
|
||||
vp8_common_mb_rows EQU 2200
|
||||
END
|
||||
|
||||
@@ -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
|
||||
@@ -54,7 +52,7 @@ CONFIG_VP8_DECODER equ 1
|
||||
CONFIG_VP8 equ 1
|
||||
CONFIG_ENCODERS equ 1
|
||||
CONFIG_DECODERS equ 1
|
||||
CONFIG_STATIC_MSVCRT equ 0
|
||||
CONFIG_STATIC_MSVCRT equ 1
|
||||
CONFIG_SPATIAL_RESAMPLING equ 1
|
||||
CONFIG_REALTIME_ONLY equ 1
|
||||
CONFIG_ERROR_CONCEALMENT 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-win32-vs9 --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-win32-vs9 --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 --enable-static-msvcrt";
|
||||
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
|
||||
@@ -58,7 +63,7 @@
|
||||
#define CONFIG_VP8 1
|
||||
#define CONFIG_ENCODERS 1
|
||||
#define CONFIG_DECODERS 1
|
||||
#define CONFIG_STATIC_MSVCRT 0
|
||||
#define CONFIG_STATIC_MSVCRT 1
|
||||
#define CONFIG_SPATIAL_RESAMPLING 1
|
||||
#define CONFIG_REALTIME_ONLY 1
|
||||
#define CONFIG_ERROR_CONCEALMENT 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"
|
||||
|
||||
@@ -1,14 +1,3 @@
|
||||
detok_scan EQU 0
|
||||
detok_ptr_block2leftabove EQU 8
|
||||
detok_coef_tree_ptr EQU 16
|
||||
detok_norm_ptr EQU 24
|
||||
detok_ptr_coef_bands_x EQU 32
|
||||
detok_A EQU 40
|
||||
detok_L EQU 48
|
||||
detok_qcoeff_start_ptr EQU 56
|
||||
detok_current_bc EQU 64
|
||||
detok_coef_probs EQU 72
|
||||
detok_eob EQU 104
|
||||
bool_decoder_user_buffer_end EQU 0
|
||||
bool_decoder_user_buffer EQU 8
|
||||
bool_decoder_value EQU 16
|
||||
|
||||
@@ -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,11 +35,12 @@ 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 183872
|
||||
vp8_comp_common EQU 107360
|
||||
vp8_comp_bc2 EQU 130872
|
||||
vp8_comp_tplist EQU 173000
|
||||
vp8_comp_common EQU 106496
|
||||
vp8_comp_bc EQU 119280
|
||||
vp8_writer_sz EQU 56
|
||||
tokenlist_start EQU 0
|
||||
tokenlist_stop EQU 8
|
||||
TOKENLIST_SZ EQU 16
|
||||
vp8_common_mb_rows EQU 13204
|
||||
vp8_common_mb_rows EQU 2536
|
||||
END
|
||||
|
||||
@@ -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
|
||||
@@ -54,7 +52,7 @@ CONFIG_VP8_DECODER equ 1
|
||||
CONFIG_VP8 equ 1
|
||||
CONFIG_ENCODERS equ 1
|
||||
CONFIG_DECODERS equ 1
|
||||
CONFIG_STATIC_MSVCRT equ 0
|
||||
CONFIG_STATIC_MSVCRT equ 1
|
||||
CONFIG_SPATIAL_RESAMPLING equ 1
|
||||
CONFIG_REALTIME_ONLY equ 1
|
||||
CONFIG_ERROR_CONCEALMENT 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-win64-vs9 --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-win64-vs9 --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 --enable-static-msvcrt";
|
||||
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
|
||||
@@ -58,7 +63,7 @@
|
||||
#define CONFIG_VP8 1
|
||||
#define CONFIG_ENCODERS 1
|
||||
#define CONFIG_DECODERS 1
|
||||
#define CONFIG_STATIC_MSVCRT 0
|
||||
#define CONFIG_STATIC_MSVCRT 1
|
||||
#define CONFIG_SPATIAL_RESAMPLING 1
|
||||
#define CONFIG_REALTIME_ONLY 1
|
||||
#define CONFIG_ERROR_CONCEALMENT 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