annotate libavcodec/arm/mpegvideo_arm.c @ 4:96e628866d41

naming some tasks to help debugging
author Nina Engelhardt <nengel@mailbox.tu-berlin.de>
date Wed, 19 Dec 2012 15:40:26 +0100
parents
children
rev   line source
nengel@2 1 /*
nengel@2 2 * Copyright (c) 2002 Michael Niedermayer
nengel@2 3 *
nengel@2 4 * This file is part of FFmpeg.
nengel@2 5 *
nengel@2 6 * FFmpeg is free software; you can redistribute it and/or
nengel@2 7 * modify it under the terms of the GNU Lesser General Public
nengel@2 8 * License as published by the Free Software Foundation; either
nengel@2 9 * version 2.1 of the License, or (at your option) any later version.
nengel@2 10 *
nengel@2 11 * FFmpeg is distributed in the hope that it will be useful,
nengel@2 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
nengel@2 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
nengel@2 14 * Lesser General Public License for more details.
nengel@2 15 *
nengel@2 16 * You should have received a copy of the GNU Lesser General Public
nengel@2 17 * License along with FFmpeg; if not, write to the Free Software
nengel@2 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
nengel@2 19 */
nengel@2 20
nengel@2 21 #include "libavcodec/avcodec.h"
nengel@2 22 #include "libavcodec/dsputil.h"
nengel@2 23 #include "libavcodec/mpegvideo.h"
nengel@2 24 #include "mpegvideo_arm.h"
nengel@2 25
nengel@2 26 void MPV_common_init_arm(MpegEncContext *s)
nengel@2 27 {
nengel@2 28 /* IWMMXT support is a superset of armv5te, so
nengel@2 29 * allow optimized functions for armv5te unless
nengel@2 30 * a better iwmmxt function exists
nengel@2 31 */
nengel@2 32 #if HAVE_ARMV5TE
nengel@2 33 MPV_common_init_armv5te(s);
nengel@2 34 #endif
nengel@2 35 #if HAVE_IWMMXT
nengel@2 36 MPV_common_init_iwmmxt(s);
nengel@2 37 #endif
nengel@2 38 }