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

DVD

开发平台:

Unix_Linux

  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 "old_config.h"
  29. #include "global.h"
  30. #include "bitstream.h"
  31. /* private prototypes */
  32. static void decode_motion_vector _ANSI_ARGS_((int *pred, int r_size, int motion_code,
  33.   int motion_residualesidual, int full_pel_vector));
  34. /* ISO/IEC 13818-2 sections 6.2.5.2, 6.3.17.2, and 7.6.3: Motion vectors */
  35. void motion_vectors(PMV,dmvector,
  36.   motion_vertical_field_select,s,motion_vector_count,mv_format,h_r_size,v_r_size,dmv,mvscale)
  37. int PMV[2][2][2];
  38. int dmvector[2];
  39. int motion_vertical_field_select[2][2];
  40. int s, motion_vector_count, mv_format, h_r_size, v_r_size, dmv, mvscale;
  41. {
  42.   if (motion_vector_count==1)
  43.   {
  44.     if (mv_format==MV_FIELD && !dmv)
  45.     {
  46.       fprintf(stderr,"field based mvn");
  47.       motion_vertical_field_select[1][s] = motion_vertical_field_select[0][s] = Get_Bits(1);
  48. //FIXME remove
  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.     motion_vector(PMV[0][s],dmvector,h_r_size,v_r_size,dmv,mvscale,0);
  53.     /* update other motion vector predictors */
  54.     PMV[1][s][0] = PMV[0][s][0];
  55.     PMV[1][s][1] = PMV[0][s][1];
  56.   }
  57.   else
  58.   {
  59.     motion_vertical_field_select[0][s] = Get_Bits(1);
  60. #ifdef TRACE
  61.     if (Trace_Flag)
  62.     {
  63.       printf("motion_vertical_field_select[0][%d] (%d): %dn",s,
  64.         motion_vertical_field_select[0][s],motion_vertical_field_select[0][s]);
  65.     }
  66. #endif /* TRACE */
  67.     motion_vector(PMV[0][s],dmvector,h_r_size,v_r_size,dmv,mvscale,0);
  68.     motion_vertical_field_select[1][s] = Get_Bits(1);
  69. #ifdef TRACE
  70.     if (Trace_Flag)
  71.     {
  72.       printf("motion_vertical_field_select[1][%d] (%d): %dn",s,
  73.         motion_vertical_field_select[1][s],motion_vertical_field_select[1][s]);
  74.     }
  75. #endif /* TRACE */
  76.     motion_vector(PMV[1][s],dmvector,h_r_size,v_r_size,dmv,mvscale,0);
  77.   }
  78. }
  79. /* get and decode motion vector and differential motion vector 
  80.    for one prediction */
  81. void motion_vector(PMV,dmvector,
  82.   h_r_size,v_r_size,dmv,mvscale,full_pel_vector)
  83. int *PMV;
  84. int *dmvector;
  85. int h_r_size;
  86. int v_r_size;
  87. int dmv; /* MPEG-2 only: get differential motion vectors */
  88. int mvscale; /* MPEG-2 only: field vector in frame pic */
  89. int full_pel_vector; /* MPEG-1 only */
  90. {
  91.   int motion_code, motion_residual;
  92.   /* horizontal component */
  93.   /* ISO/IEC 13818-2 Table B-10 */
  94.   motion_code = Get_motion_code();
  95.   motion_residual = (h_r_size!=0 && motion_code!=0) ? Get_Bits(h_r_size) : 0;
  96. #ifdef TRACE
  97.   if (Trace_Flag)
  98.   {
  99.     if (h_r_size!=0 && motion_code!=0)
  100.     {
  101.       printf("motion_residual (");
  102.       Print_Bits(motion_residual,h_r_size,h_r_size);
  103.       printf("): %dn",motion_residual);
  104.     }
  105.   }
  106. #endif /* TRACE */
  107.   decode_motion_vector(&PMV[0],h_r_size,motion_code,motion_residual,full_pel_vector);
  108.   if (dmv)
  109.     dmvector[0] = Get_dmvector();
  110.   /* vertical component */
  111.   motion_code     = Get_motion_code();
  112.   motion_residual = (v_r_size!=0 && motion_code!=0) ? Get_Bits(v_r_size) : 0;
  113. #ifdef TRACE
  114.   if (Trace_Flag)
  115.   {
  116.     if (v_r_size!=0 && motion_code!=0)
  117.     {
  118.       printf("motion_residual (");
  119.       Print_Bits(motion_residual,v_r_size,v_r_size);
  120.       printf("): %dn",motion_residual);
  121.     }
  122.   }
  123. #endif /* TRACE */
  124.   if (mvscale)
  125.     PMV[1] >>= 1; /* DIV 2 */
  126.   decode_motion_vector(&PMV[1],v_r_size,motion_code,motion_residual,full_pel_vector);
  127.   if (mvscale)
  128.     PMV[1] <<= 1;
  129.   if (dmv)
  130.     dmvector[1] = Get_dmvector();
  131. #ifdef TRACE
  132.   if (Trace_Flag)
  133.     printf("PMV = %d,%dn",PMV[0],PMV[1]);
  134. #endif /* TRACE */
  135. }
  136. /* calculate motion vector component */
  137. /* ISO/IEC 13818-2 section 7.6.3.1: Decoding the motion vectors */
  138. /* Note: the arithmetic here is more elegant than that which is shown 
  139.    in 7.6.3.1.  The end results (PMV[][][]) should, however, be the same.  */
  140. static void decode_motion_vector(pred,r_size,motion_code,motion_residual,full_pel_vector)
  141. int *pred;
  142. int r_size, motion_code, motion_residual;
  143. int full_pel_vector; /* MPEG-1 (ISO/IEC 11172-1) support */
  144. {
  145.   int lim, vec;
  146.   lim = 16<<r_size;
  147.   vec = full_pel_vector ? (*pred >> 1) : (*pred);
  148.   if (motion_code>0)
  149.   {
  150.     vec+= ((motion_code-1)<<r_size) + motion_residual + 1;
  151.     if (vec>=lim)
  152.       vec-= lim + lim;
  153.   }
  154.   else if (motion_code<0)
  155.   {
  156.     vec-= ((-motion_code-1)<<r_size) + motion_residual + 1;
  157.     if (vec<-lim)
  158.       vec+= lim + lim;
  159.   }
  160.   *pred = full_pel_vector ? (vec<<1) : vec;
  161. }
  162. /* ISO/IEC 13818-2 section 7.6.3.6: Dual prime additional arithmetic */
  163. void Dual_Prime_Arithmetic(DMV,dmvector,mvx,mvy)
  164. int DMV[][2];
  165. int *dmvector; /* differential motion vector */
  166. int mvx, mvy;  /* decoded mv components (always in field format) */
  167. {
  168. //FIXME !!!!!
  169. #if 0
  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. #endif
  203. }