reconintra.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (c) 2010 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 VP8_COMMON_RECONINTRA_H_
  11. #define VP8_COMMON_RECONINTRA_H_
  12. #include "vp8/common/blockd.h"
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. void vp8_build_intra_predictors_mby_s(MACROBLOCKD *x,
  17. unsigned char *yabove_row,
  18. unsigned char *yleft,
  19. int left_stride,
  20. unsigned char *ypred_ptr,
  21. int y_stride);
  22. void vp8_build_intra_predictors_mbuv_s(MACROBLOCKD *x,
  23. unsigned char * uabove_row,
  24. unsigned char * vabove_row,
  25. unsigned char * uleft,
  26. unsigned char * vleft,
  27. int left_stride,
  28. unsigned char * upred_ptr,
  29. unsigned char * vpred_ptr,
  30. int pred_stride);
  31. void vp8_init_intra_predictors(void);
  32. #ifdef __cplusplus
  33. } // extern "C"
  34. #endif
  35. #endif // VP8_COMMON_RECONINTRA_H_