4 * Copyright (c) 2003 BERO <bero@geocities.co.jp>
6 * This file is part of FFmpeg.
8 * FFmpeg 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.
13 * FFmpeg 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.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include "libavcodec/avcodec.h"
24 #include "libavcodec/dsputil.h"
26 static void memzero_align8(void *dst
,size_t size
)
28 #if defined(__SH4__) || defined(__SH4_SINGLE__) || defined(__SH4_SINGLE_ONLY__)
33 " fschg\n" //single float mode
45 #if defined(__SH4_SINGLE__) || defined(__SH4_SINGLE_ONLY__)
46 " fschg" //back to single
48 : : "r"(dst
),"r"(size
): "memory" );
62 static void clear_blocks_sh4(DCTELEM
*blocks
)
64 // if (((int)blocks&7)==0)
65 memzero_align8(blocks
,sizeof(DCTELEM
)*6*64);
68 extern void idct_sh4(DCTELEM
*block
);
69 static void idct_put(uint8_t *dest
, int line_size
, DCTELEM
*block
)
73 uint8_t *cm
= ff_cropTbl
+ MAX_NEG_CROP
;
75 dest
[0] = cm
[block
[0]];
76 dest
[1] = cm
[block
[1]];
77 dest
[2] = cm
[block
[2]];
78 dest
[3] = cm
[block
[3]];
79 dest
[4] = cm
[block
[4]];
80 dest
[5] = cm
[block
[5]];
81 dest
[6] = cm
[block
[6]];
82 dest
[7] = cm
[block
[7]];
87 static void idct_add(uint8_t *dest
, int line_size
, DCTELEM
*block
)
91 uint8_t *cm
= ff_cropTbl
+ MAX_NEG_CROP
;
93 dest
[0] = cm
[dest
[0]+block
[0]];
94 dest
[1] = cm
[dest
[1]+block
[1]];
95 dest
[2] = cm
[dest
[2]+block
[2]];
96 dest
[3] = cm
[dest
[3]+block
[3]];
97 dest
[4] = cm
[dest
[4]+block
[4]];
98 dest
[5] = cm
[dest
[5]+block
[5]];
99 dest
[6] = cm
[dest
[6]+block
[6]];
100 dest
[7] = cm
[dest
[7]+block
[7]];
106 extern void dsputil_init_align(DSPContext
* c
, AVCodecContext
*avctx
);
108 void dsputil_init_sh4(DSPContext
* c
, AVCodecContext
*avctx
)
110 const int idct_algo
= avctx
->idct_algo
;
111 dsputil_init_align(c
,avctx
);
113 c
->clear_blocks
= clear_blocks_sh4
;
114 if(idct_algo
==FF_IDCT_AUTO
|| idct_algo
==FF_IDCT_SH4
){
115 c
->idct_put
= idct_put
;
116 c
->idct_add
= idct_add
;
118 c
->idct_permutation_type
= FF_NO_IDCT_PERM
; //FF_SIMPLE_IDCT_PERM; //FF_LIBMPEG2_IDCT_PERM;