diff options
Diffstat (limited to 'media/libaom/src/aom_dsp/subtract.c')
-rw-r--r-- | media/libaom/src/aom_dsp/subtract.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/media/libaom/src/aom_dsp/subtract.c b/media/libaom/src/aom_dsp/subtract.c index 2f6da96e5..4f4e35597 100644 --- a/media/libaom/src/aom_dsp/subtract.c +++ b/media/libaom/src/aom_dsp/subtract.c @@ -32,6 +32,7 @@ void aom_subtract_block_c(int rows, int cols, int16_t *diff, } } +#if CONFIG_AV1_HIGHBITDEPTH void aom_highbd_subtract_block_c(int rows, int cols, int16_t *diff, ptrdiff_t diff_stride, const uint8_t *src8, ptrdiff_t src_stride, const uint8_t *pred8, @@ -51,3 +52,4 @@ void aom_highbd_subtract_block_c(int rows, int cols, int16_t *diff, src += src_stride; } } +#endif |