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"
e3fcb143
 #include "idctdsp.h"
925b80d6
 #include "mpegutils.h"
cc6de104
 #include "mpegvideo.h"
 #include "msmpeg4data.h"
1457ab52
 #include "simple_idct.h"
4d4f59d7
 #include "wmv2.h"
f9fbd474
 #include "wmv2data.h"
1457ab52
 
115329f1
 
eda7571e
 av_cold void ff_wmv2_common_init(Wmv2Context *w)
 {
     MpegEncContext *const s = &w->s;
115329f1
 
e74433a8
     ff_blockdsp_init(&s->bdsp, s->avctx);
e6bc38fd
     ff_wmv2dsp_init(&w->wdsp);
b4987f72
     s->idsp.perm_type = w->wdsp.idct_perm;
e3fcb143
     ff_init_scantable_permutation(s->idsp.idct_permutation,
e6bc38fd
                                   w->wdsp.idct_perm);
e3fcb143
     ff_init_scantable(s->idsp.idct_permutation, &w->abt_scantable[0],
e6bc38fd
                       ff_wmv2_scantableA);
e3fcb143
     ff_init_scantable(s->idsp.idct_permutation, &w->abt_scantable[1],
e6bc38fd
                       ff_wmv2_scantableB);
e3fcb143
     ff_init_scantable(s->idsp.idct_permutation, &s->intra_scantable,
e6bc38fd
                       ff_wmv1_scantable[1]);
e3fcb143
     ff_init_scantable(s->idsp.idct_permutation, &s->intra_h_scantable,
e6bc38fd
                       ff_wmv1_scantable[2]);
e3fcb143
     ff_init_scantable(s->idsp.idct_permutation, &s->intra_v_scantable,
e6bc38fd
                       ff_wmv1_scantable[3]);
e3fcb143
     ff_init_scantable(s->idsp.idct_permutation, &s->inter_scantable,
e6bc38fd
                       ff_wmv1_scantable[0]);
e3fcb143
     s->idsp.idct_put = w->wdsp.idct_put;
     s->idsp.idct_add = w->wdsp.idct_add;
     s->idsp.idct     = NULL;
1457ab52
 }
 
eda7571e
 static void wmv2_add_block(Wmv2Context *w, int16_t *block1,
                            uint8_t *dst, int stride, int n)
 {
     MpegEncContext *const s = &w->s;
 
     if (s->block_last_index[n] >= 0) {
         switch (w->abt_type_table[n]) {
         case 0:
             w->wdsp.idct_add(dst, stride, block1);
             break;
         case 1:
             ff_simple_idct84_add(dst, stride, block1);
             ff_simple_idct84_add(dst + 4 * stride, stride, w->abt_block2[n]);
             s->bdsp.clear_block(w->abt_block2[n]);
             break;
         case 2:
             ff_simple_idct48_add(dst, stride, block1);
             ff_simple_idct48_add(dst + 4, stride, w->abt_block2[n]);
             s->bdsp.clear_block(w->abt_block2[n]);
             break;
         default:
             av_log(s->avctx, AV_LOG_ERROR, "internal error in WMV2 abt\n");
         }
1457ab52
     }
 }
 
eda7571e
 void ff_wmv2_add_mb(MpegEncContext *s, int16_t block1[6][64],
                     uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr)
 {
     Wmv2Context *const w = (Wmv2Context *) s;
1457ab52
 
eda7571e
     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
 
7c6eb0a1
     if (s->avctx->flags & AV_CODEC_FLAG_GRAY)
eda7571e
         return;
115329f1
 
eda7571e
     wmv2_add_block(w, block1[4], dest_cb, s->uvlinesize, 4);
     wmv2_add_block(w, block1[5], dest_cr, s->uvlinesize, 5);
1457ab52
 }
 
eda7571e
 void ff_mspel_motion(MpegEncContext *s, uint8_t *dest_y,
                      uint8_t *dest_cb, uint8_t *dest_cr,
                      uint8_t **ref_picture, op_pixels_func (*pix_op)[4],
                      int motion_x, int motion_y, int h)
1457ab52
 {
eda7571e
     Wmv2Context *const w = (Wmv2Context *) s;
0c1a9eda
     uint8_t *ptr;
c341f734
     int dxy, mx, my, src_x, src_y, v_edge_pos;
     ptrdiff_t offset, linesize, uvlinesize;
eda7571e
     int emu = 0;
115329f1
 
eda7571e
     dxy   = ((motion_y & 1) << 1) | (motion_x & 1);
     dxy   = 2 * dxy + w->hshift;
1457ab52
     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;
eda7571e
     src_x      = av_clip(src_x, -16, s->width);
     src_y      = av_clip(src_y, -16, s->height);
bc9a4597
 
eda7571e
     if (src_x <= -16 || src_x >= s->width)
bc9a4597
         dxy &= ~3;
eda7571e
     if (src_y <= -16 || src_y >= s->height)
bc9a4597
         dxy &= ~4;
 
1457ab52
     linesize   = s->linesize;
     uvlinesize = s->uvlinesize;
eda7571e
     ptr        = ref_picture[0] + (src_y * linesize) + src_x;
 
     if (src_x < 1 || src_y < 1 || src_x + 17 >= s->h_edge_pos ||
         src_y + h + 1 >= v_edge_pos) {
da0c8664
         s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr - 1 - s->linesize,
eda7571e
                                  s->linesize, s->linesize, 19, 19,
ebfe622b
                                  src_x - 1, src_y - 1,
                                  s->h_edge_pos, s->v_edge_pos);
da0c8664
         ptr = s->sc.edge_emu_buffer + 1 + s->linesize;
eda7571e
         emu = 1;
1457ab52
     }
 
256da077
     w->wdsp.put_mspel_pixels_tab[dxy](dest_y,                    ptr,                    linesize);
     w->wdsp.put_mspel_pixels_tab[dxy](dest_y     + 8,            ptr     + 8,            linesize);
     w->wdsp.put_mspel_pixels_tab[dxy](dest_y     + 8 * linesize, ptr     + 8 * linesize, linesize);
     w->wdsp.put_mspel_pixels_tab[dxy](dest_y + 8 + 8 * linesize, ptr + 8 + 8 * linesize, linesize);
1457ab52
 
7c6eb0a1
     if (s->avctx->flags & AV_CODEC_FLAG_GRAY)
eda7571e
         return;
1457ab52
 
cf9050c7
     dxy = 0;
     if ((motion_x & 3) != 0)
         dxy |= 1;
     if ((motion_y & 3) != 0)
         dxy |= 2;
     mx = motion_x >> 2;
     my = motion_y >> 2;
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;
eda7571e
     ptr    = ref_picture[1] + offset;
     if (emu) {
da0c8664
         s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr,
458446ac
                                  s->uvlinesize, s->uvlinesize,
                                  9, 9,
                                  src_x, src_y,
                                  s->h_edge_pos >> 1, s->v_edge_pos >> 1);
da0c8664
         ptr = s->sc.edge_emu_buffer;
1457ab52
     }
     pix_op[1][dxy](dest_cb, ptr, uvlinesize, h >> 1);
 
     ptr = ref_picture[2] + offset;
eda7571e
     if (emu) {
da0c8664
         s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr,
458446ac
                                  s->uvlinesize, s->uvlinesize,
                                  9, 9,
                                  src_x, src_y,
                                  s->h_edge_pos >> 1, s->v_edge_pos >> 1);
da0c8664
         ptr = s->sc.edge_emu_buffer;
1457ab52
     }
     pix_op[1][dxy](dest_cr, ptr, uvlinesize, h >> 1);
 }