motion.c
上传用户:hkgotone
上传日期:2013-02-17
资源大小:293k
文件大小:7k
源码类别:

Windows Mobile

开发平台:

C/C++

  1. /* motion.c, motion vector decoding                                         */
  2. /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
  3. /*
  4.  * Disclaimer of Warranty
  5.  *
  6.  * These software programs are available to the user without any license fee or
  7.  * royalty on an "as is" basis.  The MPEG Software Simulation Group disclaims
  8.  * any and all warranties, whether express, implied, or statuary, including any
  9.  * implied warranties or merchantability or of fitness for a particular
  10.  * purpose.  In no event shall the copyright-holder be liable for any
  11.  * incidental, punitive, or consequential damages of any kind whatsoever
  12.  * arising from the use of these programs.
  13.  *
  14.  * This disclaimer of warranty extends to the user of these programs and user's
  15.  * customers, employees, agents, transferees, successors, and assigns.
  16.  *
  17.  * The MPEG Software Simulation Group does not represent or warrant that the
  18.  * programs furnished hereunder are free of infringement of any third-party
  19.  * patents.
  20.  *
  21.  * Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
  22.  * are subject to royalty fees to patent holders.  Many of these patents are
  23.  * general enough such that they are unavoidable regardless of implementation
  24.  * design.
  25.  *
  26.  */
  27. #include <stdio.h>
  28. #include "config.h"
  29. #include "global.h"
  30. /* private prototypes */
  31. static void decode_motion_vector _ANSI_ARGS_((int *pred, int r_size, int motion_code,
  32.   int motion_residualesidual, int full_pel_vector));
  33. /* ISO/IEC 13818-2 sections 6.2.5.2, 6.3.17.2, and 7.6.3: Motion vectors */
  34. void motion_vectors(PMV,dmvector,
  35.   motion_vertical_field_select,s,motion_vector_count,mv_format,h_r_size,v_r_size,dmv,mvscale)
  36. int PMV[2][2][2];
  37. int dmvector[2];
  38. int motion_vertical_field_select[2][2];
  39. int s, motion_vector_count, mv_format, h_r_size, v_r_size, dmv, mvscale;
  40. {
  41.   if (motion_vector_count==1)
  42.   {
  43.     if (mv_format==MV_FIELD && !dmv)
  44.     {
  45.       motion_vertical_field_select[1][s] = motion_vertical_field_select[0][s] = Get_Bits(1);
  46. #ifdef TRACE
  47.       if (Trace_Flag)
  48.       {
  49.         printf("motion_vertical_field_select[][%d] (%d): %dn",s,
  50.           motion_vertical_field_select[0][s],motion_vertical_field_select[0][s]);
  51.       }
  52. #endif /* TRACE */
  53.     }
  54.     motion_vector(PMV[0][s],dmvector,h_r_size,v_r_size,dmv,mvscale,0);
  55.     /* update other motion vector predictors */
  56.     PMV[1][s][0] = PMV[0][s][0];
  57.     PMV[1][s][1] = PMV[0][s][1];
  58.   }
  59.   else
  60.   {
  61.     motion_vertical_field_select[0][s] = Get_Bits(1);
  62. #ifdef TRACE
  63.     if (Trace_Flag)
  64.     {
  65.       printf("motion_vertical_field_select[0][%d] (%d): %dn",s,
  66.         motion_vertical_field_select[0][s],motion_vertical_field_select[0][s]);
  67.     }
  68. #endif /* TRACE */
  69.     motion_vector(PMV[0][s],dmvector,h_r_size,v_r_size,dmv,mvscale,0);
  70.     motion_vertical_field_select[1][s] = Get_Bits(1);
  71. #ifdef TRACE
  72.     if (Trace_Flag)
  73.     {
  74.       printf("motion_vertical_field_select[1][%d] (%d): %dn",s,
  75.         motion_vertical_field_select[1][s],motion_vertical_field_select[1][s]);
  76.     }
  77. #endif /* TRACE */
  78.     motion_vector(PMV[1][s],dmvector,h_r_size,v_r_size,dmv,mvscale,0);
  79.   }
  80. }
  81. /* get and decode motion vector and differential motion vector 
  82.    for one prediction */
  83. void motion_vector(PMV,dmvector,
  84.   h_r_size,v_r_size,dmv,mvscale,full_pel_vector)
  85. int *PMV;
  86. int *dmvector;
  87. int h_r_size;
  88. int v_r_size;
  89. int dmv; /* MPEG-2 only: get differential motion vectors */
  90. int mvscale; /* MPEG-2 only: field vector in frame pic */
  91. int full_pel_vector; /* MPEG-1 only */
  92. {
  93.   int motion_code, motion_residual;
  94.   /* horizontal component */
  95.   /* ISO/IEC 13818-2 Table B-10 */
  96.   motion_code = Get_motion_code();
  97.   motion_residual = (h_r_size!=0 && motion_code!=0) ? Get_Bits(h_r_size) : 0;
  98. #ifdef TRACE
  99.   if (Trace_Flag)
  100.   {
  101.     if (h_r_size!=0 && motion_code!=0)
  102.     {
  103.       printf("motion_residual (");
  104.       Print_Bits(motion_residual,h_r_size,h_r_size);
  105.       printf("): %dn",motion_residual);
  106.     }
  107.   }
  108. #endif /* TRACE */
  109.   decode_motion_vector(&PMV[0],h_r_size,motion_code,motion_residual,full_pel_vector);
  110.   if (dmv)
  111.     dmvector[0] = Get_dmvector();
  112.   /* vertical component */
  113.   motion_code     = Get_motion_code();
  114.   motion_residual = (v_r_size!=0 && motion_code!=0) ? Get_Bits(v_r_size) : 0;
  115. #ifdef TRACE
  116.   if (Trace_Flag)
  117.   {
  118.     if (v_r_size!=0 && motion_code!=0)
  119.     {
  120.       printf("motion_residual (");
  121.       Print_Bits(motion_residual,v_r_size,v_r_size);
  122.       printf("): %dn",motion_residual);
  123.     }
  124.   }
  125. #endif /* TRACE */
  126.   if (mvscale)
  127.     PMV[1] >>= 1; /* DIV 2 */
  128.   decode_motion_vector(&PMV[1],v_r_size,motion_code,motion_residual,full_pel_vector);
  129.   if (mvscale)
  130.     PMV[1] <<= 1;
  131.   if (dmv)
  132.     dmvector[1] = Get_dmvector();
  133. #ifdef TRACE
  134.   if (Trace_Flag)
  135.     printf("PMV = %d,%dn",PMV[0],PMV[1]);
  136. #endif /* TRACE */
  137. }
  138. /* calculate motion vector component */
  139. /* ISO/IEC 13818-2 section 7.6.3.1: Decoding the motion vectors */
  140. /* Note: the arithmetic here is more elegant than that which is shown 
  141.    in 7.6.3.1.  The end results (PMV[][][]) should, however, be the same.  */
  142. static void decode_motion_vector(pred,r_size,motion_code,motion_residual,full_pel_vector)
  143. int *pred;
  144. int r_size, motion_code, motion_residual;
  145. int full_pel_vector; /* MPEG-1 (ISO/IEC 11172-1) support */
  146. {
  147.   int lim, vec;
  148.   lim = 16<<r_size;
  149.   vec = full_pel_vector ? (*pred >> 1) : (*pred);
  150.   if (motion_code>0)
  151.   {
  152.     vec+= ((motion_code-1)<<r_size) + motion_residual + 1;
  153.     if (vec>=lim)
  154.       vec-= lim + lim;
  155.   }
  156.   else if (motion_code<0)
  157.   {
  158.     vec-= ((-motion_code-1)<<r_size) + motion_residual + 1;
  159.     if (vec<-lim)
  160.       vec+= lim + lim;
  161.   }
  162.   *pred = full_pel_vector ? (vec<<1) : vec;
  163. }
  164. /* ISO/IEC 13818-2 section 7.6.3.6: Dual prime additional arithmetic */
  165. void Dual_Prime_Arithmetic(DMV,dmvector,mvx,mvy)
  166. int DMV[][2];
  167. int *dmvector; /* differential motion vector */
  168. int mvx, mvy;  /* decoded mv components (always in field format) */
  169. {
  170.   if (picture_structure==FRAME_PICTURE)
  171.   {
  172.     if (top_field_first)
  173.     {
  174.       /* vector for prediction of top field from bottom field */
  175.       DMV[0][0] = ((mvx  +(mvx>0))>>1) + dmvector[0];
  176.       DMV[0][1] = ((mvy  +(mvy>0))>>1) + dmvector[1] - 1;
  177.       /* vector for prediction of bottom field from top field */
  178.       DMV[1][0] = ((3*mvx+(mvx>0))>>1) + dmvector[0];
  179.       DMV[1][1] = ((3*mvy+(mvy>0))>>1) + dmvector[1] + 1;
  180.     }
  181.     else
  182.     {
  183.       /* vector for prediction of top field from bottom field */
  184.       DMV[0][0] = ((3*mvx+(mvx>0))>>1) + dmvector[0];
  185.       DMV[0][1] = ((3*mvy+(mvy>0))>>1) + dmvector[1] - 1;
  186.       /* vector for prediction of bottom field from top field */
  187.       DMV[1][0] = ((mvx  +(mvx>0))>>1) + dmvector[0];
  188.       DMV[1][1] = ((mvy  +(mvy>0))>>1) + dmvector[1] + 1;
  189.     }
  190.   }
  191.   else
  192.   {
  193.     /* vector for prediction from field of opposite 'parity' */
  194.     DMV[0][0] = ((mvx+(mvx>0))>>1) + dmvector[0];
  195.     DMV[0][1] = ((mvy+(mvy>0))>>1) + dmvector[1];
  196.     /* correct for vertical field shift */
  197.     if (picture_structure==TOP_FIELD)
  198.       DMV[0][1]--;
  199.     else
  200.       DMV[0][1]++;
  201.   }
  202. }