wmv2.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002 The FFmpeg Project
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include "avcodec.h"
22 #include "mpegvideo.h"
23 #include "msmpeg4data.h"
24 #include "simple_idct.h"
25 #include "wmv2.h"
26 
27 
29  MpegEncContext * const s= &w->s;
30 
31  ff_wmv2dsp_init(&w->wdsp);
34  w->wdsp.idct_perm);
47  s->dsp.idct_put = w->wdsp.idct_put;
48  s->dsp.idct_add = w->wdsp.idct_add;
49  s->dsp.idct = NULL;
50 }
51 
52 static void wmv2_add_block(Wmv2Context *w, int16_t *block1, uint8_t *dst, int stride, int n){
53  MpegEncContext * const s= &w->s;
54 
55  if (s->block_last_index[n] >= 0) {
56  switch(w->abt_type_table[n]){
57  case 0:
58  w->wdsp.idct_add(dst, stride, block1);
59  break;
60  case 1:
61  ff_simple_idct84_add(dst , stride, block1);
62  ff_simple_idct84_add(dst + 4*stride, stride, w->abt_block2[n]);
63  s->dsp.clear_block(w->abt_block2[n]);
64  break;
65  case 2:
66  ff_simple_idct48_add(dst , stride, block1);
67  ff_simple_idct48_add(dst + 4 , stride, w->abt_block2[n]);
68  s->dsp.clear_block(w->abt_block2[n]);
69  break;
70  default:
71  av_log(s->avctx, AV_LOG_ERROR, "internal error in WMV2 abt\n");
72  }
73  }
74 }
75 
76 void ff_wmv2_add_mb(MpegEncContext *s, int16_t block1[6][64], uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr){
77  Wmv2Context * const w= (Wmv2Context*)s;
78 
79  wmv2_add_block(w, block1[0], dest_y , s->linesize, 0);
80  wmv2_add_block(w, block1[1], dest_y + 8 , s->linesize, 1);
81  wmv2_add_block(w, block1[2], dest_y + 8*s->linesize, s->linesize, 2);
82  wmv2_add_block(w, block1[3], dest_y + 8 + 8*s->linesize, s->linesize, 3);
83 
84  if(s->flags&CODEC_FLAG_GRAY) return;
85 
86  wmv2_add_block(w, block1[4], dest_cb , s->uvlinesize, 4);
87  wmv2_add_block(w, block1[5], dest_cr , s->uvlinesize, 5);
88 }
89 
91  uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
92  uint8_t **ref_picture, op_pixels_func (*pix_op)[4],
93  int motion_x, int motion_y, int h)
94 {
95  Wmv2Context * const w= (Wmv2Context*)s;
96  uint8_t *ptr;
97  int dxy, offset, mx, my, src_x, src_y, v_edge_pos, linesize, uvlinesize;
98  int emu=0;
99 
100  dxy = ((motion_y & 1) << 1) | (motion_x & 1);
101  dxy = 2*dxy + w->hshift;
102  src_x = s->mb_x * 16 + (motion_x >> 1);
103  src_y = s->mb_y * 16 + (motion_y >> 1);
104 
105  /* WARNING: do no forget half pels */
106  v_edge_pos = s->v_edge_pos;
107  src_x = av_clip(src_x, -16, s->width);
108  src_y = av_clip(src_y, -16, s->height);
109 
110  if(src_x<=-16 || src_x >= s->width)
111  dxy &= ~3;
112  if(src_y<=-16 || src_y >= s->height)
113  dxy &= ~4;
114 
115  linesize = s->linesize;
116  uvlinesize = s->uvlinesize;
117  ptr = ref_picture[0] + (src_y * linesize) + src_x;
118 
119  if(src_x<1 || src_y<1 || src_x + 17 >= s->h_edge_pos
120  || src_y + h+1 >= v_edge_pos){
121  s->vdsp.emulated_edge_mc(s->edge_emu_buffer, ptr - 1 - s->linesize, s->linesize, 19, 19,
122  src_x-1, src_y-1, s->h_edge_pos, s->v_edge_pos);
123  ptr= s->edge_emu_buffer + 1 + s->linesize;
124  emu=1;
125  }
126 
127  s->dsp.put_mspel_pixels_tab[dxy](dest_y , ptr , linesize);
128  s->dsp.put_mspel_pixels_tab[dxy](dest_y+8 , ptr+8 , linesize);
129  s->dsp.put_mspel_pixels_tab[dxy](dest_y +8*linesize, ptr +8*linesize, linesize);
130  s->dsp.put_mspel_pixels_tab[dxy](dest_y+8+8*linesize, ptr+8+8*linesize, linesize);
131 
132  if(s->flags&CODEC_FLAG_GRAY) return;
133 
134  if (s->out_format == FMT_H263) {
135  dxy = 0;
136  if ((motion_x & 3) != 0)
137  dxy |= 1;
138  if ((motion_y & 3) != 0)
139  dxy |= 2;
140  mx = motion_x >> 2;
141  my = motion_y >> 2;
142  } else {
143  mx = motion_x / 2;
144  my = motion_y / 2;
145  dxy = ((my & 1) << 1) | (mx & 1);
146  mx >>= 1;
147  my >>= 1;
148  }
149 
150  src_x = s->mb_x * 8 + mx;
151  src_y = s->mb_y * 8 + my;
152  src_x = av_clip(src_x, -8, s->width >> 1);
153  if (src_x == (s->width >> 1))
154  dxy &= ~1;
155  src_y = av_clip(src_y, -8, s->height >> 1);
156  if (src_y == (s->height >> 1))
157  dxy &= ~2;
158  offset = (src_y * uvlinesize) + src_x;
159  ptr = ref_picture[1] + offset;
160  if(emu){
161  s->vdsp.emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize, 9, 9,
162  src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1);
163  ptr= s->edge_emu_buffer;
164  }
165  pix_op[1][dxy](dest_cb, ptr, uvlinesize, h >> 1);
166 
167  ptr = ref_picture[2] + offset;
168  if(emu){
169  s->vdsp.emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize, 9, 9,
170  src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1);
171  ptr= s->edge_emu_buffer;
172  }
173  pix_op[1][dxy](dest_cr, ptr, uvlinesize, h >> 1);
174 }
const char * s
Definition: avisynth_c.h:668
void ff_wmv2_add_mb(MpegEncContext *s, int16_t block1[6][64], uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr)
Definition: wmv2.c:76
ScanTable intra_v_scantable
Definition: mpegvideo.h:298
void ff_simple_idct84_add(uint8_t *dest, int line_size, int16_t *block)
Definition: simple_idct.c:176
int v_edge_pos
horizontal / vertical position of the right/bottom edge (pixel replication)
Definition: mpegvideo.h:281
int abt_type_table[6]
Definition: wmv2.h:43
mpegvideo header.
void(* clear_block)(int16_t *block)
Definition: dsputil.h:145
int stride
Definition: mace.c:144
output residual component w
uint8_t
#define av_cold
Definition: attributes.h:78
int idct_perm
Definition: wmv2dsp.h:28
enum OutputFormat out_format
output format
Definition: mpegvideo.h:249
MSMPEG4 data tables.
uint8_t idct_permutation[64]
idct input permutation.
Definition: dsputil.h:249
MpegEncContext s
Definition: wmv2.h:36
qpel_mc_func put_mspel_pixels_tab[8]
Definition: dsputil.h:192
void(* idct_put)(uint8_t *dest, int line_size, int16_t *block)
Definition: wmv2dsp.h:26
static void wmv2_add_block(Wmv2Context *w, int16_t *block1, uint8_t *dst, int stride, int n)
Definition: wmv2.c:52
uint8_t * edge_emu_buffer
temporary buffer for if MVs point to out-of-frame data
Definition: mpegvideo.h:364
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
av_cold void ff_wmv2dsp_init(WMV2DSPContext *c)
Definition: wmv2dsp.c:141
static const uint8_t offset[127][2]
Definition: vf_spp.c:70
external API header
const uint8_t ff_wmv2_scantableB[64]
Definition: msmpeg4data.c:2000
const uint8_t ff_wmv1_scantable[WMV1_SCANTABLE_COUNT][64]
Definition: msmpeg4data.c:1831
ScanTable abt_scantable[2]
Definition: wmv2.h:53
void ff_simple_idct48_add(uint8_t *dest, int line_size, int16_t *block)
Definition: simple_idct.c:191
int block_last_index[12]
last non zero coefficient in block
Definition: mpegvideo.h:291
NULL
Definition: eval.c:55
int idct_permutation_type
Definition: dsputil.h:250
void(* idct_add)(uint8_t *dest, int line_size, int16_t *block)
block -> idct -> add dest -> clip to unsigned 8 bit -> dest.
Definition: dsputil.h:235
ScanTable intra_scantable
Definition: mpegvideo.h:296
const uint8_t ff_wmv2_scantableA[64]
Definition: msmpeg4data.c:1993
int height
picture size. must be a multiple of 16
Definition: mpegvideo.h:245
void(* op_pixels_func)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
Definition: hpeldsp.h:38
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
ScanTable intra_h_scantable
Definition: mpegvideo.h:297
DSPContext dsp
pointers for accelerated dsp functions
Definition: mpegvideo.h:391
void ff_init_scantable_permutation(uint8_t *idct_permutation, int idct_permutation_type)
Definition: dsputil.c:131
void(* idct)(int16_t *block)
Definition: dsputil.h:222
MpegEncContext.
Definition: mpegvideo.h:241
struct AVCodecContext * avctx
Definition: mpegvideo.h:243
#define CODEC_FLAG_GRAY
Only decode/encode grayscale.
void(* idct_add)(uint8_t *dest, int line_size, int16_t *block)
Definition: wmv2dsp.h:25
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)
Definition: wmv2.c:90
WMV2DSPContext wdsp
Definition: wmv2.h:38
void(* idct_put)(uint8_t *dest, int line_size, int16_t *block)
block -> idct -> clip to unsigned 8 bit -> dest.
Definition: dsputil.h:229
int hshift
Definition: wmv2.h:51
void(* emulated_edge_mc)(uint8_t *buf, const uint8_t *src, ptrdiff_t linesize, int block_w, int block_h, int src_x, int src_y, int w, int h)
Copy a rectangular area of samples to a temporary buffer and replicate the border samples...
Definition: videodsp.h:58
VideoDSPContext vdsp
Definition: mpegvideo.h:394
simple idct header.
void ff_init_scantable(uint8_t *permutation, ScanTable *st, const uint8_t *src_scantable)
Definition: dsputil.c:110
av_cold void ff_wmv2_common_init(Wmv2Context *w)
Definition: wmv2.c:28
else dst[i][x+y *dst_stride[i]]
Definition: vf_mcdeint.c:160
int linesize
line size, in bytes, may be different from width
Definition: mpegvideo.h:283
int flags
AVCodecContext.flags (HQ, MV4, ...)
Definition: mpegvideo.h:260
ScanTable inter_scantable
if inter == intra then intra should be used to reduce tha cache usage
Definition: mpegvideo.h:295
static int ref_picture(H264Context *h, Picture *dst, Picture *src)
Definition: h264.c:225
int uvlinesize
line size, for chroma in bytes, may be different from width
Definition: mpegvideo.h:284