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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**************************************************************************
  2.  *
  3.  * XVID MPEG-4 VIDEO CODEC
  4.  * 8bit<->16bit transfer
  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.  * 07.01.2002 merge functions from compensate; rename functions
  35.  * 22.12.2001 transfer_8to8add16 limit fix
  36.  * 07.11.2001 initial version; (c)2001 peter ross <pross@cs.rmit.edu.au>
  37.  *
  38.  *************************************************************************/
  39. #include "../global.h"
  40. #include "mem_transfer.h"
  41. // function pointers
  42. TRANSFER_8TO16COPY_PTR transfer_8to16copy;
  43. TRANSFER_16TO8COPY_PTR transfer_16to8copy;
  44. TRANSFER_8TO16SUB_PTR transfer_8to16sub;
  45. TRANSFER_16TO8ADD_PTR transfer_16to8add;
  46. TRANSFER8X8_COPY_PTR transfer8x8_copy;
  47. void transfer_8to16copy_c(int16_t * const dst,
  48. const uint8_t * const src,
  49. uint32_t stride)
  50. {
  51. uint32_t i, j;
  52. for (j = 0; j < 8; j++) {
  53. for (i = 0; i < 8; i++) {
  54. dst[j * 8 + i] = (int16_t)src[j * stride + i];
  55. }
  56. }
  57. }
  58. void transfer_16to8copy_c(uint8_t * const dst,
  59. const int16_t * const src,
  60. uint32_t stride)
  61. {
  62. uint32_t i, j;
  63. for (j = 0; j < 8; j++) {
  64. for (i = 0; i < 8; i++) {
  65. int16_t pixel = src[j * 8 + i];
  66. if (pixel < 0) {
  67. pixel = 0;
  68. } else if (pixel > 255) {
  69. pixel = 255;
  70. dst[j * stride + i] = (uint8_t)pixel;
  71. }
  72. }
  73. }
  74. /*
  75.   perform motion compensation (and 8bit->16bit dct transfer)
  76. */
  77. void transfer_8to16sub_c(int16_t * const dct,
  78. uint8_t * const cur,
  79. const uint8_t * ref,
  80. const uint32_t stride)
  81. {
  82. uint32_t i, j;
  83. for (j = 0; j < 8; j++)
  84. {
  85. for (i = 0; i < 8; i++)
  86. {
  87. uint8_t c = cur[j * stride + i];
  88. uint8_t r = ref[j * stride + i];
  89. cur[j * stride + i] = r;
  90. dct[j * 8 + i] = (int16_t)c - (int16_t)r;
  91. }
  92. }
  93. }
  94. void transfer_16to8add_c(uint8_t * const dst,
  95. const int16_t * const src,
  96. uint32_t stride)
  97. {
  98. uint32_t i, j;
  99. for (j = 0; j < 8; j++) {
  100. for (i = 0; i < 8; i++) {
  101. int16_t pixel = (int16_t)dst[j * stride + i] + src[j * 8 + i];
  102. if (pixel < 0) {
  103. pixel = 0;
  104. } else if (pixel > 255) {
  105. pixel = 255;
  106. dst[j * stride + i] = (uint8_t)pixel;
  107. }
  108. }
  109. }
  110. void transfer8x8_copy_c(uint8_t * const dst,
  111. const uint8_t * const src,
  112. const uint32_t stride)
  113. {
  114. uint32_t i, j;
  115. for (j = 0; j < 8; j++) {
  116. for (i = 0; i < 8; i++) {
  117. dst[j * stride + i] = src[j * stride + i];
  118. }
  119. }
  120. }