mpegvideo_mmi.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * Copyright (c) 2000,2001 Fabrice Bellard.
  3.  *
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Lesser General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * Lesser General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Lesser General Public
  15.  * License along with this library; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  * MMI optimization by Leon van Stuivenberg
  19.  */
  20.  
  21. #include "../dsputil.h"
  22. #include "../mpegvideo.h"
  23. #include "../avcodec.h"
  24. static void dct_unquantize_h263_mmi(MpegEncContext *s, 
  25.                                   DCTELEM *block, int n, int qscale)
  26. {
  27.     int level=0, qmul, qadd;
  28.     int nCoeffs;
  29.     
  30.     assert(s->block_last_index[n]>=0);
  31.     
  32.     qadd = (qscale - 1) | 1;
  33.     qmul = qscale << 1;
  34.     
  35.     if (s->mb_intra) {
  36.         if (!s->h263_aic) {
  37.             if (n < 4) 
  38.                 level = block[0] * s->y_dc_scale;
  39.             else
  40.                 level = block[0] * s->c_dc_scale;
  41.         }else {
  42.             qadd = 0;
  43.     level = block[0];
  44.         }
  45.         nCoeffs= 63; //does not allways use zigzag table 
  46.     } else {
  47.         nCoeffs= s->intra_scantable.raster_end[ s->block_last_index[n] ];
  48.     }
  49.     asm volatile(
  50.         "add    $14, $0, %3 nt"
  51.         "pcpyld $8, %0, %0 nt"
  52.         "pcpyh  $8, $8 nt"   //r8 = qmul
  53.         "pcpyld $9, %1, %1 nt"
  54.         "pcpyh  $9, $9 nt"   //r9 = qadd
  55.         ".p2align 2             nt"
  56.         "1: nt"
  57.         "lq     $10, 0($14) nt"   //r10 = level
  58.         "addi   $14, $14, 16 nt" //block+=8
  59.         "addi   %2, %2, -8 nt"
  60.         "pcgth  $11, $0, $10 nt"   //r11 = level < 0 ? -1 : 0
  61.         "pcgth  $12, $10, $0 nt"   //r12 = level > 0 ? -1 : 0
  62.         "por    $12, $11, $12 nt"
  63.         "pmulth $10, $10, $8 nt"
  64.         "paddh  $13, $9, $11 nt"
  65.         "pxor   $13, $13, $11   nt"   //r13 = level < 0 ? -qadd : qadd
  66.         "pmfhl.uw $11 nt"
  67.         "pinteh $10, $11, $10 nt"   //r10 = level * qmul
  68.         "paddh  $10, $10, $13 nt"
  69.         "pand   $10, $10, $12   nt"
  70.         "sq     $10, -16($14) nt"
  71.         "bgez   %2, 1b nt"
  72. :: "r"(qmul), "r" (qadd), "r" (nCoeffs), "r" (block) : "$8", "$9", "$10", "$11", "$12", "$13", "$14", "memory" );
  73.     if(s->mb_intra)
  74.         block[0]= level;
  75. }
  76. void MPV_common_init_mmi(MpegEncContext *s)
  77. {
  78.     s->dct_unquantize_h263_intra = 
  79.     s->dct_unquantize_h263_inter = dct_unquantize_h263_mmi;
  80. }