]> granicus.if.org Git - libvpx/blobdiff - tools_common.h
loop_filter_rows_mt: unify worker count calculation
[libvpx] / tools_common.h
index 28695e4f1d741ddcc7844958be1db76e4231969f..4526d9f165c0a066d5aab802fb357d26c39522dc 100644 (file)
@@ -166,6 +166,15 @@ void vpx_img_downshift(vpx_image_t *dst, vpx_image_t *src, int down_shift);
 void vpx_img_truncate_16_to_8(vpx_image_t *dst, vpx_image_t *src);
 #endif
 
+int compare_img(const vpx_image_t *const img1, const vpx_image_t *const img2);
+#if CONFIG_VP9_HIGHBITDEPTH
+void find_mismatch_high(const vpx_image_t *const img1,
+                        const vpx_image_t *const img2, int yloc[4], int uloc[4],
+                        int vloc[4]);
+#endif
+void find_mismatch(const vpx_image_t *const img1, const vpx_image_t *const img2,
+                   int yloc[4], int uloc[4], int vloc[4]);
+
 #ifdef __cplusplus
 } /* extern "C" */
 #endif