From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/h264dec/lcommon/inc/mv_prediction.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Src/h264dec/lcommon/inc/mv_prediction.h (limited to 'Src/h264dec/lcommon/inc/mv_prediction.h') diff --git a/Src/h264dec/lcommon/inc/mv_prediction.h b/Src/h264dec/lcommon/inc/mv_prediction.h new file mode 100644 index 00000000..0f2a13e2 --- /dev/null +++ b/Src/h264dec/lcommon/inc/mv_prediction.h @@ -0,0 +1,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 + ************************************************************************************* + */ + +#ifndef _MV_PREDICTION_H_ +#define _MV_PREDICTION_H_ + +extern void init_motion_vector_prediction(Macroblock *currMB, int MbaffFrameFlag); + +#endif -- cgit