diff options
author | Jingning Han <jingning@google.com> | 2015-08-05 19:00:31 -0700 |
---|---|---|
committer | Jingning Han <jingning@google.com> | 2015-08-11 17:05:28 -0700 |
commit | 3ee6db6c8110680c051fe7a4dca97bb27474ca00 (patch) | |
tree | e05e37dfc10ed26a4fdaee5551b13e2d85a7a1b2 /vpx_dsp/variance.h | |
parent | b04dad328c33874ae1eda72c73079519935a3feb (diff) | |
download | libvpx-3ee6db6c8110680c051fe7a4dca97bb27474ca00.tar.gz |
Fork VP9 and VP10 codebase
This commit folks the VP9 and VP10 codebase and makes libvpx
support VP8, VP9, and VP10.
Change-Id: I81782e0b809acb3c9844bee8c8ec8f4d5e8fa356
Diffstat (limited to 'vpx_dsp/variance.h')
-rw-r--r-- | vpx_dsp/variance.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vpx_dsp/variance.h b/vpx_dsp/variance.h index c18d9b48f..cd0fd9878 100644 --- a/vpx_dsp/variance.h +++ b/vpx_dsp/variance.h @@ -74,7 +74,7 @@ typedef struct variance_vtable { } vp8_variance_fn_ptr_t; #endif // CONFIG_VP8 -#if CONFIG_VP9 +#if CONFIG_VP9 || CONFIG_VP10 typedef struct vp9_variance_vtable { vpx_sad_fn_t sdf; vpx_sad_avg_fn_t sdaf; @@ -85,7 +85,7 @@ typedef struct vp9_variance_vtable { vpx_sad_multi_fn_t sdx8f; vpx_sad_multi_d_fn_t sdx4df; } vp9_variance_fn_ptr_t; -#endif // CONFIG_VP9 +#endif // CONFIG_VP9 || CONFIG_VP10 #ifdef __cplusplus } // extern "C" |