--- trunk/xvidcore/src/bitstream/mbcoding.h 2004/07/10 17:42:18 1485 +++ trunk/xvidcore/src/bitstream/mbcoding.h 2004/07/10 17:49:31 1486 @@ -19,7 +19,7 @@ * along with this program ; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * $Id: mbcoding.h,v 1.12 2004-03-22 22:36:23 edgomez Exp $ + * $Id: mbcoding.h,v 1.13 2004-07-10 17:49:31 edgomez Exp $ * ****************************************************************************/ @@ -54,9 +54,19 @@ int16_t * block, int direction, int coeff); -void get_inter_block(Bitstream * bs, - int16_t * block, - int direction); +void get_inter_block_h263( + Bitstream * bs, + int16_t * block, + int direction, + const int quant, + const uint16_t *matrix); + +void get_inter_block_mpeg( + Bitstream * bs, + int16_t * block, + int direction, + const int quant, + const uint16_t *matrix); void MBCodingBVOP(const FRAMEINFO * const frame,