interpolate8x8.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**************************************************************************
  2.  *
  3.  * XVID MPEG-4 VIDEO CODEC
  4.  * 8x8 block-based halfpel interpolation
  5.  *
  6.  * This program is an implementation of a part of one or more MPEG-4
  7.  * Video tools as specified in ISO/IEC 14496-2 standard.  Those intending
  8.  * to use this software module in hardware or software products are
  9.  * advised that its use may infringe existing patents or copyrights, and
  10.  * any such use would be at such party's own risk.  The original
  11.  * developer of this software module and his/her company, and subsequent
  12.  * editors and their companies, will have no liability for use of this
  13.  * software or modifications or derivatives thereof.
  14.  *
  15.  * This program is free software; you can redistribute it and/or modify
  16.  * it under the terms of the GNU General Public License as published by
  17.  * the Free Software Foundation; either version 2 of the License, or
  18.  * (at your option) any later version.
  19.  *
  20.  * This program is distributed in the hope that it will be useful,
  21.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23.  * GNU General Public License for more details.
  24.  *
  25.  * You should have received a copy of the GNU General Public License
  26.  * along with this program; if not, write to the Free Software
  27.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  28.  *
  29.  *************************************************************************/
  30. /**************************************************************************
  31.  *
  32.  * History:
  33.  *
  34.  * 27.12.2001 modified "compensate_halfpel"
  35.  * 05.11.2001 initial version; (c)2001 peter ross <pross@cs.rmit.edu.au>
  36.  *
  37.  *************************************************************************/
  38. #include "../portab.h"
  39. #include "interpolate8x8.h"
  40. // function pointers
  41. INTERPOLATE8X8_PTR interpolate8x8_halfpel_h;
  42. INTERPOLATE8X8_PTR interpolate8x8_halfpel_v;
  43. INTERPOLATE8X8_PTR interpolate8x8_halfpel_hv;
  44. // dst = interpolate(src)
  45. void interpolate8x8_halfpel_h_c(uint8_t * const dst,
  46. const uint8_t * const src,
  47. const uint32_t stride,
  48. const uint32_t rounding)
  49. {
  50. uint32_t i, j;
  51. for (j = 0; j < 8; j++) {
  52. for (i = 0; i < 8; i++) {
  53. int16_t tot = (int32_t)src[j * stride + i] +
  54. (int32_t)src[j * stride + i + 1];
  55. tot = (int32_t)((tot + 1 - rounding) >> 1);
  56. dst[j * stride + i] = (uint8_t)tot;
  57. }
  58. }
  59. }
  60. void interpolate8x8_halfpel_v_c(uint8_t * const dst,
  61. const uint8_t * const src,
  62. const uint32_t stride,
  63. const uint32_t rounding)
  64. {
  65. uint32_t i, j;
  66. for (j = 0; j < 8; j++) {
  67. for (i = 0; i < 8; i++) {
  68. int16_t tot = src[j * stride + i] + 
  69. src[j * stride + i + stride];
  70. tot = ((tot + 1 - rounding) >> 1);
  71. dst[j * stride + i] = (uint8_t)tot;
  72. }
  73. }
  74. }
  75. void interpolate8x8_halfpel_hv_c(uint8_t * const dst,
  76. const uint8_t * const src,
  77. const uint32_t stride,
  78. const uint32_t rounding)
  79. {
  80. uint32_t i, j;
  81. for (j = 0; j < 8; j++) {
  82. for (i = 0; i < 8; i++) {
  83. int16_t tot = src[j * stride + i] + 
  84. src[j * stride + i + 1] + 
  85. src[j * stride + i + stride] +
  86. src[j * stride + i + stride + 1];
  87. tot = ((tot + 2 - rounding) >> 2);
  88. dst[j * stride + i] = (uint8_t)tot;
  89. }
  90. }
  91. }