vp9_skin_detection.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright (c) 2015 The WebM project authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by a BSD-style license
  5. * that can be found in the LICENSE file in the root of the source
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef VP9_ENCODER_VP9_SKIN_MAP_H_
  11. #define VP9_ENCODER_VP9_SKIN_MAP_H_
  12. #include "vp9/common/vp9_blockd.h"
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. struct VP9_COMP;
  17. // #define OUTPUT_YUV_SKINMAP
  18. int vp9_skin_pixel(const uint8_t y, const uint8_t cb, const uint8_t cr,
  19. int motion);
  20. int vp9_compute_skin_block(const uint8_t *y, const uint8_t *u, const uint8_t *v,
  21. int stride, int strideuv, int bsize,
  22. int consec_zeromv, int curr_motion_magn);
  23. #ifdef OUTPUT_YUV_SKINMAP
  24. // For viewing skin map on input source.
  25. void vp9_compute_skin_map(struct VP9_COMP *const cpi, FILE *yuv_skinmap_file);
  26. extern void vp9_write_yuv_frame_420(YV12_BUFFER_CONFIG *s, FILE *f);
  27. #endif
  28. #ifdef __cplusplus
  29. } // extern "C"
  30. #endif
  31. #endif // VP9_ENCODER_VP9_SKIN_MAP_H_