blob: a50c52629e833cc58a72b9f28fbad641f63f83d7 (
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 intra4x4_pred.h
*
* \brief
* definitions for intra 4x4 prediction
*
* \author
* Main contributors (see contributors.h for copyright,
* address and affiliation details)
* - Alexis Michael Tourapis <alexismt@ieee.org>
*
*************************************************************************************
*/
#ifndef _INTRA4x4_PRED_H_
#define _INTRA4x4_PRED_H_
#include "global.h"
#include "mbuffer.h"
extern int intrapred(Macroblock *currMB, ColorPlane pl, int ioff, int joff, int img_block_x, int img_block_y);
#endif
|