idct_mmx.c
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:2k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /*
  2.  *  idct_mmx.c
  3.  *
  4.  *  Copyright (C) Aaron Holtzman <aholtzma@ess.engr.uvic.ca> - Nov 1999
  5.  *
  6.  *  Portions of this code are from the MPEG software simulation group
  7.  *  idct implementation. This code will be replaced with a new
  8.  *  implementation soon.
  9.  *
  10.  *  This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
  11.  *
  12.  *  mpeg2dec is free software; you can redistribute it and/or modify
  13.  *  it under the terms of the GNU General Public License as published by
  14.  *  the Free Software Foundation; either version 2, or (at your option)
  15.  *  any later version.
  16.  *   
  17.  *  mpeg2dec is distributed in the hope that it will be useful,
  18.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  *  GNU General Public License for more details.
  21.  *   
  22.  *  You should have received a copy of the GNU General Public License
  23.  *  along with GNU Make; see the file COPYING.  If not, write to
  24.  *  the Free Software Foundation, 
  25.  *
  26.  */
  27. #include <stdio.h>
  28. #include "mpeg2.h"
  29. #include "mpeg2_internal.h"
  30. #include "mb_buffer.h"
  31. #include "idct.h"
  32. void idct_block_mmx(sint_16* foo);
  33. void
  34. idct_mmx(mb_buffer_t *mb_buffer)
  35. {
  36. uint_32 k;
  37. macroblock_t *mb = mb_buffer->macroblocks;
  38. uint_32 num_blocks = mb_buffer->num_blocks;
  39. for(k=0;k<num_blocks;k++)
  40. {
  41. if(mb[k].skipped)
  42. continue;
  43. //XXX only 4:2:0 supported here
  44. if(mb[k].coded_block_pattern & 0x20)
  45. idct_block_mmx(mb[k].y_blocks + 64*0);
  46. if(mb[k].coded_block_pattern & 0x10)
  47. idct_block_mmx(mb[k].y_blocks + 64*1);
  48. if(mb[k].coded_block_pattern & 0x08)
  49. idct_block_mmx(mb[k].y_blocks + 64*2);
  50. if(mb[k].coded_block_pattern & 0x04)
  51. idct_block_mmx(mb[k].y_blocks + 64*3);
  52. if(mb[k].coded_block_pattern & 0x2)
  53. idct_block_mmx(mb[k].cr_blocks);
  54. if(mb[k].coded_block_pattern & 0x1)
  55. idct_block_mmx(mb[k].cb_blocks);
  56. }
  57. asm volatile("emmsnt");
  58. }