1
0

intra4x4_pred.h 673 B

12345678910111213141516171819202122232425
  1. /*!
  2. *************************************************************************************
  3. * \file intra4x4_pred.h
  4. *
  5. * \brief
  6. * definitions for intra 4x4 prediction
  7. *
  8. * \author
  9. * Main contributors (see contributors.h for copyright,
  10. * address and affiliation details)
  11. * - Alexis Michael Tourapis <[email protected]>
  12. *
  13. *************************************************************************************
  14. */
  15. #ifndef _INTRA4x4_PRED_H_
  16. #define _INTRA4x4_PRED_H_
  17. #include "global.h"
  18. #include "mbuffer.h"
  19. extern int intrapred(Macroblock *currMB, ColorPlane pl, int ioff, int joff, int img_block_x, int img_block_y);
  20. #endif