]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/hevcdsp_template.c
hevcdsp: fix a function name
[ffmpeg] / libavcodec / hevcdsp_template.c
index ae7e0217cc6695ce254b61365c4da6eb41dcbc66..390f6832950fa4d17716005a6f93530ec9c8844a 100644 (file)
@@ -1033,10 +1033,10 @@ static void FUNC(put_unweighted_pred)(uint8_t *_dst, ptrdiff_t _dststride,
     }
 }
 
-static void FUNC(put_weighted_pred_avg)(uint8_t *_dst, ptrdiff_t _dststride,
-                                        int16_t *src1, int16_t *src2,
-                                        ptrdiff_t srcstride,
-                                        int width, int height)
+static void FUNC(put_unweighted_pred_avg)(uint8_t *_dst, ptrdiff_t _dststride,
+                                          int16_t *src1, int16_t *src2,
+                                          ptrdiff_t srcstride,
+                                          int width, int height)
 {
     int x, y;
     pixel *dst          = (pixel *)_dst;