intra16x16_pred.h 640 B

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