FFmpeg
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
mpeg4video.c
Go to the documentation of this file.
1 /*
2  * MPEG-4 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 "mpegutils.h"
24 #include "mpegvideo.h"
25 #include "mpeg4video.h"
26 #include "mpeg4data.h"
27 
29  int f_code, int b_code)
30 {
31  switch (pict_type) {
32  case AV_PICTURE_TYPE_I:
33  return 16;
34  case AV_PICTURE_TYPE_P:
35  case AV_PICTURE_TYPE_S:
36  return f_code + 15;
37  case AV_PICTURE_TYPE_B:
38  return FFMAX3(f_code, b_code, 2) + 15;
39  default:
40  return -1;
41  }
42 }
43 
45 {
46  const int mb_height = s->mb_height;
47  int c_wrap, l_wrap, l_xy;
48 
49  l_wrap = s->b8_stride;
50  l_xy = (2 * s->mb_y - 1) * l_wrap + s->mb_x * 2 - 1;
51  c_wrap = s->mb_stride;
52  int u_xy = 2 * mb_height * l_wrap + s->mb_y * c_wrap + s->mb_x - 1;
53  int v_xy = u_xy + c_wrap * (mb_height + 1);
54  int16_t (*ac_val)[16] = s->ac_val;
55 
56  /* clean AC */
57  memset(ac_val + l_xy, 0, (l_wrap * 2 + 1) * sizeof(*ac_val));
58  memset(ac_val + u_xy, 0, (c_wrap + 1) * sizeof(*ac_val));
59  memset(ac_val + v_xy, 0, (c_wrap + 1) * sizeof(*ac_val));
60 
61  /* clean MV */
62  // we can't clear the MVs as they might be needed by a B-frame
63  s->last_mv[0][0][0] =
64  s->last_mv[0][0][1] =
65  s->last_mv[1][0][0] =
66  s->last_mv[1][0][1] = 0;
67 }
68 
69 #define tab_size ((signed)FF_ARRAY_ELEMS(s->direct_scale_mv[0]))
70 #define tab_bias (tab_size / 2)
71 
72 // used by MPEG-4 and rv10 decoder
74 {
75  int i;
76  for (i = 0; i < tab_size; i++) {
77  s->direct_scale_mv[0][i] = (i - tab_bias) * s->pb_time / s->pp_time;
78  s->direct_scale_mv[1][i] = (i - tab_bias) * (s->pb_time - s->pp_time) /
79  s->pp_time;
80  }
81 }
82 
83 static inline void ff_mpeg4_set_one_direct_mv(MpegEncContext *s, int mx,
84  int my, int i)
85 {
86  int xy = s->block_index[i];
87  uint16_t time_pp = s->pp_time;
88  uint16_t time_pb = s->pb_time;
89  int p_mx, p_my;
90 
91  p_mx = s->next_pic.motion_val[0][xy][0];
92  if ((unsigned)(p_mx + tab_bias) < tab_size) {
93  s->mv[0][i][0] = s->direct_scale_mv[0][p_mx + tab_bias] + mx;
94  s->mv[1][i][0] = mx ? s->mv[0][i][0] - p_mx
95  : s->direct_scale_mv[1][p_mx + tab_bias];
96  } else {
97  s->mv[0][i][0] = p_mx * time_pb / time_pp + mx;
98  s->mv[1][i][0] = mx ? s->mv[0][i][0] - p_mx
99  : p_mx * (time_pb - time_pp) / time_pp;
100  }
101  p_my = s->next_pic.motion_val[0][xy][1];
102  if ((unsigned)(p_my + tab_bias) < tab_size) {
103  s->mv[0][i][1] = s->direct_scale_mv[0][p_my + tab_bias] + my;
104  s->mv[1][i][1] = my ? s->mv[0][i][1] - p_my
105  : s->direct_scale_mv[1][p_my + tab_bias];
106  } else {
107  s->mv[0][i][1] = p_my * time_pb / time_pp + my;
108  s->mv[1][i][1] = my ? s->mv[0][i][1] - p_my
109  : p_my * (time_pb - time_pp) / time_pp;
110  }
111 }
112 
113 #undef tab_size
114 #undef tab_bias
115 
116 /**
117  * @return the mb_type
118  */
120 {
121  const int mb_index = s->mb_x + s->mb_y * s->mb_stride;
122  const int colocated_mb_type = s->next_pic.mb_type[mb_index];
123  uint16_t time_pp;
124  uint16_t time_pb;
125  int i;
126 
127  // FIXME avoid divides
128  // try special case with shifts for 1 and 3 B-frames?
129 
130  if (IS_8X8(colocated_mb_type)) {
131  s->mv_type = MV_TYPE_8X8;
132  for (i = 0; i < 4; i++)
135  } else if (IS_INTERLACED(colocated_mb_type)) {
136  s->mv_type = MV_TYPE_FIELD;
137  for (i = 0; i < 2; i++) {
138  int field_select = s->next_pic.ref_index[0][4 * mb_index + 2 * i];
139  s->field_select[0][i] = field_select;
140  s->field_select[1][i] = i;
141  if (s->top_field_first) {
142  time_pp = s->pp_field_time - field_select + i;
143  time_pb = s->pb_field_time - field_select + i;
144  } else {
145  time_pp = s->pp_field_time + field_select - i;
146  time_pb = s->pb_field_time + field_select - i;
147  }
148  s->mv[0][i][0] = s->p_field_mv_table[i][0][mb_index][0] *
149  time_pb / time_pp + mx;
150  s->mv[0][i][1] = s->p_field_mv_table[i][0][mb_index][1] *
151  time_pb / time_pp + my;
152  s->mv[1][i][0] = mx ? s->mv[0][i][0] -
153  s->p_field_mv_table[i][0][mb_index][0]
154  : s->p_field_mv_table[i][0][mb_index][0] *
155  (time_pb - time_pp) / time_pp;
156  s->mv[1][i][1] = my ? s->mv[0][i][1] -
157  s->p_field_mv_table[i][0][mb_index][1]
158  : s->p_field_mv_table[i][0][mb_index][1] *
159  (time_pb - time_pp) / time_pp;
160  }
161  return MB_TYPE_DIRECT2 | MB_TYPE_16x8 |
163  } else {
165  s->mv[0][1][0] =
166  s->mv[0][2][0] =
167  s->mv[0][3][0] = s->mv[0][0][0];
168  s->mv[0][1][1] =
169  s->mv[0][2][1] =
170  s->mv[0][3][1] = s->mv[0][0][1];
171  s->mv[1][1][0] =
172  s->mv[1][2][0] =
173  s->mv[1][3][0] = s->mv[1][0][0];
174  s->mv[1][1][1] =
175  s->mv[1][2][1] =
176  s->mv[1][3][1] = s->mv[1][0][1];
177  if ((s->avctx->workaround_bugs & FF_BUG_DIRECT_BLOCKSIZE) ||
178  !s->quarter_sample)
179  s->mv_type = MV_TYPE_16X16;
180  else
181  s->mv_type = MV_TYPE_8X8;
182  // Note see prev line
184  }
185 }
IS_8X8
#define IS_8X8(a)
Definition: mpegutils.h:83
MV_TYPE_16X16
#define MV_TYPE_16X16
1 vector for the whole mb
Definition: mpegvideo.h:185
AVPictureType
AVPictureType
Definition: avutil.h:276
MB_TYPE_16x8
#define MB_TYPE_16x8
Definition: mpegutils.h:42
MB_TYPE_16x16
#define MB_TYPE_16x16
Definition: mpegutils.h:41
mpegvideo.h
ff_mpeg4_get_video_packet_prefix_length
int ff_mpeg4_get_video_packet_prefix_length(enum AVPictureType pict_type, int f_code, int b_code)
Definition: mpeg4video.c:28
tab_size
#define tab_size
Definition: mpeg4video.c:69
mpegutils.h
mx
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t mx
Definition: dsp.h:57
ff_mpeg4_set_direct_mv
int ff_mpeg4_set_direct_mv(MpegEncContext *s, int mx, int my)
Definition: mpeg4video.c:119
tab_bias
#define tab_bias
Definition: mpeg4video.c:70
s
#define s(width, name)
Definition: cbs_vp9.c:198
ff_mpeg4_set_one_direct_mv
static void ff_mpeg4_set_one_direct_mv(MpegEncContext *s, int mx, int my, int i)
Definition: mpeg4video.c:83
FF_BUG_DIRECT_BLOCKSIZE
#define FF_BUG_DIRECT_BLOCKSIZE
Definition: avcodec.h:1336
my
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t my
Definition: dsp.h:57
MB_TYPE_8x8
#define MB_TYPE_8x8
Definition: mpegutils.h:44
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:278
IS_INTERLACED
#define IS_INTERLACED(a)
Definition: mpegutils.h:77
MB_TYPE_BIDIR_MV
#define MB_TYPE_BIDIR_MV
Definition: mpegutils.h:51
MV_TYPE_8X8
#define MV_TYPE_8X8
4 vectors (H.263, MPEG-4 4MV)
Definition: mpegvideo.h:186
ff_mpeg4_clean_buffers
void ff_mpeg4_clean_buffers(MpegEncContext *s)
Definition: mpeg4video.c:44
MB_TYPE_INTERLACED
#define MB_TYPE_INTERLACED
Definition: mpegutils.h:45
MV_TYPE_FIELD
#define MV_TYPE_FIELD
2 vectors, one per field
Definition: mpegvideo.h:188
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
ff_mpeg4_init_direct_mv
void ff_mpeg4_init_direct_mv(MpegEncContext *s)
Definition: mpeg4video.c:73
AV_PICTURE_TYPE_B
@ AV_PICTURE_TYPE_B
Bi-dir predicted.
Definition: avutil.h:280
mpeg4video.h
AV_PICTURE_TYPE_P
@ AV_PICTURE_TYPE_P
Predicted.
Definition: avutil.h:279
FFMAX3
#define FFMAX3(a, b, c)
Definition: macros.h:48
MB_TYPE_DIRECT2
#define MB_TYPE_DIRECT2
Definition: mpegutils.h:46
AV_PICTURE_TYPE_S
@ AV_PICTURE_TYPE_S
S(GMC)-VOP MPEG-4.
Definition: avutil.h:281
mpeg4data.h
MpegEncContext
MpegEncContext.
Definition: mpegvideo.h:64