mpegvideo_common.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:25k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * The simplest mpeg encoder (well, it was the simplest!)
  3.  * Copyright (c) 2000,2001 Fabrice Bellard.
  4.  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5.  *
  6.  * 4MV & hq & B-frame encoding stuff by Michael Niedermayer <michaelni@gmx.at>
  7.  *
  8.  * This file is part of FFmpeg.
  9.  *
  10.  * FFmpeg is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU Lesser General Public
  12.  * License as published by the Free Software Foundation; either
  13.  * version 2.1 of the License, or (at your option) any later version.
  14.  *
  15.  * FFmpeg is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18.  * Lesser General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU Lesser General Public
  21.  * License along with FFmpeg; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23.  */
  24. /**
  25.  * @file mpegvideo_common.h
  26.  * The simplest mpeg encoder (well, it was the simplest!).
  27.  */
  28. #ifndef FFMPEG_MPEGVIDEO_COMMON_H
  29. #define FFMPEG_MPEGVIDEO_COMMON_H
  30. #include "avcodec.h"
  31. #include "dsputil.h"
  32. #include "mpegvideo.h"
  33. #include "mjpegenc.h"
  34. #include "msmpeg4.h"
  35. #include "faandct.h"
  36. #include "define.h"
  37. #include <limits.h>
  38. int dct_quantize_c(MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow);
  39. int dct_quantize_trellis_c(MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow);
  40. void  denoise_dct_c(MpegEncContext *s, DCTELEM *block);
  41. void copy_picture(Picture *dst, Picture *src);
  42. /**
  43.  * allocates a Picture
  44.  * The pixels are allocated/set by calling get_buffer() if shared=0
  45.  */
  46. int alloc_picture(MpegEncContext *s, Picture *pic, int shared);
  47. /**
  48.  * sets the given MpegEncContext to common defaults (same for encoding and decoding).
  49.  * the changed fields will not depend upon the prior state of the MpegEncContext.
  50.  */
  51. void MPV_common_defaults(MpegEncContext *s);
  52. static inline void gmc1_motion(MpegEncContext *s,
  53.                                uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  54.                                uint8_t **ref_picture)
  55. {
  56.     uint8_t *ptr;
  57.     int offset, src_x, src_y, linesize, uvlinesize;
  58.     int motion_x, motion_y;
  59.     int emu=0;
  60.     motion_x= s->sprite_offset[0][0];
  61.     motion_y= s->sprite_offset[0][1];
  62.     src_x = s->mb_x * 16 + (motion_x >> (s->sprite_warping_accuracy+1));
  63.     src_y = s->mb_y * 16 + (motion_y >> (s->sprite_warping_accuracy+1));
  64.     motion_x<<=(3-s->sprite_warping_accuracy);
  65.     motion_y<<=(3-s->sprite_warping_accuracy);
  66.     src_x = av_clip(src_x, -16, s->width);
  67.     if (src_x == s->width)
  68.         motion_x =0;
  69.     src_y = av_clip(src_y, -16, s->height);
  70.     if (src_y == s->height)
  71.         motion_y =0;
  72.     linesize = s->linesize;
  73.     uvlinesize = s->uvlinesize;
  74.     ptr = ref_picture[0] + (src_y * linesize) + src_x;
  75.     if(s->flags&CODEC_FLAG_EMU_EDGE){
  76.         if(   (unsigned)src_x >= s->h_edge_pos - 17
  77.            || (unsigned)src_y >= s->v_edge_pos - 17){
  78.             ff_emulated_edge_mc(s->edge_emu_buffer, ptr, linesize, 17, 17, src_x, src_y, s->h_edge_pos, s->v_edge_pos);
  79.             ptr= s->edge_emu_buffer;
  80.         }
  81.     }
  82.     if((motion_x|motion_y)&7){
  83.         s->dsp.gmc1(dest_y  , ptr  , linesize, 16, motion_x&15, motion_y&15, 128 - s->no_rounding);
  84.         s->dsp.gmc1(dest_y+8, ptr+8, linesize, 16, motion_x&15, motion_y&15, 128 - s->no_rounding);
  85.     }else{
  86.         int dxy;
  87.         dxy= ((motion_x>>3)&1) | ((motion_y>>2)&2);
  88.         if (s->no_rounding){
  89.             s->dsp.put_no_rnd_pixels_tab[0][dxy](dest_y, ptr, linesize, 16);
  90.         }else{
  91.             s->dsp.put_pixels_tab       [0][dxy](dest_y, ptr, linesize, 16);
  92.         }
  93.     }
  94.     if(ENABLE_GRAY && s->flags&CODEC_FLAG_GRAY) return;
  95.     motion_x= s->sprite_offset[1][0];
  96.     motion_y= s->sprite_offset[1][1];
  97.     src_x = s->mb_x * 8 + (motion_x >> (s->sprite_warping_accuracy+1));
  98.     src_y = s->mb_y * 8 + (motion_y >> (s->sprite_warping_accuracy+1));
  99.     motion_x<<=(3-s->sprite_warping_accuracy);
  100.     motion_y<<=(3-s->sprite_warping_accuracy);
  101.     src_x = av_clip(src_x, -8, s->width>>1);
  102.     if (src_x == s->width>>1)
  103.         motion_x =0;
  104.     src_y = av_clip(src_y, -8, s->height>>1);
  105.     if (src_y == s->height>>1)
  106.         motion_y =0;
  107.     offset = (src_y * uvlinesize) + src_x;
  108.     ptr = ref_picture[1] + offset;
  109.     if(s->flags&CODEC_FLAG_EMU_EDGE){
  110.         if(   (unsigned)src_x >= (s->h_edge_pos>>1) - 9
  111.            || (unsigned)src_y >= (s->v_edge_pos>>1) - 9){
  112.             ff_emulated_edge_mc(s->edge_emu_buffer, ptr, uvlinesize, 9, 9, src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1);
  113.             ptr= s->edge_emu_buffer;
  114.             emu=1;
  115.         }
  116.     }
  117.     s->dsp.gmc1(dest_cb, ptr, uvlinesize, 8, motion_x&15, motion_y&15, 128 - s->no_rounding);
  118.     ptr = ref_picture[2] + offset;
  119.     if(emu){
  120.         ff_emulated_edge_mc(s->edge_emu_buffer, ptr, uvlinesize, 9, 9, src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1);
  121.         ptr= s->edge_emu_buffer;
  122.     }
  123.     s->dsp.gmc1(dest_cr, ptr, uvlinesize, 8, motion_x&15, motion_y&15, 128 - s->no_rounding);
  124.     return;
  125. }
  126. static inline void gmc_motion(MpegEncContext *s,
  127.                                uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  128.                                uint8_t **ref_picture)
  129. {
  130.     uint8_t *ptr;
  131.     int linesize, uvlinesize;
  132.     const int a= s->sprite_warping_accuracy;
  133.     int ox, oy;
  134.     linesize = s->linesize;
  135.     uvlinesize = s->uvlinesize;
  136.     ptr = ref_picture[0];
  137.     ox= s->sprite_offset[0][0] + s->sprite_delta[0][0]*s->mb_x*16 + s->sprite_delta[0][1]*s->mb_y*16;
  138.     oy= s->sprite_offset[0][1] + s->sprite_delta[1][0]*s->mb_x*16 + s->sprite_delta[1][1]*s->mb_y*16;
  139.     s->dsp.gmc(dest_y, ptr, linesize, 16,
  140.            ox,
  141.            oy,
  142.            s->sprite_delta[0][0], s->sprite_delta[0][1],
  143.            s->sprite_delta[1][0], s->sprite_delta[1][1],
  144.            a+1, (1<<(2*a+1)) - s->no_rounding,
  145.            s->h_edge_pos, s->v_edge_pos);
  146.     s->dsp.gmc(dest_y+8, ptr, linesize, 16,
  147.            ox + s->sprite_delta[0][0]*8,
  148.            oy + s->sprite_delta[1][0]*8,
  149.            s->sprite_delta[0][0], s->sprite_delta[0][1],
  150.            s->sprite_delta[1][0], s->sprite_delta[1][1],
  151.            a+1, (1<<(2*a+1)) - s->no_rounding,
  152.            s->h_edge_pos, s->v_edge_pos);
  153.     if(ENABLE_GRAY && s->flags&CODEC_FLAG_GRAY) return;
  154.     ox= s->sprite_offset[1][0] + s->sprite_delta[0][0]*s->mb_x*8 + s->sprite_delta[0][1]*s->mb_y*8;
  155.     oy= s->sprite_offset[1][1] + s->sprite_delta[1][0]*s->mb_x*8 + s->sprite_delta[1][1]*s->mb_y*8;
  156.     ptr = ref_picture[1];
  157.     s->dsp.gmc(dest_cb, ptr, uvlinesize, 8,
  158.            ox,
  159.            oy,
  160.            s->sprite_delta[0][0], s->sprite_delta[0][1],
  161.            s->sprite_delta[1][0], s->sprite_delta[1][1],
  162.            a+1, (1<<(2*a+1)) - s->no_rounding,
  163.            s->h_edge_pos>>1, s->v_edge_pos>>1);
  164.     ptr = ref_picture[2];
  165.     s->dsp.gmc(dest_cr, ptr, uvlinesize, 8,
  166.            ox,
  167.            oy,
  168.            s->sprite_delta[0][0], s->sprite_delta[0][1],
  169.            s->sprite_delta[1][0], s->sprite_delta[1][1],
  170.            a+1, (1<<(2*a+1)) - s->no_rounding,
  171.            s->h_edge_pos>>1, s->v_edge_pos>>1);
  172. }
  173. static inline int hpel_motion(MpegEncContext *s,
  174.                                   uint8_t *dest, uint8_t *src,
  175.                                   int field_based, int field_select,
  176.                                   int src_x, int src_y,
  177.                                   int width, int height, int stride,
  178.                                   int h_edge_pos, int v_edge_pos,
  179.                                   int w, int h, op_pixels_func *pix_op,
  180.                                   int motion_x, int motion_y)
  181. {
  182.     int dxy;
  183.     int emu=0;
  184.     dxy = ((motion_y & 1) << 1) | (motion_x & 1);
  185.     src_x += motion_x >> 1;
  186.     src_y += motion_y >> 1;
  187.     /* WARNING: do no forget half pels */
  188.     src_x = av_clip(src_x, -16, width); //FIXME unneeded for emu?
  189.     if (src_x == width)
  190.         dxy &= ~1;
  191.     src_y = av_clip(src_y, -16, height);
  192.     if (src_y == height)
  193.         dxy &= ~2;
  194.     src += src_y * stride + src_x;
  195.     if(s->unrestricted_mv && (s->flags&CODEC_FLAG_EMU_EDGE)){
  196.         if(   (unsigned)src_x > h_edge_pos - (motion_x&1) - w
  197.            || (unsigned)src_y > v_edge_pos - (motion_y&1) - h){
  198.             ff_emulated_edge_mc(s->edge_emu_buffer, src, s->linesize, w+1, (h+1)<<field_based,
  199.                              src_x, src_y<<field_based, h_edge_pos, s->v_edge_pos);
  200.             src= s->edge_emu_buffer;
  201.             emu=1;
  202.         }
  203.     }
  204.     if(field_select)
  205.         src += s->linesize;
  206.     pix_op[dxy](dest, src, stride, h);
  207.     return emu;
  208. }
  209. static av_always_inline
  210. void mpeg_motion_internal(MpegEncContext *s,
  211.                  uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  212.                  int field_based, int bottom_field, int field_select,
  213.                  uint8_t **ref_picture, op_pixels_func (*pix_op)[4],
  214.                  int motion_x, int motion_y, int h, int is_mpeg12)
  215. {
  216.     uint8_t *ptr_y, *ptr_cb, *ptr_cr;
  217.     int dxy, uvdxy, mx, my, src_x, src_y,
  218.         uvsrc_x, uvsrc_y, v_edge_pos, uvlinesize, linesize;
  219. #if 0
  220. if(s->quarter_sample)
  221. {
  222.     motion_x>>=1;
  223.     motion_y>>=1;
  224. }
  225. #endif
  226.     v_edge_pos = s->v_edge_pos >> field_based;
  227.     linesize   = s->current_picture.linesize[0] << field_based;
  228.     uvlinesize = s->current_picture.linesize[1] << field_based;
  229.     dxy = ((motion_y & 1) << 1) | (motion_x & 1);
  230.     src_x = s->mb_x* 16               + (motion_x >> 1);
  231.     src_y =(s->mb_y<<(4-field_based)) + (motion_y >> 1);
  232.     if (!is_mpeg12 && s->out_format == FMT_H263) {
  233.         if((s->workaround_bugs & FF_BUG_HPEL_CHROMA) && field_based){
  234.             mx = (motion_x>>1)|(motion_x&1);
  235.             my = motion_y >>1;
  236.             uvdxy = ((my & 1) << 1) | (mx & 1);
  237.             uvsrc_x = s->mb_x* 8               + (mx >> 1);
  238.             uvsrc_y = (s->mb_y<<(3-field_based)) + (my >> 1);
  239.         }else{
  240.             uvdxy = dxy | (motion_y & 2) | ((motion_x & 2) >> 1);
  241.             uvsrc_x = src_x>>1;
  242.             uvsrc_y = src_y>>1;
  243.         }
  244.     }else if(!is_mpeg12 && s->out_format == FMT_H261){//even chroma mv's are full pel in H261
  245.         mx = motion_x / 4;
  246.         my = motion_y / 4;
  247.         uvdxy = 0;
  248.         uvsrc_x = s->mb_x*8 + mx;
  249.         uvsrc_y = s->mb_y*8 + my;
  250.     } else {
  251.         if(s->chroma_y_shift){
  252.             mx = motion_x / 2;
  253.             my = motion_y / 2;
  254.             uvdxy = ((my & 1) << 1) | (mx & 1);
  255.             uvsrc_x = s->mb_x* 8               + (mx >> 1);
  256.             uvsrc_y = (s->mb_y<<(3-field_based)) + (my >> 1);
  257.         } else {
  258.             if(s->chroma_x_shift){
  259.             //Chroma422
  260.                 mx = motion_x / 2;
  261.                 uvdxy = ((motion_y & 1) << 1) | (mx & 1);
  262.                 uvsrc_x = s->mb_x* 8           + (mx >> 1);
  263.                 uvsrc_y = src_y;
  264.             } else {
  265.             //Chroma444
  266.                 uvdxy = dxy;
  267.                 uvsrc_x = src_x;
  268.                 uvsrc_y = src_y;
  269.             }
  270.         }
  271.     }
  272.     ptr_y  = ref_picture[0] + src_y * linesize + src_x;
  273.     ptr_cb = ref_picture[1] + uvsrc_y * uvlinesize + uvsrc_x;
  274.     ptr_cr = ref_picture[2] + uvsrc_y * uvlinesize + uvsrc_x;
  275.     if(   (unsigned)src_x > s->h_edge_pos - (motion_x&1) - 16
  276.        || (unsigned)src_y >    v_edge_pos - (motion_y&1) - h){
  277.             if(is_mpeg12 || s->codec_id == CODEC_ID_MPEG2VIDEO ||
  278.                s->codec_id == CODEC_ID_MPEG1VIDEO){
  279.                 av_log(s->avctx,AV_LOG_DEBUG,
  280.                         "MPEG motion vector out of boundaryn");
  281.                 return ;
  282.             }
  283.             ff_emulated_edge_mc(s->edge_emu_buffer, ptr_y, s->linesize,
  284.                                 17, 17+field_based,
  285.                                 src_x, src_y<<field_based,
  286.                                 s->h_edge_pos, s->v_edge_pos);
  287.             ptr_y = s->edge_emu_buffer;
  288.             if(!ENABLE_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  289.                 uint8_t *uvbuf= s->edge_emu_buffer+18*s->linesize;
  290.                 ff_emulated_edge_mc(uvbuf ,
  291.                                     ptr_cb, s->uvlinesize,
  292.                                     9, 9+field_based,
  293.                                     uvsrc_x, uvsrc_y<<field_based,
  294.                                     s->h_edge_pos>>1, s->v_edge_pos>>1);
  295.                 ff_emulated_edge_mc(uvbuf+16,
  296.                                     ptr_cr, s->uvlinesize,
  297.                                     9, 9+field_based,
  298.                                     uvsrc_x, uvsrc_y<<field_based,
  299.                                     s->h_edge_pos>>1, s->v_edge_pos>>1);
  300.                 ptr_cb= uvbuf;
  301.                 ptr_cr= uvbuf+16;
  302.             }
  303.     }
  304.     if(bottom_field){ //FIXME use this for field pix too instead of the obnoxious hack which changes picture.data
  305.         dest_y += s->linesize;
  306.         dest_cb+= s->uvlinesize;
  307.         dest_cr+= s->uvlinesize;
  308.     }
  309.     if(field_select){
  310.         ptr_y += s->linesize;
  311.         ptr_cb+= s->uvlinesize;
  312.         ptr_cr+= s->uvlinesize;
  313.     }
  314.     pix_op[0][dxy](dest_y, ptr_y, linesize, h);
  315.     if(!ENABLE_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  316.         pix_op[s->chroma_x_shift][uvdxy]
  317.                 (dest_cb, ptr_cb, uvlinesize, h >> s->chroma_y_shift);
  318.         pix_op[s->chroma_x_shift][uvdxy]
  319.                 (dest_cr, ptr_cr, uvlinesize, h >> s->chroma_y_shift);
  320.     }
  321.     
  322. }
  323. /* apply one mpeg motion vector to the three components */
  324. static av_always_inline
  325. void mpeg_motion(MpegEncContext *s,
  326.                  uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  327.                  int field_based, int bottom_field, int field_select,
  328.                  uint8_t **ref_picture, op_pixels_func (*pix_op)[4],
  329.                  int motion_x, int motion_y, int h)
  330. {
  331. #ifndef CONFIG_SMALL
  332.     if(s->out_format == FMT_MPEG1)
  333.         mpeg_motion_internal(s, dest_y, dest_cb, dest_cr, field_based,
  334.                     bottom_field, field_select, ref_picture, pix_op,
  335.                     motion_x, motion_y, h, 1);
  336.     else
  337. #endif
  338.         mpeg_motion_internal(s, dest_y, dest_cb, dest_cr, field_based,
  339.                     bottom_field, field_select, ref_picture, pix_op,
  340.                     motion_x, motion_y, h, 0);
  341. }
  342. //FIXME move to dsputil, avg variant, 16x16 version
  343. static inline void put_obmc(uint8_t *dst, uint8_t *src[5], int stride){
  344.     int x;
  345.     uint8_t * const top   = src[1];
  346.     uint8_t * const left  = src[2];
  347.     uint8_t * const mid   = src[0];
  348.     uint8_t * const right = src[3];
  349.     uint8_t * const bottom= src[4];
  350. #define OBMC_FILTER(x, t, l, m, r, b)
  351.     dst[x]= (t*top[x] + l*left[x] + m*mid[x] + r*right[x] + b*bottom[x] + 4)>>3
  352. #define OBMC_FILTER4(x, t, l, m, r, b)
  353.     OBMC_FILTER(x         , t, l, m, r, b);
  354.     OBMC_FILTER(x+1       , t, l, m, r, b);
  355.     OBMC_FILTER(x  +stride, t, l, m, r, b);
  356.     OBMC_FILTER(x+1+stride, t, l, m, r, b);
  357.     x=0;
  358.     OBMC_FILTER (x  , 2, 2, 4, 0, 0);
  359.     OBMC_FILTER (x+1, 2, 1, 5, 0, 0);
  360.     OBMC_FILTER4(x+2, 2, 1, 5, 0, 0);
  361.     OBMC_FILTER4(x+4, 2, 0, 5, 1, 0);
  362.     OBMC_FILTER (x+6, 2, 0, 5, 1, 0);
  363.     OBMC_FILTER (x+7, 2, 0, 4, 2, 0);
  364.     x+= stride;
  365.     OBMC_FILTER (x  , 1, 2, 5, 0, 0);
  366.     OBMC_FILTER (x+1, 1, 2, 5, 0, 0);
  367.     OBMC_FILTER (x+6, 1, 0, 5, 2, 0);
  368.     OBMC_FILTER (x+7, 1, 0, 5, 2, 0);
  369.     x+= stride;
  370.     OBMC_FILTER4(x  , 1, 2, 5, 0, 0);
  371.     OBMC_FILTER4(x+2, 1, 1, 6, 0, 0);
  372.     OBMC_FILTER4(x+4, 1, 0, 6, 1, 0);
  373.     OBMC_FILTER4(x+6, 1, 0, 5, 2, 0);
  374.     x+= 2*stride;
  375.     OBMC_FILTER4(x  , 0, 2, 5, 0, 1);
  376.     OBMC_FILTER4(x+2, 0, 1, 6, 0, 1);
  377.     OBMC_FILTER4(x+4, 0, 0, 6, 1, 1);
  378.     OBMC_FILTER4(x+6, 0, 0, 5, 2, 1);
  379.     x+= 2*stride;
  380.     OBMC_FILTER (x  , 0, 2, 5, 0, 1);
  381.     OBMC_FILTER (x+1, 0, 2, 5, 0, 1);
  382.     OBMC_FILTER4(x+2, 0, 1, 5, 0, 2);
  383.     OBMC_FILTER4(x+4, 0, 0, 5, 1, 2);
  384.     OBMC_FILTER (x+6, 0, 0, 5, 2, 1);
  385.     OBMC_FILTER (x+7, 0, 0, 5, 2, 1);
  386.     x+= stride;
  387.     OBMC_FILTER (x  , 0, 2, 4, 0, 2);
  388.     OBMC_FILTER (x+1, 0, 1, 5, 0, 2);
  389.     OBMC_FILTER (x+6, 0, 0, 5, 1, 2);
  390.     OBMC_FILTER (x+7, 0, 0, 4, 2, 2);
  391. }
  392. /* obmc for 1 8x8 luma block */
  393. static inline void obmc_motion(MpegEncContext *s,
  394.                                uint8_t *dest, uint8_t *src,
  395.                                int src_x, int src_y,
  396.                                op_pixels_func *pix_op,
  397.                                int16_t mv[5][2]/* mid top left right bottom*/)
  398. #define MID    0
  399. {
  400.     int i;
  401.     uint8_t *ptr[5];
  402.     assert(s->quarter_sample==0);
  403.     for(i=0; i<5; i++){
  404.         if(i && mv[i][0]==mv[MID][0] && mv[i][1]==mv[MID][1]){
  405.             ptr[i]= ptr[MID];
  406.         }else{
  407.             ptr[i]= s->obmc_scratchpad + 8*(i&1) + s->linesize*8*(i>>1);
  408.             hpel_motion(s, ptr[i], src, 0, 0,
  409.                         src_x, src_y,
  410.                         s->width, s->height, s->linesize,
  411.                         s->h_edge_pos, s->v_edge_pos,
  412.                         8, 8, pix_op,
  413.                         mv[i][0], mv[i][1]);
  414.         }
  415.     }
  416.     put_obmc(dest, ptr, s->linesize);
  417. }
  418. static inline void qpel_motion(MpegEncContext *s,
  419.                                uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  420.                                int field_based, int bottom_field, int field_select,
  421.                                uint8_t **ref_picture, op_pixels_func (*pix_op)[4],
  422.                                qpel_mc_func (*qpix_op)[16],
  423.                                int motion_x, int motion_y, int h)
  424. {
  425.     uint8_t *ptr_y, *ptr_cb, *ptr_cr;
  426.     int dxy, uvdxy, mx, my, src_x, src_y, uvsrc_x, uvsrc_y, v_edge_pos, linesize, uvlinesize;
  427.     dxy = ((motion_y & 3) << 2) | (motion_x & 3);
  428.     src_x = s->mb_x *  16                 + (motion_x >> 2);
  429.     src_y = s->mb_y * (16 >> field_based) + (motion_y >> 2);
  430.     v_edge_pos = s->v_edge_pos >> field_based;
  431.     linesize = s->linesize << field_based;
  432.     uvlinesize = s->uvlinesize << field_based;
  433.     if(field_based){
  434.         mx= motion_x/2;
  435.         my= motion_y>>1;
  436.     }else if(s->workaround_bugs&FF_BUG_QPEL_CHROMA2){
  437.         static const int rtab[8]= {0,0,1,1,0,0,0,1};
  438.         mx= (motion_x>>1) + rtab[motion_x&7];
  439.         my= (motion_y>>1) + rtab[motion_y&7];
  440.     }else if(s->workaround_bugs&FF_BUG_QPEL_CHROMA){
  441.         mx= (motion_x>>1)|(motion_x&1);
  442.         my= (motion_y>>1)|(motion_y&1);
  443.     }else{
  444.         mx= motion_x/2;
  445.         my= motion_y/2;
  446.     }
  447.     mx= (mx>>1)|(mx&1);
  448.     my= (my>>1)|(my&1);
  449.     uvdxy= (mx&1) | ((my&1)<<1);
  450.     mx>>=1;
  451.     my>>=1;
  452.     uvsrc_x = s->mb_x *  8                 + mx;
  453.     uvsrc_y = s->mb_y * (8 >> field_based) + my;
  454.     ptr_y  = ref_picture[0] +   src_y *   linesize +   src_x;
  455.     ptr_cb = ref_picture[1] + uvsrc_y * uvlinesize + uvsrc_x;
  456.     ptr_cr = ref_picture[2] + uvsrc_y * uvlinesize + uvsrc_x;
  457.     if(   (unsigned)src_x > s->h_edge_pos - (motion_x&3) - 16
  458.        || (unsigned)src_y >    v_edge_pos - (motion_y&3) - h  ){
  459.         ff_emulated_edge_mc(s->edge_emu_buffer, ptr_y, s->linesize,
  460.                             17, 17+field_based, src_x, src_y<<field_based,
  461.                             s->h_edge_pos, s->v_edge_pos);
  462.         ptr_y= s->edge_emu_buffer;
  463.         if(!ENABLE_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  464.             uint8_t *uvbuf= s->edge_emu_buffer + 18*s->linesize;
  465.             ff_emulated_edge_mc(uvbuf, ptr_cb, s->uvlinesize,
  466.                                 9, 9 + field_based,
  467.                                 uvsrc_x, uvsrc_y<<field_based,
  468.                                 s->h_edge_pos>>1, s->v_edge_pos>>1);
  469.             ff_emulated_edge_mc(uvbuf + 16, ptr_cr, s->uvlinesize,
  470.                                 9, 9 + field_based,
  471.                                 uvsrc_x, uvsrc_y<<field_based,
  472.                                 s->h_edge_pos>>1, s->v_edge_pos>>1);
  473.             ptr_cb= uvbuf;
  474.             ptr_cr= uvbuf + 16;
  475.         }
  476.     }
  477.     if(!field_based)
  478.         qpix_op[0][dxy](dest_y, ptr_y, linesize);
  479.     else{
  480.         if(bottom_field){
  481.             dest_y += s->linesize;
  482.             dest_cb+= s->uvlinesize;
  483.             dest_cr+= s->uvlinesize;
  484.         }
  485.         if(field_select){
  486.             ptr_y  += s->linesize;
  487.             ptr_cb += s->uvlinesize;
  488.             ptr_cr += s->uvlinesize;
  489.         }
  490.         //damn interlaced mode
  491.         //FIXME boundary mirroring is not exactly correct here
  492.         qpix_op[1][dxy](dest_y  , ptr_y  , linesize);
  493.         qpix_op[1][dxy](dest_y+8, ptr_y+8, linesize);
  494.     }
  495.     if(!ENABLE_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  496.         pix_op[1][uvdxy](dest_cr, ptr_cr, uvlinesize, h >> 1);
  497.         pix_op[1][uvdxy](dest_cb, ptr_cb, uvlinesize, h >> 1);
  498.     }
  499. }
  500. /**
  501.  * h263 chroma 4mv motion compensation.
  502.  */
  503. static inline void chroma_4mv_motion(MpegEncContext *s,
  504.                                      uint8_t *dest_cb, uint8_t *dest_cr,
  505.                                      uint8_t **ref_picture,
  506.                                      op_pixels_func *pix_op,
  507.                                      int mx, int my){
  508.     int dxy, emu=0, src_x, src_y, offset;
  509.     uint8_t *ptr;
  510.     /* In case of 8X8, we construct a single chroma motion vector
  511.        with a special rounding */
  512.     mx= ff_h263_round_chroma(mx);
  513.     my= ff_h263_round_chroma(my);
  514.     dxy = ((my & 1) << 1) | (mx & 1);
  515.     mx >>= 1;
  516.     my >>= 1;
  517.     src_x = s->mb_x * 8 + mx;
  518.     src_y = s->mb_y * 8 + my;
  519.     src_x = av_clip(src_x, -8, s->width/2);
  520.     if (src_x == s->width/2)
  521.         dxy &= ~1;
  522.     src_y = av_clip(src_y, -8, s->height/2);
  523.     if (src_y == s->height/2)
  524.         dxy &= ~2;
  525.     offset = (src_y * (s->uvlinesize)) + src_x;
  526.     ptr = ref_picture[1] + offset;
  527.     if(s->flags&CODEC_FLAG_EMU_EDGE){
  528.         if(   (unsigned)src_x > (s->h_edge_pos>>1) - (dxy &1) - 8
  529.            || (unsigned)src_y > (s->v_edge_pos>>1) - (dxy>>1) - 8){
  530.             ff_emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize,
  531.                                 9, 9, src_x, src_y,
  532.                                 s->h_edge_pos>>1, s->v_edge_pos>>1);
  533.             ptr= s->edge_emu_buffer;
  534.             emu=1;
  535.         }
  536.     }
  537.     pix_op[dxy](dest_cb, ptr, s->uvlinesize, 8);
  538.     ptr = ref_picture[2] + offset;
  539.     if(emu){
  540.         ff_emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize,
  541.                             9, 9, src_x, src_y,
  542.                             s->h_edge_pos>>1, s->v_edge_pos>>1);
  543.         ptr= s->edge_emu_buffer;
  544.     }
  545.     pix_op[dxy](dest_cr, ptr, s->uvlinesize, 8);
  546. }
  547. static inline void prefetch_motion(MpegEncContext *s, uint8_t **pix, int dir){
  548.     /* fetch pixels for estimated mv 4 macroblocks ahead
  549.      * optimized for 64byte cache lines */
  550.     const int shift = s->quarter_sample ? 2 : 1;
  551.     const int mx= (s->mv[dir][0][0]>>shift) + 16*s->mb_x + 8;
  552.     const int my= (s->mv[dir][0][1]>>shift) + 16*s->mb_y;
  553.     int off= mx + (my + (s->mb_x&3)*4)*s->linesize + 64;
  554.     s->dsp.prefetch(pix[0]+off, s->linesize, 4);
  555.     off= (mx>>1) + ((my>>1) + (s->mb_x&7))*s->uvlinesize + 64;
  556.     s->dsp.prefetch(pix[1]+off, pix[2]-pix[1], 2);
  557. }
  558. /**
  559.  * motion compensation of a single macroblock
  560.  * @param s context
  561.  * @param dest_y luma destination pointer
  562.  * @param dest_cb chroma cb/u destination pointer
  563.  * @param dest_cr chroma cr/v destination pointer
  564.  * @param dir direction (0->forward, 1->backward)
  565.  * @param ref_picture array[3] of pointers to the 3 planes of the reference picture
  566.  * @param pic_op halfpel motion compensation function (average or put normally)
  567.  * @param pic_op qpel motion compensation function (average or put normally)
  568.  * the motion vectors are taken from s->mv and the MV type from s->mv_type
  569.  */
  570. static av_always_inline void MPV_motion_internal(MpegEncContext *s,
  571.                               uint8_t *dest_y, uint8_t *dest_cb,
  572.                               uint8_t *dest_cr, int dir,
  573.                               uint8_t **ref_picture,
  574.                               op_pixels_func (*pix_op)[4],
  575.                               qpel_mc_func (*qpix_op)[16], int is_mpeg12)
  576. {
  577.    
  578.    
  579. }
  580. static inline void MPV_motion(MpegEncContext *s,
  581.                               uint8_t *dest_y, uint8_t *dest_cb,
  582.                               uint8_t *dest_cr, int dir,
  583.                               uint8_t **ref_picture,
  584.                               op_pixels_func (*pix_op)[4],
  585.                               qpel_mc_func (*qpix_op)[16])
  586. {
  587. #ifndef CONFIG_SMALL
  588.     if(s->out_format == FMT_MPEG1)
  589.         MPV_motion_internal(s, dest_y, dest_cb, dest_cr, dir,
  590.                             ref_picture, pix_op, qpix_op, 1);
  591.     else
  592. #endif
  593.         MPV_motion_internal(s, dest_y, dest_cb, dest_cr, dir,
  594.                             ref_picture, pix_op, qpix_op, 0);
  595. }
  596. #endif /* FFMPEG_MPEGVIDEO_COMMON_H */