diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c
index 696d16b59efcca20743df75d126edd13dcfbb921..9d0303e0905b420be3876f82e08ac892b456fa44 100644
--- a/libavcodec/dsputil.c
+++ b/libavcodec/dsputil.c
@@ -43,11 +43,7 @@
 
 uint32_t ff_squareTbl[512] = {0, };
 
-#define BIT_DEPTH 9
-#include "dsputil_template.c"
-#undef BIT_DEPTH
-
-#define BIT_DEPTH 10
+#define BIT_DEPTH 16
 #include "dsputil_template.c"
 #undef BIT_DEPTH
 
@@ -2737,10 +2733,8 @@ av_cold void ff_dsputil_init(DSPContext* c, AVCodecContext *avctx)
 
     switch (avctx->bits_per_raw_sample) {
     case 9:
-        BIT_DEPTH_FUNCS(9);
-        break;
     case 10:
-        BIT_DEPTH_FUNCS(10);
+        BIT_DEPTH_FUNCS(16);
         break;
     default:
         BIT_DEPTH_FUNCS(8);