blob: ff2384602a12ecdf046a15d1fc7371b18a16a358 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*!
*************************************************************************************
* \file intra8x8_pred.h
*
* \brief
* definitions for intra 8x8 prediction
*
* \author
* Main contributors (see contributors.h for copyright,
* address and affiliation details)
* - Alexis Michael Tourapis <alexismt@ieee.org>
*
*************************************************************************************
*/
#ifndef _INTRA8x8_PRED_H_
#define _INTRA8x8_PRED_H_
#include "global.h"
#include "mbuffer.h"
extern int intrapred8x8(Macroblock *currMB, ColorPlane pl, int ioff, int joff);
#endif
|