2002-10-06 15:27:01 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2002 Michael Niedermayer
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-10-06 15:27:01 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-10-06 15:27:01 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2002-10-06 15:27:01 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-10-06 15:27:01 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-05-16 09:51:45 +00:00
|
|
|
#include "dsputil.h"
|
|
|
|
#include "mpegvideo.h"
|
|
|
|
#include "avcodec.h"
|
2002-10-06 15:27:01 +00:00
|
|
|
|
2005-05-26 14:32:46 +00:00
|
|
|
extern void MPV_common_init_iwmmxt(MpegEncContext *s);
|
2007-01-07 23:24:14 +00:00
|
|
|
extern void MPV_common_init_armv5te(MpegEncContext *s);
|
2005-05-26 14:32:46 +00:00
|
|
|
|
2002-10-06 15:27:01 +00:00
|
|
|
void MPV_common_init_armv4l(MpegEncContext *s)
|
|
|
|
{
|
2007-03-23 00:05:45 +00:00
|
|
|
/* IWMMXT support is a superset of armv5te, so
|
|
|
|
* allow optimised functions for armv5te unless
|
|
|
|
* a better iwmmxt function exists
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_ARMV5TE
|
|
|
|
MPV_common_init_armv5te(s);
|
|
|
|
#endif
|
2005-05-26 14:32:46 +00:00
|
|
|
#ifdef HAVE_IWMMXT
|
|
|
|
MPV_common_init_iwmmxt(s);
|
|
|
|
#endif
|
2002-10-06 15:27:01 +00:00
|
|
|
}
|