2 * H263/MPEG4 backend for encoder and decoder
3 * Copyright (c) 2000,2001 Fabrice Bellard
5 * Copyright (c) 2001 Juan J. Sierralta P
6 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
8 * This file is part of FFmpeg.
10 * FFmpeg is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * FFmpeg is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with FFmpeg; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
33 #include "mpegvideo.h"
37 #include "mpegutils.h"
40 #include "mpeg4video.h"
43 uint8_t ff_h263_static_rl_table_store
[2][2][2*MAX_RUN
+ MAX_LEVEL
+ 3];
46 void ff_h263_update_motion_val(MpegEncContext
* s
){
47 const int mb_xy
= s
->mb_y
* s
->mb_stride
+ s
->mb_x
;
48 //FIXME a lot of that is only needed for !low_delay
49 const int wrap
= s
->b8_stride
;
50 const int xy
= s
->block_index
[0];
52 s
->current_picture
.mbskip_table
[mb_xy
] = s
->mb_skipped
;
54 if(s
->mv_type
!= MV_TYPE_8X8
){
55 int motion_x
, motion_y
;
59 } else if (s
->mv_type
== MV_TYPE_16X16
) {
60 motion_x
= s
->mv
[0][0][0];
61 motion_y
= s
->mv
[0][0][1];
62 } else /*if (s->mv_type == MV_TYPE_FIELD)*/ {
64 motion_x
= s
->mv
[0][0][0] + s
->mv
[0][1][0];
65 motion_y
= s
->mv
[0][0][1] + s
->mv
[0][1][1];
66 motion_x
= (motion_x
>>1) | (motion_x
&1);
68 s
->p_field_mv_table
[i
][0][mb_xy
][0]= s
->mv
[0][i
][0];
69 s
->p_field_mv_table
[i
][0][mb_xy
][1]= s
->mv
[0][i
][1];
71 s
->current_picture
.ref_index
[0][4*mb_xy
] =
72 s
->current_picture
.ref_index
[0][4*mb_xy
+ 1] = s
->field_select
[0][0];
73 s
->current_picture
.ref_index
[0][4*mb_xy
+ 2] =
74 s
->current_picture
.ref_index
[0][4*mb_xy
+ 3] = s
->field_select
[0][1];
77 /* no update if 8X8 because it has been done during parsing */
78 s
->current_picture
.motion_val
[0][xy
][0] = motion_x
;
79 s
->current_picture
.motion_val
[0][xy
][1] = motion_y
;
80 s
->current_picture
.motion_val
[0][xy
+ 1][0] = motion_x
;
81 s
->current_picture
.motion_val
[0][xy
+ 1][1] = motion_y
;
82 s
->current_picture
.motion_val
[0][xy
+ wrap
][0] = motion_x
;
83 s
->current_picture
.motion_val
[0][xy
+ wrap
][1] = motion_y
;
84 s
->current_picture
.motion_val
[0][xy
+ 1 + wrap
][0] = motion_x
;
85 s
->current_picture
.motion_val
[0][xy
+ 1 + wrap
][1] = motion_y
;
88 if(s
->encoding
){ //FIXME encoding MUST be cleaned up
89 if (s
->mv_type
== MV_TYPE_8X8
)
90 s
->current_picture
.mb_type
[mb_xy
] = MB_TYPE_L0
| MB_TYPE_8x8
;
92 s
->current_picture
.mb_type
[mb_xy
] = MB_TYPE_INTRA
;
94 s
->current_picture
.mb_type
[mb_xy
] = MB_TYPE_L0
| MB_TYPE_16x16
;
98 int ff_h263_pred_dc(MpegEncContext
* s
, int n
, int16_t **dc_val_ptr
)
100 int x
, y
, wrap
, a
, c
, pred_dc
;
103 /* find prediction */
105 x
= 2 * s
->mb_x
+ (n
& 1);
106 y
= 2 * s
->mb_y
+ ((n
& 2) >> 1);
108 dc_val
= s
->dc_val
[0];
113 dc_val
= s
->dc_val
[n
- 4 + 1];
118 a
= dc_val
[(x
- 1) + (y
) * wrap
];
119 c
= dc_val
[(x
) + (y
- 1) * wrap
];
121 /* No prediction outside GOB boundary */
122 if(s
->first_slice_line
&& n
!=3){
124 if(n
!=1 && s
->mb_x
== s
->resync_mb_x
) a
= 1024;
126 /* just DC prediction */
127 if (a
!= 1024 && c
!= 1024)
128 pred_dc
= (a
+ c
) >> 1;
134 /* we assume pred is positive */
135 *dc_val_ptr
= &dc_val
[x
+ y
* wrap
];
139 void ff_h263_loop_filter(MpegEncContext
* s
){
141 const int linesize
= s
->linesize
;
142 const int uvlinesize
= s
->uvlinesize
;
143 const int xy
= s
->mb_y
* s
->mb_stride
+ s
->mb_x
;
144 uint8_t *dest_y
= s
->dest
[0];
145 uint8_t *dest_cb
= s
->dest
[1];
146 uint8_t *dest_cr
= s
->dest
[2];
148 // if(s->pict_type==AV_PICTURE_TYPE_B && !s->readable) return;
154 if (!IS_SKIP(s
->current_picture
.mb_type
[xy
])) {
156 s
->h263dsp
.h263_v_loop_filter(dest_y
+ 8 * linesize
, linesize
, qp_c
);
157 s
->h263dsp
.h263_v_loop_filter(dest_y
+ 8 * linesize
+ 8, linesize
, qp_c
);
162 int qp_dt
, qp_tt
, qp_tc
;
164 if (IS_SKIP(s
->current_picture
.mb_type
[xy
- s
->mb_stride
]))
167 qp_tt
= s
->current_picture
.qscale_table
[xy
- s
->mb_stride
];
175 const int chroma_qp
= s
->chroma_qscale_table
[qp_tc
];
176 s
->h263dsp
.h263_v_loop_filter(dest_y
, linesize
, qp_tc
);
177 s
->h263dsp
.h263_v_loop_filter(dest_y
+ 8, linesize
, qp_tc
);
179 s
->h263dsp
.h263_v_loop_filter(dest_cb
, uvlinesize
, chroma_qp
);
180 s
->h263dsp
.h263_v_loop_filter(dest_cr
, uvlinesize
, chroma_qp
);
184 s
->h263dsp
.h263_h_loop_filter(dest_y
- 8 * linesize
+ 8, linesize
, qp_tt
);
187 if (qp_tt
|| IS_SKIP(s
->current_picture
.mb_type
[xy
- 1 - s
->mb_stride
]))
190 qp_dt
= s
->current_picture
.qscale_table
[xy
- 1 - s
->mb_stride
];
193 const int chroma_qp
= s
->chroma_qscale_table
[qp_dt
];
194 s
->h263dsp
.h263_h_loop_filter(dest_y
- 8 * linesize
, linesize
, qp_dt
);
195 s
->h263dsp
.h263_h_loop_filter(dest_cb
- 8 * uvlinesize
, uvlinesize
, chroma_qp
);
196 s
->h263dsp
.h263_h_loop_filter(dest_cr
- 8 * uvlinesize
, uvlinesize
, chroma_qp
);
202 s
->h263dsp
.h263_h_loop_filter(dest_y
+ 8, linesize
, qp_c
);
203 if(s
->mb_y
+ 1 == s
->mb_height
)
204 s
->h263dsp
.h263_h_loop_filter(dest_y
+ 8 * linesize
+ 8, linesize
, qp_c
);
209 if (qp_c
|| IS_SKIP(s
->current_picture
.mb_type
[xy
- 1]))
212 qp_lc
= s
->current_picture
.qscale_table
[xy
- 1];
215 s
->h263dsp
.h263_h_loop_filter(dest_y
, linesize
, qp_lc
);
216 if(s
->mb_y
+ 1 == s
->mb_height
){
217 const int chroma_qp
= s
->chroma_qscale_table
[qp_lc
];
218 s
->h263dsp
.h263_h_loop_filter(dest_y
+ 8 * linesize
, linesize
, qp_lc
);
219 s
->h263dsp
.h263_h_loop_filter(dest_cb
, uvlinesize
, chroma_qp
);
220 s
->h263dsp
.h263_h_loop_filter(dest_cr
, uvlinesize
, chroma_qp
);
226 void ff_h263_pred_acdc(MpegEncContext
* s
, int16_t *block
, int n
)
228 int x
, y
, wrap
, a
, c
, pred_dc
, scale
, i
;
229 int16_t *dc_val
, *ac_val
, *ac_val1
;
231 /* find prediction */
233 x
= 2 * s
->mb_x
+ (n
& 1);
234 y
= 2 * s
->mb_y
+ (n
>> 1);
236 dc_val
= s
->dc_val
[0];
237 ac_val
= s
->ac_val
[0][0];
238 scale
= s
->y_dc_scale
;
243 dc_val
= s
->dc_val
[n
- 4 + 1];
244 ac_val
= s
->ac_val
[n
- 4 + 1][0];
245 scale
= s
->c_dc_scale
;
248 ac_val
+= ((y
) * wrap
+ (x
)) * 16;
254 a
= dc_val
[(x
- 1) + (y
) * wrap
];
255 c
= dc_val
[(x
) + (y
- 1) * wrap
];
257 /* No prediction outside GOB boundary */
258 if(s
->first_slice_line
&& n
!=3){
260 if(n
!=1 && s
->mb_x
== s
->resync_mb_x
) a
= 1024;
265 if (s
->h263_aic_dir
) {
266 /* left prediction */
270 block
[s
->idsp
.idct_permutation
[i
<< 3]] += ac_val
[i
];
279 block
[s
->idsp
.idct_permutation
[i
]] += ac_val
[i
+ 8];
285 /* just DC prediction */
286 if (a
!= 1024 && c
!= 1024)
287 pred_dc
= (a
+ c
) >> 1;
294 /* we assume pred is positive */
295 block
[0]=block
[0]*scale
+ pred_dc
;
302 /* Update AC/DC tables */
303 dc_val
[(x
) + (y
) * wrap
] = block
[0];
307 ac_val1
[i
] = block
[s
->idsp
.idct_permutation
[i
<< 3]];
310 ac_val1
[8 + i
] = block
[s
->idsp
.idct_permutation
[i
]];
313 int16_t *ff_h263_pred_motion(MpegEncContext
* s
, int block
, int dir
,
317 int16_t *A
, *B
, *C
, (*mot_val
)[2];
318 static const int off
[4]= {2, 1, 1, -1};
321 mot_val
= s
->current_picture
.motion_val
[dir
] + s
->block_index
[block
];
324 /* special case for first (slice) line */
325 if (s
->first_slice_line
&& block
<3) {
326 // we can't just change some MVs to simulate that as we need them for the B frames (and ME)
327 // and if we ever support non rectangular objects than we need to do a few ifs here anyway :(
328 if(block
==0){ //most common case
329 if(s
->mb_x
== s
->resync_mb_x
){ //rare
331 }else if(s
->mb_x
+ 1 == s
->resync_mb_x
&& s
->h263_pred
){ //rare
332 C
= mot_val
[off
[block
] - wrap
];
337 *px
= mid_pred(A
[0], 0, C
[0]);
338 *py
= mid_pred(A
[1], 0, C
[1]);
345 if(s
->mb_x
+ 1 == s
->resync_mb_x
&& s
->h263_pred
){ //rare
346 C
= mot_val
[off
[block
] - wrap
];
347 *px
= mid_pred(A
[0], 0, C
[0]);
348 *py
= mid_pred(A
[1], 0, C
[1]);
354 B
= mot_val
[ - wrap
];
355 C
= mot_val
[off
[block
] - wrap
];
356 if(s
->mb_x
== s
->resync_mb_x
) //rare
359 *px
= mid_pred(A
[0], B
[0], C
[0]);
360 *py
= mid_pred(A
[1], B
[1], C
[1]);
363 B
= mot_val
[ - wrap
];
364 C
= mot_val
[off
[block
] - wrap
];
365 *px
= mid_pred(A
[0], B
[0], C
[0]);
366 *py
= mid_pred(A
[1], B
[1], C
[1]);
373 * Get the GOB height based on picture height.
375 int ff_h263_get_gob_height(MpegEncContext
*s
){
376 if (s
->height
<= 400)
378 else if (s
->height
<= 800)