blob: 0f2a13e29197853bab9be910c823a4f01439713a (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | /*!
 *************************************************************************************
 * \file mv_prediction.h
 *
 * \brief
 *    Declarations for Motion Vector Prediction
 *
 * \author
 *     Main contributors (see contributors.h for copyright, address and affiliation details)
 *     - Alexis Michael Tourapis         <alexismt@ieee.org>  
 *************************************************************************************
 */
#ifndef _MV_PREDICTION_H_
#define _MV_PREDICTION_H_
extern void init_motion_vector_prediction(Macroblock *currMB, int MbaffFrameFlag);
#endif
 |