1
0

intra8x8_pred.h 642 B

12345678910111213141516171819202122232425
  1. /*!
  2. *************************************************************************************
  3. * \file intra8x8_pred.h
  4. *
  5. * \brief
  6. * definitions for intra 8x8 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 _INTRA8x8_PRED_H_
  16. #define _INTRA8x8_PRED_H_
  17. #include "global.h"
  18. #include "mbuffer.h"
  19. extern int intrapred8x8(Macroblock *currMB, ColorPlane pl, int ioff, int joff);
  20. #endif