annotate ffmpeg/libavcodec/bfin/dsputil_bfin.h @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents 6840f77b83aa
children
rev   line source
yading@10 1 /*
yading@10 2 * BlackFin DSPUTILS COMMON OPTIMIZATIONS HEADER
yading@10 3 *
yading@10 4 * Copyright (C) 2007 Marc Hoffman <mmh@pleasantst.com>
yading@10 5 *
yading@10 6 * This file is part of FFmpeg.
yading@10 7 *
yading@10 8 * FFmpeg is free software; you can redistribute it and/or
yading@10 9 * modify it under the terms of the GNU Lesser General Public
yading@10 10 * License as published by the Free Software Foundation; either
yading@10 11 * version 2.1 of the License, or (at your option) any later version.
yading@10 12 *
yading@10 13 * FFmpeg is distributed in the hope that it will be useful,
yading@10 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@10 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@10 16 * Lesser General Public License for more details.
yading@10 17 *
yading@10 18 * You should have received a copy of the GNU Lesser General Public
yading@10 19 * License along with FFmpeg; if not, write to the Free Software
yading@10 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@10 21 */
yading@10 22
yading@10 23
yading@10 24 #ifndef AVCODEC_BFIN_DSPUTIL_BFIN_H
yading@10 25 #define AVCODEC_BFIN_DSPUTIL_BFIN_H
yading@10 26
yading@10 27 #include <stdint.h>
yading@10 28
yading@10 29 #include "config.h"
yading@10 30
yading@10 31 #if defined(__FDPIC__) && CONFIG_SRAM
yading@10 32 #define attribute_l1_text __attribute__ ((l1_text))
yading@10 33 #define attribute_l1_data_b __attribute__((l1_data_B))
yading@10 34 #else
yading@10 35 #define attribute_l1_text
yading@10 36 #define attribute_l1_data_b
yading@10 37 #endif
yading@10 38
yading@10 39 void ff_bfin_idct (int16_t *block) attribute_l1_text;
yading@10 40 void ff_bfin_fdct (int16_t *block) attribute_l1_text;
yading@10 41 void ff_bfin_add_pixels_clamped (const int16_t *block, uint8_t *dest, int line_size) attribute_l1_text;
yading@10 42 void ff_bfin_put_pixels_clamped (const int16_t *block, uint8_t *dest, int line_size) attribute_l1_text;
yading@10 43 void ff_bfin_diff_pixels (int16_t *block, const uint8_t *s1, const uint8_t *s2, int stride) attribute_l1_text;
yading@10 44 void ff_bfin_get_pixels (int16_t *restrict block, const uint8_t *pixels, int line_size) attribute_l1_text;
yading@10 45 int ff_bfin_pix_norm1 (uint8_t * pix, int line_size) attribute_l1_text;
yading@10 46 int ff_bfin_z_sad8x8 (uint8_t *blk1, uint8_t *blk2, int dsz, int line_size, int h) attribute_l1_text;
yading@10 47 int ff_bfin_z_sad16x16 (uint8_t *blk1, uint8_t *blk2, int dsz, int line_size, int h) attribute_l1_text;
yading@10 48
yading@10 49 int ff_bfin_pix_sum (uint8_t *p, int stride) attribute_l1_text;
yading@10 50
yading@10 51 int ff_bfin_sse4 (void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h) attribute_l1_text;
yading@10 52 int ff_bfin_sse8 (void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h) attribute_l1_text;
yading@10 53 int ff_bfin_sse16 (void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h) attribute_l1_text;
yading@10 54
yading@10 55
yading@10 56 #ifdef BFIN_PROFILE
yading@10 57
yading@10 58 static double Telem[16];
yading@10 59 static char *TelemNames[16];
yading@10 60 static int TelemCnt;
yading@10 61
yading@10 62 #define PROF(lab,e) { int xx_e = e; char*xx_lab = lab; uint64_t xx_t0 = read_time();
yading@10 63 #define EPROF() xx_t0 = read_time()-xx_t0; Telem[xx_e] = Telem[xx_e] + xx_t0; TelemNames[xx_e] = xx_lab; }
yading@10 64
yading@10 65 static void prof_report (void)
yading@10 66 {
yading@10 67 int i;
yading@10 68 double s = 0;
yading@10 69 for (i=0;i<16;i++) {
yading@10 70 double v;
yading@10 71 if (TelemNames[i]) {
yading@10 72 v = Telem[i]/TelemCnt;
yading@10 73 av_log (NULL,AV_LOG_DEBUG,"%-20s: %12.4f\t%12.4f\n", TelemNames[i],v,v/64);
yading@10 74 s = s + Telem[i];
yading@10 75 }
yading@10 76 }
yading@10 77 av_log (NULL,AV_LOG_DEBUG,"%-20s: %12.4f\t%12.4f\n%20.4f\t%d\n",
yading@10 78 "total",s/TelemCnt,s/TelemCnt/64,s,TelemCnt);
yading@10 79 }
yading@10 80
yading@10 81 static void bfprof (void)
yading@10 82 {
yading@10 83 static int init;
yading@10 84 if (!init) atexit (prof_report);
yading@10 85 init=1;
yading@10 86 TelemCnt++;
yading@10 87 }
yading@10 88
yading@10 89 #else
yading@10 90 #define PROF(a,b)
yading@10 91 #define EPROF()
yading@10 92 #define bfprof()
yading@10 93 #endif
yading@10 94
yading@10 95 #endif /* AVCODEC_BFIN_DSPUTIL_BFIN_H */