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