libavcodec/wmv2.c
1457ab52
 /*
406792e7
  * Copyright (c) 2002 The FFmpeg Project
1457ab52
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
1457ab52
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
1457ab52
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
1457ab52
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1457ab52
  */
 
cc6de104
 #include "avcodec.h"
 #include "mpegvideo.h"
 #include "msmpeg4data.h"
1457ab52
 #include "simple_idct.h"
4d4f59d7
 #include "wmv2.h"
1457ab52
 
115329f1
 
98a6fff9
 av_cold void ff_wmv2_common_init(Wmv2Context * w){
1457ab52
     MpegEncContext * const s= &w->s;
115329f1
 
3d2e8cce
     ff_init_scantable(s->dsp.idct_permutation, &w->abt_scantable[0], wmv2_scantableA);
     ff_init_scantable(s->dsp.idct_permutation, &w->abt_scantable[1], wmv2_scantableB);
1457ab52
 }
 
 static void wmv2_add_block(Wmv2Context *w, DCTELEM *block1, uint8_t *dst, int stride, int n){
     MpegEncContext * const s= &w->s;
0c1a9eda
 
1c02a973
   if (s->block_last_index[n] >= 0) {
1457ab52
     switch(w->abt_type_table[n]){
     case 0:
1c02a973
         s->dsp.idct_add (dst, stride, block1);
1457ab52
         break;
     case 1:
59e6f60a
         ff_simple_idct84_add(dst           , stride, block1);
         ff_simple_idct84_add(dst + 4*stride, stride, w->abt_block2[n]);
5fecfb7d
         s->dsp.clear_block(w->abt_block2[n]);
1457ab52
         break;
     case 2:
59e6f60a
         ff_simple_idct48_add(dst           , stride, block1);
         ff_simple_idct48_add(dst + 4       , stride, w->abt_block2[n]);
5fecfb7d
         s->dsp.clear_block(w->abt_block2[n]);
1457ab52
         break;
     default:
9b879566
         av_log(s->avctx, AV_LOG_ERROR, "internal error in WMV2 abt\n");
1457ab52
     }
1c02a973
   }
1457ab52
 }
 
 void ff_wmv2_add_mb(MpegEncContext *s, DCTELEM block1[6][64], uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr){
     Wmv2Context * const w= (Wmv2Context*)s;
 
     wmv2_add_block(w, block1[0], dest_y                    , s->linesize, 0);
     wmv2_add_block(w, block1[1], dest_y + 8                , s->linesize, 1);
     wmv2_add_block(w, block1[2], dest_y +     8*s->linesize, s->linesize, 2);
     wmv2_add_block(w, block1[3], dest_y + 8 + 8*s->linesize, s->linesize, 3);
115329f1
 
1457ab52
     if(s->flags&CODEC_FLAG_GRAY) return;
115329f1
 
1457ab52
     wmv2_add_block(w, block1[4], dest_cb                   , s->uvlinesize, 4);
     wmv2_add_block(w, block1[5], dest_cr                   , s->uvlinesize, 5);
 }
 
 void ff_mspel_motion(MpegEncContext *s,
0c1a9eda
                                uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
                                uint8_t **ref_picture, op_pixels_func (*pix_op)[4],
1457ab52
                                int motion_x, int motion_y, int h)
 {
     Wmv2Context * const w= (Wmv2Context*)s;
0c1a9eda
     uint8_t *ptr;
1457ab52
     int dxy, offset, mx, my, src_x, src_y, v_edge_pos, linesize, uvlinesize;
     int emu=0;
115329f1
 
1457ab52
     dxy = ((motion_y & 1) << 1) | (motion_x & 1);
     dxy = 2*dxy + w->hshift;
     src_x = s->mb_x * 16 + (motion_x >> 1);
     src_y = s->mb_y * 16 + (motion_y >> 1);
115329f1
 
1457ab52
     /* WARNING: do no forget half pels */
     v_edge_pos = s->v_edge_pos;
f66e4f5f
     src_x = av_clip(src_x, -16, s->width);
     src_y = av_clip(src_y, -16, s->height);
bc9a4597
 
     if(src_x<=-16 || src_x >= s->width)
         dxy &= ~3;
     if(src_y<=-16 || src_y >= s->height)
         dxy &= ~4;
 
1457ab52
     linesize   = s->linesize;
     uvlinesize = s->uvlinesize;
     ptr = ref_picture[0] + (src_y * linesize) + src_x;
 
     if(s->flags&CODEC_FLAG_EMU_EDGE){
         if(src_x<1 || src_y<1 || src_x + 17  >= s->h_edge_pos
                               || src_y + h+1 >= v_edge_pos){
d23e3e5f
             s->dsp.emulated_edge_mc(s->edge_emu_buffer, ptr - 1 - s->linesize, s->linesize, 19, 19,
1457ab52
                              src_x-1, src_y-1, s->h_edge_pos, s->v_edge_pos);
             ptr= s->edge_emu_buffer + 1 + s->linesize;
             emu=1;
         }
     }
 
     s->dsp.put_mspel_pixels_tab[dxy](dest_y             , ptr             , linesize);
     s->dsp.put_mspel_pixels_tab[dxy](dest_y+8           , ptr+8           , linesize);
     s->dsp.put_mspel_pixels_tab[dxy](dest_y  +8*linesize, ptr  +8*linesize, linesize);
     s->dsp.put_mspel_pixels_tab[dxy](dest_y+8+8*linesize, ptr+8+8*linesize, linesize);
 
     if(s->flags&CODEC_FLAG_GRAY) return;
 
     if (s->out_format == FMT_H263) {
         dxy = 0;
         if ((motion_x & 3) != 0)
             dxy |= 1;
         if ((motion_y & 3) != 0)
             dxy |= 2;
         mx = motion_x >> 2;
         my = motion_y >> 2;
     } else {
         mx = motion_x / 2;
         my = motion_y / 2;
         dxy = ((my & 1) << 1) | (mx & 1);
         mx >>= 1;
         my >>= 1;
     }
115329f1
 
1457ab52
     src_x = s->mb_x * 8 + mx;
     src_y = s->mb_y * 8 + my;
f66e4f5f
     src_x = av_clip(src_x, -8, s->width >> 1);
1457ab52
     if (src_x == (s->width >> 1))
         dxy &= ~1;
f66e4f5f
     src_y = av_clip(src_y, -8, s->height >> 1);
1457ab52
     if (src_y == (s->height >> 1))
         dxy &= ~2;
     offset = (src_y * uvlinesize) + src_x;
     ptr = ref_picture[1] + offset;
     if(emu){
d23e3e5f
         s->dsp.emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize, 9, 9,
1457ab52
                          src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1);
         ptr= s->edge_emu_buffer;
     }
     pix_op[1][dxy](dest_cb, ptr, uvlinesize, h >> 1);
 
     ptr = ref_picture[2] + offset;
     if(emu){
d23e3e5f
         s->dsp.emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize, 9, 9,
1457ab52
                          src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1);
         ptr= s->edge_emu_buffer;
     }
     pix_op[1][dxy](dest_cr, ptr, uvlinesize, h >> 1);
 }