mpeg4video.c
Go to the documentation of this file.
1 /*
2  * MPEG4 decoder / encoder common code.
3  * Copyright (c) 2000,2001 Fabrice Bellard
4  * Copyright (c) 2002-2010 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include "mpegvideo.h"
24 #include "mpeg4video.h"
25 #include "mpeg4data.h"
26 
28 
30  switch(s->pict_type){
31  case AV_PICTURE_TYPE_I:
32  return 16;
33  case AV_PICTURE_TYPE_P:
34  case AV_PICTURE_TYPE_S:
35  return s->f_code+15;
36  case AV_PICTURE_TYPE_B:
37  return FFMAX3(s->f_code, s->b_code, 2) + 15;
38  default:
39  return -1;
40  }
41 }
42 
44 {
45  int c_wrap, c_xy, l_wrap, l_xy;
46 
47  l_wrap= s->b8_stride;
48  l_xy= (2*s->mb_y-1)*l_wrap + s->mb_x*2 - 1;
49  c_wrap= s->mb_stride;
50  c_xy= (s->mb_y-1)*c_wrap + s->mb_x - 1;
51 
52 #if 0
53  /* clean DC */
54  memsetw(s->dc_val[0] + l_xy, 1024, l_wrap*2+1);
55  memsetw(s->dc_val[1] + c_xy, 1024, c_wrap+1);
56  memsetw(s->dc_val[2] + c_xy, 1024, c_wrap+1);
57 #endif
58 
59  /* clean AC */
60  memset(s->ac_val[0] + l_xy, 0, (l_wrap*2+1)*16*sizeof(int16_t));
61  memset(s->ac_val[1] + c_xy, 0, (c_wrap +1)*16*sizeof(int16_t));
62  memset(s->ac_val[2] + c_xy, 0, (c_wrap +1)*16*sizeof(int16_t));
63 
64  /* clean MV */
65  // we can't clear the MVs as they might be needed by a b frame
66 // memset(s->motion_val + l_xy, 0, (l_wrap*2+1)*2*sizeof(int16_t));
67 // memset(s->motion_val, 0, 2*sizeof(int16_t)*(2 + s->mb_width*2)*(2 + s->mb_height*2));
68  s->last_mv[0][0][0]=
69  s->last_mv[0][0][1]=
70  s->last_mv[1][0][0]=
71  s->last_mv[1][0][1]= 0;
72 }
73 
74 #define tab_size ((signed)FF_ARRAY_ELEMS(s->direct_scale_mv[0]))
75 #define tab_bias (tab_size/2)
76 
77 //used by mpeg4 and rv10 decoder
79  int i;
80  for(i=0; i<tab_size; i++){
81  s->direct_scale_mv[0][i] = (i-tab_bias)*s->pb_time/s->pp_time;
82  s->direct_scale_mv[1][i] = (i-tab_bias)*(s->pb_time-s->pp_time)/s->pp_time;
83  }
84 }
85 
86 static inline void ff_mpeg4_set_one_direct_mv(MpegEncContext *s, int mx, int my, int i){
87  int xy= s->block_index[i];
88  uint16_t time_pp= s->pp_time;
89  uint16_t time_pb= s->pb_time;
90  int p_mx, p_my;
91 
92  p_mx = s->next_picture.motion_val[0][xy][0];
93  if((unsigned)(p_mx + tab_bias) < tab_size){
94  s->mv[0][i][0] = s->direct_scale_mv[0][p_mx + tab_bias] + mx;
95  s->mv[1][i][0] = mx ? s->mv[0][i][0] - p_mx
96  : s->direct_scale_mv[1][p_mx + tab_bias];
97  }else{
98  s->mv[0][i][0] = p_mx*time_pb/time_pp + mx;
99  s->mv[1][i][0] = mx ? s->mv[0][i][0] - p_mx
100  : p_mx*(time_pb - time_pp)/time_pp;
101  }
102  p_my = s->next_picture.motion_val[0][xy][1];
103  if((unsigned)(p_my + tab_bias) < tab_size){
104  s->mv[0][i][1] = s->direct_scale_mv[0][p_my + tab_bias] + my;
105  s->mv[1][i][1] = my ? s->mv[0][i][1] - p_my
106  : s->direct_scale_mv[1][p_my + tab_bias];
107  }else{
108  s->mv[0][i][1] = p_my*time_pb/time_pp + my;
109  s->mv[1][i][1] = my ? s->mv[0][i][1] - p_my
110  : p_my*(time_pb - time_pp)/time_pp;
111  }
112 }
113 
114 #undef tab_size
115 #undef tab_bias
116 
117 /**
118  *
119  * @return the mb_type
120  */
122  const int mb_index= s->mb_x + s->mb_y*s->mb_stride;
123  const int colocated_mb_type = s->next_picture.mb_type[mb_index];
124  uint16_t time_pp;
125  uint16_t time_pb;
126  int i;
127 
128  //FIXME avoid divides
129  // try special case with shifts for 1 and 3 B-frames?
130 
131  if(IS_8X8(colocated_mb_type)){
132  s->mv_type = MV_TYPE_8X8;
133  for(i=0; i<4; i++){
134  ff_mpeg4_set_one_direct_mv(s, mx, my, i);
135  }
137  } else if(IS_INTERLACED(colocated_mb_type)){
138  s->mv_type = MV_TYPE_FIELD;
139  for(i=0; i<2; i++){
140  int field_select = s->next_picture.ref_index[0][4 * mb_index + 2 * i];
141  s->field_select[0][i]= field_select;
142  s->field_select[1][i]= i;
143  if(s->top_field_first){
144  time_pp= s->pp_field_time - field_select + i;
145  time_pb= s->pb_field_time - field_select + i;
146  }else{
147  time_pp= s->pp_field_time + field_select - i;
148  time_pb= s->pb_field_time + field_select - i;
149  }
150  s->mv[0][i][0] = s->p_field_mv_table[i][0][mb_index][0]*time_pb/time_pp + mx;
151  s->mv[0][i][1] = s->p_field_mv_table[i][0][mb_index][1]*time_pb/time_pp + my;
152  s->mv[1][i][0] = mx ? s->mv[0][i][0] - s->p_field_mv_table[i][0][mb_index][0]
153  : s->p_field_mv_table[i][0][mb_index][0]*(time_pb - time_pp)/time_pp;
154  s->mv[1][i][1] = my ? s->mv[0][i][1] - s->p_field_mv_table[i][0][mb_index][1]
155  : s->p_field_mv_table[i][0][mb_index][1]*(time_pb - time_pp)/time_pp;
156  }
158  }else{
159  ff_mpeg4_set_one_direct_mv(s, mx, my, 0);
160  s->mv[0][1][0] = s->mv[0][2][0] = s->mv[0][3][0] = s->mv[0][0][0];
161  s->mv[0][1][1] = s->mv[0][2][1] = s->mv[0][3][1] = s->mv[0][0][1];
162  s->mv[1][1][0] = s->mv[1][2][0] = s->mv[1][3][0] = s->mv[1][0][0];
163  s->mv[1][1][1] = s->mv[1][2][1] = s->mv[1][3][1] = s->mv[1][0][1];
166  else
167  s->mv_type= MV_TYPE_8X8;
168  return MB_TYPE_DIRECT2 | MB_TYPE_16x16 | MB_TYPE_L0L1; //Note see prev line
169  }
170 }
int8_t * ref_index[2]
Definition: mpegvideo.h:114
const char * s
Definition: avisynth_c.h:668
S(GMC)-VOP MPEG4.
Definition: avutil.h:219
#define MV_TYPE_FIELD
2 vectors, one per field
Definition: mpegvideo.h:424
int last_mv[2][2][2]
last MV, used for MV prediction in MPEG1 & B-frame MPEG4
Definition: mpegvideo.h:433
int16_t(*[3] ac_val)[16]
used for for mpeg4 AC prediction, all 3 arrays must be continuous
Definition: mpegvideo.h:357
#define tab_bias
Definition: mpeg4video.c:75
int16_t(*[2][2] p_field_mv_table)[2]
MV table (2MV per MB) interlaced p-frame encoding.
Definition: mpegvideo.h:411
mpegvideo header.
int field_select[2][2]
Definition: mpegvideo.h:432
void ff_mpeg4_clean_buffers(MpegEncContext *s)
Definition: mpeg4video.c:43
uint8_t
mpeg4 tables.
uint16_t pp_time
time distance between the last 2 p,s,i frames
Definition: mpegvideo.h:560
#define MAX_LEVEL
Definition: rl.h:35
#define IS_INTERLACED(a)
Definition: mpegvideo.h:142
#define FF_BUG_DIRECT_BLOCKSIZE
int16_t * dc_val[3]
used for mpeg4 DC prediction, all 3 arrays must be continuous
Definition: mpegvideo.h:350
int16_t direct_scale_mv[2][64]
precomputed to avoid divisions in ff_mpeg4_set_direct_mv
Definition: mpegvideo.h:435
static void memsetw(short *tab, int val, int n)
Definition: h263.h:205
void ff_mpeg4_init_direct_mv(MpegEncContext *s)
Definition: mpeg4video.c:78
int quarter_sample
1->qpel, 0->half pel ME/MC
Definition: mpegvideo.h:579
uint8_t ff_mpeg4_static_rl_table_store[3][2][2 *MAX_RUN+MAX_LEVEL+3]
Definition: mpeg4video.c:27
#define IS_8X8(a)
Definition: mpegvideo.h:148
int top_field_first
Definition: mpegvideo.h:668
#define MB_TYPE_DIRECT2
#define MB_TYPE_INTERLACED
int16_t(*[2] motion_val)[2]
Definition: mpegvideo.h:105
#define MB_TYPE_L0L1
int block_index[6]
index to current MB in block based arrays with edges
Definition: mpegvideo.h:465
#define MV_TYPE_16X16
1 vector for the whole mb
Definition: mpegvideo.h:421
synthesis window for stochastic i
#define MB_TYPE_16x16
int f_code
forward MV resolution
Definition: mpegvideo.h:395
int ff_mpeg4_set_direct_mv(MpegEncContext *s, int mx, int my)
Definition: mpeg4video.c:121
int pict_type
AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B, ...
Definition: mpegvideo.h:377
int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s)
Definition: mpeg4video.c:29
uint16_t pb_field_time
like above, just for interlaced
Definition: mpegvideo.h:563
int mv[2][4][2]
motion vectors for a macroblock first coordinate : 0 = forward 1 = backward second " : depend...
Definition: mpegvideo.h:431
int b8_stride
2*mb_width+1 used for some 8x8 block arrays to allow simple addressing
Definition: mpegvideo.h:279
MpegEncContext.
Definition: mpegvideo.h:241
#define MAX_RUN
Definition: rl.h:34
struct AVCodecContext * avctx
Definition: mpegvideo.h:243
uint16_t pp_field_time
Definition: mpegvideo.h:562
int mb_stride
mb_width+1 used for some arrays to allow simple addressing of left & top MBs without sig11 ...
Definition: mpegvideo.h:278
static void ff_mpeg4_set_one_direct_mv(MpegEncContext *s, int mx, int my, int i)
Definition: mpeg4video.c:86
#define tab_size
Definition: mpeg4video.c:74
#define MB_TYPE_8x8
Bi-dir predicted.
Definition: avutil.h:218
int workaround_bugs
Work around bugs in encoders which sometimes cannot be detected automatically.
#define MB_TYPE_16x8
Picture next_picture
copy of the next picture structure.
Definition: mpegvideo.h:331
uint32_t * mb_type
Definition: mpegvideo.h:108
#define MV_TYPE_8X8
4 vectors (h263, mpeg4 4MV)
Definition: mpegvideo.h:422
int b_code
backward MV resolution for B Frames (mpeg4)
Definition: mpegvideo.h:396
#define FFMAX3(a, b, c)
Definition: common.h:57
Predicted.
Definition: avutil.h:217
uint16_t pb_time
time distance between the last b and p,s,i frame
Definition: mpegvideo.h:561