Mercurial > libavcodec.hg
annotate mpegvideo.c @ 604:4344cc8033bd libavcodec
skip blocks with small chroma dc too (if the user wants it) needed to avoid IDCT(input coeffs !=0) == 0 problems which cause catastrophic error accumulation at qp=1
| author | michaelni |
|---|---|
| date | Sat, 17 Aug 2002 20:10:27 +0000 |
| parents | b1a191202f96 |
| children | 40874804a5af |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * The simplest mpeg encoder (well, it was the simplest!) | |
| 429 | 3 * Copyright (c) 2000,2001 Fabrice Bellard. |
| 0 | 4 * |
| 429 | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Lesser General Public | |
| 7 * License as published by the Free Software Foundation; either | |
| 8 * version 2 of the License, or (at your option) any later version. | |
| 0 | 9 * |
| 429 | 10 * This library is distributed in the hope that it will be useful, |
| 0 | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 429 | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Lesser General Public License for more details. | |
| 0 | 14 * |
| 429 | 15 * You should have received a copy of the GNU Lesser General Public |
| 16 * License along with this library; if not, write to the Free Software | |
| 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 295 | 18 * |
| 325 | 19 * 4MV & hq & b-frame encoding stuff by Michael Niedermayer <michaelni@gmx.at> |
| 0 | 20 */ |
| 21 #include "avcodec.h" | |
| 22 #include "dsputil.h" | |
| 23 #include "mpegvideo.h" | |
| 24 | |
|
17
b69fe46fd708
Adding fastmemcpy stuff to speedup mplayer project
nickols_k
parents:
13
diff
changeset
|
25 #ifdef USE_FASTMEMCPY |
|
b69fe46fd708
Adding fastmemcpy stuff to speedup mplayer project
nickols_k
parents:
13
diff
changeset
|
26 #include "fastmemcpy.h" |
|
b69fe46fd708
Adding fastmemcpy stuff to speedup mplayer project
nickols_k
parents:
13
diff
changeset
|
27 #endif |
|
b69fe46fd708
Adding fastmemcpy stuff to speedup mplayer project
nickols_k
parents:
13
diff
changeset
|
28 |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
29 static void encode_picture(MpegEncContext *s, int picture_number); |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
30 static void dct_unquantize_mpeg1_c(MpegEncContext *s, |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
31 DCTELEM *block, int n, int qscale); |
| 325 | 32 static void dct_unquantize_mpeg2_c(MpegEncContext *s, |
| 33 DCTELEM *block, int n, int qscale); | |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
34 static void dct_unquantize_h263_c(MpegEncContext *s, |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
35 DCTELEM *block, int n, int qscale); |
| 206 | 36 static void draw_edges_c(UINT8 *buf, int wrap, int width, int height, int w); |
| 344 | 37 static int dct_quantize_c(MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow); |
| 206 | 38 |
| 344 | 39 int (*dct_quantize)(MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow)= dct_quantize_c; |
| 206 | 40 void (*draw_edges)(UINT8 *buf, int wrap, int width, int height, int w)= draw_edges_c; |
| 566 | 41 static void emulated_edge_mc(MpegEncContext *s, UINT8 *src, int linesize, int block_w, int block_h, |
| 42 int src_x, int src_y, int w, int h); | |
| 206 | 43 |
| 0 | 44 #define EDGE_WIDTH 16 |
| 45 | |
| 46 /* enable all paranoid tests for rounding, overflows, etc... */ | |
| 47 //#define PARANOID | |
| 48 | |
| 49 //#define DEBUG | |
| 50 | |
| 321 | 51 |
| 0 | 52 /* for jpeg fast DCT */ |
| 53 #define CONST_BITS 14 | |
| 54 | |
| 55 static const unsigned short aanscales[64] = { | |
| 56 /* precomputed values scaled up by 14 bits */ | |
| 57 16384, 22725, 21407, 19266, 16384, 12873, 8867, 4520, | |
| 58 22725, 31521, 29692, 26722, 22725, 17855, 12299, 6270, | |
| 59 21407, 29692, 27969, 25172, 21407, 16819, 11585, 5906, | |
| 60 19266, 26722, 25172, 22654, 19266, 15137, 10426, 5315, | |
| 61 16384, 22725, 21407, 19266, 16384, 12873, 8867, 4520, | |
| 62 12873, 17855, 16819, 15137, 12873, 10114, 6967, 3552, | |
| 63 8867, 12299, 11585, 10426, 8867, 6967, 4799, 2446, | |
| 64 4520, 6270, 5906, 5315, 4520, 3552, 2446, 1247 | |
| 65 }; | |
| 66 | |
| 67 static UINT8 h263_chroma_roundtab[16] = { | |
| 68 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, | |
| 69 }; | |
| 70 | |
|
292
73a9ce3d9715
fcode_tables where too small, found by Klaas-Pieter Vlieg <vlieg@eurescom.de>
michaelni
parents:
288
diff
changeset
|
71 static UINT16 default_mv_penalty[MAX_FCODE+1][MAX_MV*2+1]; |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
72 static UINT8 default_fcode_tab[MAX_MV*2+1]; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
73 |
| 321 | 74 extern UINT8 zigzag_end[64]; |
| 75 | |
| 0 | 76 /* default motion estimation */ |
| 321 | 77 int motion_estimation_method = ME_EPZS; |
| 200 | 78 |
| 344 | 79 static void convert_matrix(int (*qmat)[64], uint16_t (*qmat16)[64], uint16_t (*qmat16_bias)[64], |
| 80 const UINT16 *quant_matrix, int bias) | |
| 0 | 81 { |
| 344 | 82 int qscale; |
| 0 | 83 |
| 344 | 84 for(qscale=1; qscale<32; qscale++){ |
| 85 int i; | |
|
474
11dbd00682fc
avoid name clash with libjpeg - added missing externs
bellard
parents:
467
diff
changeset
|
86 if (av_fdct == fdct_ifast) { |
| 344 | 87 for(i=0;i<64;i++) { |
| 88 const int j= block_permute_op(i); | |
| 89 /* 16 <= qscale * quant_matrix[i] <= 7905 */ | |
| 90 /* 19952 <= aanscales[i] * qscale * quant_matrix[i] <= 249205026 */ | |
| 91 /* (1<<36)/19952 >= (1<<36)/(aanscales[i] * qscale * quant_matrix[i]) >= (1<<36)/249205026 */ | |
| 92 /* 3444240 >= (1<<36)/(aanscales[i] * qscale * quant_matrix[i]) >= 275 */ | |
| 93 | |
| 94 qmat[qscale][j] = (int)((UINT64_C(1) << (QMAT_SHIFT + 11)) / | |
| 95 (aanscales[i] * qscale * quant_matrix[j])); | |
| 96 } | |
| 97 } else { | |
| 98 for(i=0;i<64;i++) { | |
| 99 /* We can safely suppose that 16 <= quant_matrix[i] <= 255 | |
| 100 So 16 <= qscale * quant_matrix[i] <= 7905 | |
| 101 so (1<<19) / 16 >= (1<<19) / (qscale * quant_matrix[i]) >= (1<<19) / 7905 | |
| 102 so 32768 >= (1<<19) / (qscale * quant_matrix[i]) >= 67 | |
| 103 */ | |
| 104 qmat [qscale][i] = (1 << QMAT_SHIFT_MMX) / (qscale * quant_matrix[i]); | |
| 105 qmat16[qscale][i] = (1 << QMAT_SHIFT_MMX) / (qscale * quant_matrix[block_permute_op(i)]); | |
| 106 | |
| 107 if(qmat16[qscale][i]==0 || qmat16[qscale][i]==128*256) qmat16[qscale][i]=128*256-1; | |
| 108 | |
| 109 qmat16_bias[qscale][i]= ROUNDED_DIV(bias<<(16-QUANT_BIAS_SHIFT), qmat16[qscale][i]); | |
| 110 } | |
| 0 | 111 } |
| 112 } | |
| 113 } | |
| 456 | 114 // move into common.c perhaps |
| 115 #define CHECKED_ALLOCZ(p, size)\ | |
| 116 {\ | |
| 117 p= av_mallocz(size);\ | |
| 118 if(p==NULL){\ | |
| 119 perror("malloc");\ | |
| 120 goto fail;\ | |
| 121 }\ | |
| 122 } | |
| 0 | 123 |
| 124 /* init common structure for both encoder and decoder */ | |
| 125 int MPV_common_init(MpegEncContext *s) | |
| 126 { | |
| 127 int c_size, i; | |
| 128 UINT8 *pict; | |
| 129 | |
| 312 | 130 s->dct_unquantize_h263 = dct_unquantize_h263_c; |
| 325 | 131 s->dct_unquantize_mpeg1 = dct_unquantize_mpeg1_c; |
| 132 s->dct_unquantize_mpeg2 = dct_unquantize_mpeg2_c; | |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
133 |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
134 #ifdef HAVE_MMX |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
135 MPV_common_init_mmx(s); |
| 8 | 136 #endif |
|
514
c9f724e3a797
Update and activate dct_unquantize_h263_mvi. Thanks to M?ns Rullg?rd
mellum
parents:
506
diff
changeset
|
137 #ifdef ARCH_ALPHA |
|
c9f724e3a797
Update and activate dct_unquantize_h263_mvi. Thanks to M?ns Rullg?rd
mellum
parents:
506
diff
changeset
|
138 MPV_common_init_axp(s); |
|
c9f724e3a797
Update and activate dct_unquantize_h263_mvi. Thanks to M?ns Rullg?rd
mellum
parents:
506
diff
changeset
|
139 #endif |
| 591 | 140 |
| 0 | 141 s->mb_width = (s->width + 15) / 16; |
| 142 s->mb_height = (s->height + 15) / 16; | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
143 |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
144 /* set default edge pos, will be overriden in decode_header if needed */ |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
145 s->h_edge_pos= s->mb_width*16; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
146 s->v_edge_pos= s->mb_height*16; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
147 |
|
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
148 s->mb_num = s->mb_width * s->mb_height; |
| 553 | 149 if(!(s->flags&CODEC_FLAG_DR1)){ |
| 556 | 150 s->linesize = s->mb_width * 16 + 2 * EDGE_WIDTH; |
| 151 s->uvlinesize = s->mb_width * 8 + EDGE_WIDTH; | |
| 0 | 152 |
| 553 | 153 for(i=0;i<3;i++) { |
| 0 | 154 int w, h, shift, pict_start; |
| 155 | |
| 156 w = s->linesize; | |
| 157 h = s->mb_height * 16 + 2 * EDGE_WIDTH; | |
| 158 shift = (i == 0) ? 0 : 1; | |
| 556 | 159 c_size = (s->linesize>>shift) * (h >> shift); |
| 160 pict_start = (s->linesize>>shift) * (EDGE_WIDTH >> shift) + (EDGE_WIDTH >> shift); | |
| 0 | 161 |
| 456 | 162 CHECKED_ALLOCZ(pict, c_size) |
| 0 | 163 s->last_picture_base[i] = pict; |
| 164 s->last_picture[i] = pict + pict_start; | |
| 485 | 165 if(i>0) memset(s->last_picture_base[i], 128, c_size); |
| 0 | 166 |
| 456 | 167 CHECKED_ALLOCZ(pict, c_size) |
| 0 | 168 s->next_picture_base[i] = pict; |
| 169 s->next_picture[i] = pict + pict_start; | |
| 485 | 170 if(i>0) memset(s->next_picture_base[i], 128, c_size); |
| 324 | 171 |
|
365
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
350
diff
changeset
|
172 if (s->has_b_frames || s->codec_id==CODEC_ID_MPEG4) { |
|
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
350
diff
changeset
|
173 /* Note the MPEG4 stuff is here cuz of buggy encoders which dont set the low_delay flag but |
|
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
350
diff
changeset
|
174 do low-delay encoding, so we cant allways distinguish b-frame containing streams from low_delay streams */ |
| 456 | 175 CHECKED_ALLOCZ(pict, c_size) |
| 0 | 176 s->aux_picture_base[i] = pict; |
| 177 s->aux_picture[i] = pict + pict_start; | |
| 485 | 178 if(i>0) memset(s->aux_picture_base[i], 128, c_size); |
| 0 | 179 } |
| 553 | 180 } |
| 556 | 181 s->ip_buffer_count= 2; |
| 0 | 182 } |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
183 |
|
567
5a6eaaa9fba2
larger edge emu buffer (might have been too small)
michaelni
parents:
566
diff
changeset
|
184 CHECKED_ALLOCZ(s->edge_emu_buffer, (s->width+64)*2*17*2); //(width + edge + align)*interlaced*MBsize*tolerance |
| 553 | 185 |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
186 if (s->encoding) { |
| 324 | 187 int j; |
| 188 int mv_table_size= (s->mb_width+2)*(s->mb_height+2); | |
| 239 | 189 |
| 456 | 190 CHECKED_ALLOCZ(s->mb_var , s->mb_num * sizeof(INT16)) |
| 191 CHECKED_ALLOCZ(s->mc_mb_var, s->mb_num * sizeof(INT16)) | |
| 324 | 192 |
| 193 /* Allocate MV tables */ | |
| 456 | 194 CHECKED_ALLOCZ(s->p_mv_table , mv_table_size * 2 * sizeof(INT16)) |
| 195 CHECKED_ALLOCZ(s->b_forw_mv_table , mv_table_size * 2 * sizeof(INT16)) | |
| 196 CHECKED_ALLOCZ(s->b_back_mv_table , mv_table_size * 2 * sizeof(INT16)) | |
| 197 CHECKED_ALLOCZ(s->b_bidir_forw_mv_table , mv_table_size * 2 * sizeof(INT16)) | |
| 198 CHECKED_ALLOCZ(s->b_bidir_back_mv_table , mv_table_size * 2 * sizeof(INT16)) | |
| 199 CHECKED_ALLOCZ(s->b_direct_forw_mv_table, mv_table_size * 2 * sizeof(INT16)) | |
| 200 CHECKED_ALLOCZ(s->b_direct_back_mv_table, mv_table_size * 2 * sizeof(INT16)) | |
| 201 CHECKED_ALLOCZ(s->b_direct_mv_table , mv_table_size * 2 * sizeof(INT16)) | |
| 324 | 202 |
| 456 | 203 CHECKED_ALLOCZ(s->me_scratchpad, s->linesize*16*3*sizeof(uint8_t)) |
| 204 | |
| 205 CHECKED_ALLOCZ(s->me_map , ME_MAP_SIZE*sizeof(uint32_t)) | |
| 206 CHECKED_ALLOCZ(s->me_score_map, ME_MAP_SIZE*sizeof(uint16_t)) | |
| 327 | 207 |
| 324 | 208 if(s->max_b_frames){ |
| 209 for(j=0; j<REORDER_BUFFER_SIZE; j++){ | |
| 210 int i; | |
| 211 for(i=0;i<3;i++) { | |
| 212 int w, h, shift; | |
| 213 | |
| 214 w = s->linesize; | |
| 215 h = s->mb_height * 16; | |
| 216 shift = (i == 0) ? 0 : 1; | |
| 217 c_size = (w >> shift) * (h >> shift); | |
| 218 | |
| 456 | 219 CHECKED_ALLOCZ(pict, c_size); |
| 324 | 220 s->picture_buffer[j][i] = pict; |
| 221 } | |
| 222 } | |
| 223 } | |
| 456 | 224 |
| 225 if(s->codec_id==CODEC_ID_MPEG4){ | |
| 226 CHECKED_ALLOCZ(s->tex_pb_buffer, PB_BUFFER_SIZE); | |
| 227 CHECKED_ALLOCZ( s->pb2_buffer, PB_BUFFER_SIZE); | |
| 228 } | |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
229 } |
|
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
230 |
| 288 | 231 if (s->out_format == FMT_H263 || s->encoding) { |
| 0 | 232 int size; |
| 456 | 233 /* Allocate MB type table */ |
| 234 CHECKED_ALLOCZ(s->mb_type , s->mb_num * sizeof(UINT8)) | |
| 235 | |
| 0 | 236 /* MV prediction */ |
| 237 size = (2 * s->mb_width + 2) * (2 * s->mb_height + 2); | |
| 456 | 238 CHECKED_ALLOCZ(s->motion_val, size * 2 * sizeof(INT16)); |
| 598 | 239 |
| 240 /* 4mv direct mode decoding table */ | |
| 241 CHECKED_ALLOCZ(s->non_b_mv4_table, size * sizeof(UINT8)) | |
| 0 | 242 } |
| 243 | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
244
diff
changeset
|
244 if (s->h263_pred || s->h263_plus) { |
| 0 | 245 int y_size, c_size, i, size; |
| 246 | |
| 247 /* dc values */ | |
| 248 | |
| 249 y_size = (2 * s->mb_width + 2) * (2 * s->mb_height + 2); | |
| 250 c_size = (s->mb_width + 2) * (s->mb_height + 2); | |
| 251 size = y_size + 2 * c_size; | |
| 456 | 252 CHECKED_ALLOCZ(s->dc_val[0], size * sizeof(INT16)); |
| 0 | 253 s->dc_val[1] = s->dc_val[0] + y_size; |
| 254 s->dc_val[2] = s->dc_val[1] + c_size; | |
| 255 for(i=0;i<size;i++) | |
| 256 s->dc_val[0][i] = 1024; | |
| 257 | |
| 258 /* ac values */ | |
| 456 | 259 CHECKED_ALLOCZ(s->ac_val[0], size * sizeof(INT16) * 16); |
| 0 | 260 s->ac_val[1] = s->ac_val[0] + y_size; |
| 261 s->ac_val[2] = s->ac_val[1] + c_size; | |
| 262 | |
| 263 /* cbp values */ | |
| 456 | 264 CHECKED_ALLOCZ(s->coded_block, y_size); |
|
191
883f184537e6
AC table reset (memset) optimization - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
189
diff
changeset
|
265 |
|
883f184537e6
AC table reset (memset) optimization - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
189
diff
changeset
|
266 /* which mb is a intra block */ |
| 456 | 267 CHECKED_ALLOCZ(s->mbintra_table, s->mb_num); |
|
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
268 memset(s->mbintra_table, 1, s->mb_num); |
| 333 | 269 |
| 270 /* divx501 bitstream reorder buffer */ | |
| 456 | 271 CHECKED_ALLOCZ(s->bitstream_buffer, BITSTREAM_BUFFER_SIZE); |
| 272 | |
| 273 /* cbp, ac_pred, pred_dir */ | |
| 274 CHECKED_ALLOCZ(s->cbp_table , s->mb_num * sizeof(UINT8)) | |
| 275 CHECKED_ALLOCZ(s->pred_dir_table, s->mb_num * sizeof(UINT8)) | |
|
197
21abf1b20016
different fix, s->mbintra_table used only if h263_pred set. - patch by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
196
diff
changeset
|
276 } |
| 575 | 277 CHECKED_ALLOCZ(s->qscale_table , s->mb_num * sizeof(UINT8)) |
| 278 | |
| 0 | 279 /* default structure is frame */ |
| 280 s->picture_structure = PICT_FRAME; | |
| 553 | 281 |
|
7
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
282 /* init macroblock skip table */ |
| 456 | 283 CHECKED_ALLOCZ(s->mbskip_table, s->mb_num); |
| 294 | 284 |
| 327 | 285 s->block= s->blocks[0]; |
|
7
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
286 |
| 0 | 287 s->context_initialized = 1; |
| 288 return 0; | |
| 289 fail: | |
| 244 | 290 MPV_common_end(s); |
| 291 return -1; | |
| 292 } | |
| 293 | |
| 456 | 294 |
| 295 //extern int sads; | |
| 296 | |
| 244 | 297 /* init common structure for both encoder and decoder */ |
| 298 void MPV_common_end(MpegEncContext *s) | |
| 299 { | |
| 300 int i; | |
| 301 | |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
302 av_freep(&s->mb_type); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
303 av_freep(&s->mb_var); |
| 456 | 304 av_freep(&s->mc_mb_var); |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
305 av_freep(&s->p_mv_table); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
306 av_freep(&s->b_forw_mv_table); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
307 av_freep(&s->b_back_mv_table); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
308 av_freep(&s->b_bidir_forw_mv_table); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
309 av_freep(&s->b_bidir_back_mv_table); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
310 av_freep(&s->b_direct_forw_mv_table); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
311 av_freep(&s->b_direct_back_mv_table); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
312 av_freep(&s->b_direct_mv_table); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
313 av_freep(&s->motion_val); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
314 av_freep(&s->dc_val[0]); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
315 av_freep(&s->ac_val[0]); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
316 av_freep(&s->coded_block); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
317 av_freep(&s->mbintra_table); |
| 456 | 318 av_freep(&s->cbp_table); |
| 319 av_freep(&s->pred_dir_table); | |
| 320 av_freep(&s->qscale_table); | |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
321 av_freep(&s->me_scratchpad); |
| 456 | 322 av_freep(&s->me_map); |
| 323 av_freep(&s->me_score_map); | |
| 324 | |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
325 av_freep(&s->mbskip_table); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
326 av_freep(&s->bitstream_buffer); |
| 456 | 327 av_freep(&s->tex_pb_buffer); |
| 328 av_freep(&s->pb2_buffer); | |
| 553 | 329 av_freep(&s->edge_emu_buffer); |
| 598 | 330 av_freep(&s->non_b_mv4_table); |
| 331 | |
| 0 | 332 for(i=0;i<3;i++) { |
| 324 | 333 int j; |
| 553 | 334 if(!(s->flags&CODEC_FLAG_DR1)){ |
| 335 av_freep(&s->last_picture_base[i]); | |
| 336 av_freep(&s->next_picture_base[i]); | |
| 337 av_freep(&s->aux_picture_base[i]); | |
| 338 } | |
| 339 s->last_picture_base[i]= | |
| 340 s->next_picture_base[i]= | |
| 341 s->aux_picture_base [i] = NULL; | |
| 342 s->last_picture[i]= | |
| 343 s->next_picture[i]= | |
| 344 s->aux_picture [i] = NULL; | |
| 345 | |
| 324 | 346 for(j=0; j<REORDER_BUFFER_SIZE; j++){ |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
376
diff
changeset
|
347 av_freep(&s->picture_buffer[j][i]); |
| 324 | 348 } |
| 0 | 349 } |
| 350 s->context_initialized = 0; | |
| 351 } | |
| 352 | |
| 353 /* init video encoder */ | |
| 354 int MPV_encode_init(AVCodecContext *avctx) | |
| 355 { | |
| 356 MpegEncContext *s = avctx->priv_data; | |
| 60 | 357 int i; |
| 0 | 358 |
| 315 | 359 avctx->pix_fmt = PIX_FMT_YUV420P; |
| 360 | |
| 0 | 361 s->bit_rate = avctx->bit_rate; |
| 268 | 362 s->bit_rate_tolerance = avctx->bit_rate_tolerance; |
| 0 | 363 s->frame_rate = avctx->frame_rate; |
| 364 s->width = avctx->width; | |
| 365 s->height = avctx->height; | |
| 456 | 366 if(avctx->gop_size > 600){ |
|
462
3fdd0627f6bd
typo (found by Bohdan Horst <nexus at hoth.amu.edu.pl>)
michaelni
parents:
461
diff
changeset
|
367 fprintf(stderr, "Warning keyframe interval too large! reducing it ...\n"); |
| 456 | 368 avctx->gop_size=600; |
| 369 } | |
| 0 | 370 s->gop_size = avctx->gop_size; |
| 162 | 371 s->rtp_mode = avctx->rtp_mode; |
| 372 s->rtp_payload_size = avctx->rtp_payload_size; | |
| 231 | 373 if (avctx->rtp_callback) |
| 374 s->rtp_callback = avctx->rtp_callback; | |
| 268 | 375 s->qmin= avctx->qmin; |
| 376 s->qmax= avctx->qmax; | |
| 377 s->max_qdiff= avctx->max_qdiff; | |
| 378 s->qcompress= avctx->qcompress; | |
| 379 s->qblur= avctx->qblur; | |
| 329 | 380 s->b_quant_factor= avctx->b_quant_factor; |
| 456 | 381 s->b_quant_offset= avctx->b_quant_offset; |
|
194
27d1773552c9
mpeg4 encoder fix by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
191
diff
changeset
|
382 s->avctx = avctx; |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
383 s->aspect_ratio_info= avctx->aspect_ratio_info; |
| 294 | 384 s->flags= avctx->flags; |
| 324 | 385 s->max_b_frames= avctx->max_b_frames; |
| 329 | 386 s->rc_strategy= avctx->rc_strategy; |
| 387 s->b_frame_strategy= avctx->b_frame_strategy; | |
| 344 | 388 s->codec_id= avctx->codec->id; |
| 456 | 389 s->luma_elim_threshold = avctx->luma_elim_threshold; |
| 390 s->chroma_elim_threshold= avctx->chroma_elim_threshold; | |
| 391 s->strict_std_compliance= avctx->strict_std_compliance; | |
| 392 s->data_partitioning= avctx->flags & CODEC_FLAG_PART; | |
| 599 | 393 s->mpeg_quant= avctx->mpeg_quant; |
| 344 | 394 |
| 0 | 395 if (s->gop_size <= 1) { |
| 396 s->intra_only = 1; | |
| 397 s->gop_size = 12; | |
| 398 } else { | |
| 399 s->intra_only = 0; | |
| 400 } | |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
315
diff
changeset
|
401 |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
315
diff
changeset
|
402 /* ME algorithm */ |
| 321 | 403 if (avctx->me_method == 0) |
| 404 /* For compatibility */ | |
| 405 s->me_method = motion_estimation_method; | |
| 406 else | |
| 407 s->me_method = avctx->me_method; | |
| 408 | |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
315
diff
changeset
|
409 /* Fixed QSCALE */ |
| 0 | 410 s->fixed_qscale = (avctx->flags & CODEC_FLAG_QSCALE); |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
411 |
| 0 | 412 switch(avctx->codec->id) { |
| 413 case CODEC_ID_MPEG1VIDEO: | |
| 414 s->out_format = FMT_MPEG1; | |
| 336 | 415 avctx->delay=0; //FIXME not sure, should check the spec |
| 0 | 416 break; |
| 417 case CODEC_ID_MJPEG: | |
| 418 s->out_format = FMT_MJPEG; | |
| 419 s->intra_only = 1; /* force intra only for jpeg */ | |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
420 s->mjpeg_write_tables = 1; /* write all tables */ |
|
370
0eca28d16cbd
clamp intra matrix to 8bit for mjpeg (workaround for qscale>=25)
al3x
parents:
365
diff
changeset
|
421 s->mjpeg_data_only_frames = 0; /* write all the needed headers */ |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
422 s->mjpeg_vsample[0] = 2; /* set up default sampling factors */ |
|
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
423 s->mjpeg_vsample[1] = 1; /* the only currently supported values */ |
|
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
424 s->mjpeg_vsample[2] = 1; |
|
370
0eca28d16cbd
clamp intra matrix to 8bit for mjpeg (workaround for qscale>=25)
al3x
parents:
365
diff
changeset
|
425 s->mjpeg_hsample[0] = 2; |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
426 s->mjpeg_hsample[1] = 1; |
|
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
427 s->mjpeg_hsample[2] = 1; |
| 0 | 428 if (mjpeg_init(s) < 0) |
| 429 return -1; | |
| 336 | 430 avctx->delay=0; |
| 0 | 431 break; |
| 432 case CODEC_ID_H263: | |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
433 if (h263_get_picture_format(s->width, s->height) == 7) { |
|
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
434 printf("Input picture size isn't suitable for h263 codec! try h263+\n"); |
| 0 | 435 return -1; |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
436 } |
| 0 | 437 s->out_format = FMT_H263; |
| 336 | 438 avctx->delay=0; |
| 0 | 439 break; |
| 440 case CODEC_ID_H263P: | |
| 441 s->out_format = FMT_H263; | |
| 162 | 442 s->rtp_mode = 1; |
| 443 s->rtp_payload_size = 1200; | |
| 0 | 444 s->h263_plus = 1; |
| 78 | 445 s->unrestricted_mv = 1; |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
446 s->h263_aic = 1; |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
447 |
|
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
448 /* These are just to be sure */ |
|
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
449 s->umvplus = 0; |
|
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
450 s->umvplus_dec = 0; |
| 336 | 451 avctx->delay=0; |
| 0 | 452 break; |
| 453 case CODEC_ID_RV10: | |
| 454 s->out_format = FMT_H263; | |
| 455 s->h263_rv10 = 1; | |
| 336 | 456 avctx->delay=0; |
| 0 | 457 break; |
| 71 | 458 case CODEC_ID_MPEG4: |
| 0 | 459 s->out_format = FMT_H263; |
| 460 s->h263_pred = 1; | |
| 461 s->unrestricted_mv = 1; | |
| 324 | 462 s->has_b_frames= s->max_b_frames ? 1 : 0; |
| 336 | 463 s->low_delay=0; |
| 464 avctx->delay= s->low_delay ? 0 : (s->max_b_frames + 1); | |
| 0 | 465 break; |
| 307 | 466 case CODEC_ID_MSMPEG4V1: |
| 0 | 467 s->out_format = FMT_H263; |
| 468 s->h263_msmpeg4 = 1; | |
| 469 s->h263_pred = 1; | |
| 470 s->unrestricted_mv = 1; | |
| 307 | 471 s->msmpeg4_version= 1; |
| 336 | 472 avctx->delay=0; |
| 307 | 473 break; |
| 474 case CODEC_ID_MSMPEG4V2: | |
| 475 s->out_format = FMT_H263; | |
| 476 s->h263_msmpeg4 = 1; | |
| 477 s->h263_pred = 1; | |
| 478 s->unrestricted_mv = 1; | |
| 479 s->msmpeg4_version= 2; | |
| 336 | 480 avctx->delay=0; |
| 307 | 481 break; |
| 482 case CODEC_ID_MSMPEG4V3: | |
| 483 s->out_format = FMT_H263; | |
| 484 s->h263_msmpeg4 = 1; | |
| 485 s->h263_pred = 1; | |
| 486 s->unrestricted_mv = 1; | |
| 487 s->msmpeg4_version= 3; | |
| 336 | 488 avctx->delay=0; |
| 0 | 489 break; |
| 499 | 490 case CODEC_ID_WMV1: |
| 491 s->out_format = FMT_H263; | |
| 492 s->h263_msmpeg4 = 1; | |
| 493 s->h263_pred = 1; | |
| 494 s->unrestricted_mv = 1; | |
| 495 s->msmpeg4_version= 4; | |
| 496 avctx->delay=0; | |
| 497 break; | |
| 498 case CODEC_ID_WMV2: | |
| 499 s->out_format = FMT_H263; | |
| 500 s->h263_msmpeg4 = 1; | |
| 501 s->h263_pred = 1; | |
| 502 s->unrestricted_mv = 1; | |
| 503 s->msmpeg4_version= 5; | |
| 504 avctx->delay=0; | |
| 505 break; | |
| 0 | 506 default: |
| 507 return -1; | |
| 508 } | |
| 295 | 509 |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
510 { /* set up some save defaults, some codecs might override them later */ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
511 static int done=0; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
512 if(!done){ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
513 int i; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
514 done=1; |
|
292
73a9ce3d9715
fcode_tables where too small, found by Klaas-Pieter Vlieg <vlieg@eurescom.de>
michaelni
parents:
288
diff
changeset
|
515 memset(default_mv_penalty, 0, sizeof(UINT16)*(MAX_FCODE+1)*(2*MAX_MV+1)); |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
516 memset(default_fcode_tab , 0, sizeof(UINT8)*(2*MAX_MV+1)); |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
517 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
518 for(i=-16; i<16; i++){ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
519 default_fcode_tab[i + MAX_MV]= 1; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
520 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
521 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
522 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
523 s->mv_penalty= default_mv_penalty; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
524 s->fcode_tab= default_fcode_tab; |
|
506
b9ed0ae72d51
init dc_scale tables to defaults (fixes mjpeg sig11)
michaelni
parents:
499
diff
changeset
|
525 s->y_dc_scale_table= |
|
b9ed0ae72d51
init dc_scale tables to defaults (fixes mjpeg sig11)
michaelni
parents:
499
diff
changeset
|
526 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; |
|
b9ed0ae72d51
init dc_scale tables to defaults (fixes mjpeg sig11)
michaelni
parents:
499
diff
changeset
|
527 |
| 0 | 528 if (s->out_format == FMT_H263) |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
529 h263_encode_init(s); |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
530 else if (s->out_format == FMT_MPEG1) |
| 499 | 531 ff_mpeg1_encode_init(s); |
| 532 if(s->msmpeg4_version) | |
| 533 ff_msmpeg4_encode_init(s); | |
| 0 | 534 |
| 287 | 535 /* dont use mv_penalty table for crap MV as it would be confused */ |
| 324 | 536 if (s->me_method < ME_EPZS) s->mv_penalty = default_mv_penalty; |
| 287 | 537 |
|
7
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
538 s->encoding = 1; |
|
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
539 |
| 0 | 540 /* init */ |
| 541 if (MPV_common_init(s) < 0) | |
| 542 return -1; | |
| 543 | |
| 60 | 544 /* init default q matrix */ |
| 545 for(i=0;i<64;i++) { | |
| 599 | 546 if(s->codec_id==CODEC_ID_MPEG4 && s->mpeg_quant){ |
| 547 s->intra_matrix[i] = ff_mpeg4_default_intra_matrix[i]; | |
| 548 s->inter_matrix[i] = ff_mpeg4_default_non_intra_matrix[i]; | |
| 549 }else if(s->out_format == FMT_H263){ | |
| 550 s->intra_matrix[i] = | |
| 551 s->inter_matrix[i] = ff_mpeg1_default_non_intra_matrix[i]; | |
| 552 }else{ /* mpeg1 */ | |
|
533
3c07cf9595de
adding ff prefix to avoid global name conficts with xvid (patch by Marko Kreen <marko at l-t.ee>)
michaelni
parents:
514
diff
changeset
|
553 s->intra_matrix[i] = ff_mpeg1_default_intra_matrix[i]; |
| 599 | 554 s->inter_matrix[i] = ff_mpeg1_default_non_intra_matrix[i]; |
| 555 } | |
| 344 | 556 } |
| 557 | |
| 558 /* precompute matrix */ | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
559 /* for mjpeg, we do include qscale in the matrix */ |
| 344 | 560 if (s->out_format != FMT_MJPEG) { |
| 561 convert_matrix(s->q_intra_matrix, s->q_intra_matrix16, s->q_intra_matrix16_bias, | |
| 562 s->intra_matrix, s->intra_quant_bias); | |
| 563 convert_matrix(s->q_inter_matrix, s->q_inter_matrix16, s->q_inter_matrix16_bias, | |
| 564 s->inter_matrix, s->inter_quant_bias); | |
| 60 | 565 } |
| 566 | |
| 329 | 567 if(ff_rate_control_init(s) < 0) |
| 568 return -1; | |
| 0 | 569 |
| 570 s->picture_number = 0; | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
571 s->picture_in_gop_number = 0; |
| 0 | 572 s->fake_picture_number = 0; |
| 573 /* motion detector init */ | |
| 574 s->f_code = 1; | |
| 324 | 575 s->b_code = 1; |
| 0 | 576 |
| 577 return 0; | |
| 578 } | |
| 579 | |
| 580 int MPV_encode_end(AVCodecContext *avctx) | |
| 581 { | |
| 582 MpegEncContext *s = avctx->priv_data; | |
| 583 | |
| 584 #ifdef STATS | |
| 585 print_stats(); | |
| 586 #endif | |
| 329 | 587 |
| 588 ff_rate_control_uninit(s); | |
| 589 | |
| 0 | 590 MPV_common_end(s); |
| 591 if (s->out_format == FMT_MJPEG) | |
| 592 mjpeg_close(s); | |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
593 |
| 0 | 594 return 0; |
| 595 } | |
| 596 | |
| 597 /* draw the edges of width 'w' of an image of size width, height */ | |
| 206 | 598 static void draw_edges_c(UINT8 *buf, int wrap, int width, int height, int w) |
| 0 | 599 { |
| 600 UINT8 *ptr, *last_line; | |
| 601 int i; | |
| 602 | |
| 603 last_line = buf + (height - 1) * wrap; | |
| 604 for(i=0;i<w;i++) { | |
| 605 /* top and bottom */ | |
| 606 memcpy(buf - (i + 1) * wrap, buf, width); | |
| 607 memcpy(last_line + (i + 1) * wrap, last_line, width); | |
| 608 } | |
| 609 /* left and right */ | |
| 610 ptr = buf; | |
| 611 for(i=0;i<height;i++) { | |
| 612 memset(ptr - w, ptr[0], w); | |
| 613 memset(ptr + width, ptr[width-1], w); | |
| 614 ptr += wrap; | |
| 615 } | |
| 616 /* corners */ | |
| 617 for(i=0;i<w;i++) { | |
| 618 memset(buf - (i + 1) * wrap - w, buf[0], w); /* top left */ | |
| 619 memset(buf - (i + 1) * wrap + width, buf[width-1], w); /* top right */ | |
| 620 memset(last_line + (i + 1) * wrap - w, last_line[0], w); /* top left */ | |
| 621 memset(last_line + (i + 1) * wrap + width, last_line[width-1], w); /* top right */ | |
| 622 } | |
| 623 } | |
| 624 | |
| 625 /* generic function for encode/decode called before a frame is coded/decoded */ | |
| 553 | 626 void MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx) |
| 0 | 627 { |
| 628 int i; | |
| 629 UINT8 *tmp; | |
| 630 | |
|
46
931417475f5b
fixed mpeg1 first block bug (pb with black picture optimisation for B frames)
glantau
parents:
40
diff
changeset
|
631 s->mb_skiped = 0; |
| 456 | 632 s->decoding_error=0; |
|
562
23e58889a108
exporting mbskip_table after it has been allocated
michaelni
parents:
557
diff
changeset
|
633 avctx->mbskip_table= s->mbskip_table; |
| 456 | 634 |
| 553 | 635 if(avctx->flags&CODEC_FLAG_DR1){ |
| 636 avctx->get_buffer_callback(avctx, s->width, s->height, s->pict_type); | |
| 637 | |
| 556 | 638 s->linesize = avctx->dr_stride; |
| 639 s->uvlinesize= avctx->dr_uvstride; | |
| 640 s->ip_buffer_count= avctx->dr_ip_buffer_count; | |
| 553 | 641 } |
|
562
23e58889a108
exporting mbskip_table after it has been allocated
michaelni
parents:
557
diff
changeset
|
642 avctx->dr_ip_buffer_count= s->ip_buffer_count; |
| 553 | 643 |
| 0 | 644 if (s->pict_type == B_TYPE) { |
| 645 for(i=0;i<3;i++) { | |
| 553 | 646 if(avctx->flags&CODEC_FLAG_DR1) |
| 647 s->aux_picture[i]= avctx->dr_buffer[i]; | |
| 569 | 648 |
| 649 //FIXME the following should never be needed, the decoder should drop b frames if no reference is available | |
| 650 if(s->next_picture[i]==NULL) | |
| 651 s->next_picture[i]= s->aux_picture[i]; | |
| 652 if(s->last_picture[i]==NULL) | |
| 653 s->last_picture[i]= s->next_picture[i]; | |
| 553 | 654 |
| 0 | 655 s->current_picture[i] = s->aux_picture[i]; |
| 656 } | |
| 657 } else { | |
| 658 for(i=0;i<3;i++) { | |
| 659 /* swap next and last */ | |
| 553 | 660 if(avctx->flags&CODEC_FLAG_DR1) |
| 661 tmp= avctx->dr_buffer[i]; | |
| 662 else | |
| 663 tmp = s->last_picture[i]; | |
| 664 | |
| 0 | 665 s->last_picture[i] = s->next_picture[i]; |
| 666 s->next_picture[i] = tmp; | |
| 667 s->current_picture[i] = tmp; | |
| 553 | 668 |
|
592
909e50c67d0e
last_picture should be never == NULL (it was with dr1) this might fix a segfault with error concealment
michaelni
parents:
591
diff
changeset
|
669 if(s->last_picture[i]==NULL) |
|
909e50c67d0e
last_picture should be never == NULL (it was with dr1) this might fix a segfault with error concealment
michaelni
parents:
591
diff
changeset
|
670 s->last_picture[i]= s->next_picture[i]; |
|
909e50c67d0e
last_picture should be never == NULL (it was with dr1) this might fix a segfault with error concealment
michaelni
parents:
591
diff
changeset
|
671 |
| 553 | 672 s->last_dr_opaque= s->next_dr_opaque; |
| 673 s->next_dr_opaque= avctx->dr_opaque_frame; | |
| 674 | |
| 557 | 675 if(s->has_b_frames && s->last_dr_opaque && s->codec_id!=CODEC_ID_SVQ1) |
| 553 | 676 avctx->dr_opaque_frame= s->last_dr_opaque; |
| 677 else | |
| 678 avctx->dr_opaque_frame= s->next_dr_opaque; | |
| 0 | 679 } |
| 680 } | |
| 591 | 681 |
| 682 /* set dequantizer, we cant do it during init as it might change for mpeg4 | |
| 683 and we cant do it in the header decode as init isnt called for mpeg4 there yet */ | |
| 684 if(s->out_format == FMT_H263){ | |
| 685 if(s->mpeg_quant) | |
| 686 s->dct_unquantize = s->dct_unquantize_mpeg2; | |
| 687 else | |
| 688 s->dct_unquantize = s->dct_unquantize_h263; | |
| 689 }else | |
| 690 s->dct_unquantize = s->dct_unquantize_mpeg1; | |
| 0 | 691 } |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
692 |
| 0 | 693 /* generic function for encode/decode called after a frame has been coded/decoded */ |
| 694 void MPV_frame_end(MpegEncContext *s) | |
| 695 { | |
| 456 | 696 // if((s->picture_number%100)==0 && s->encoding) printf("sads:%d //\n", sads); |
| 697 | |
| 0 | 698 /* draw edge for correct motion prediction if outside */ |
| 553 | 699 if (s->pict_type != B_TYPE && !s->intra_only && !(s->flags&CODEC_FLAG_EMU_EDGE)) { |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
700 draw_edges(s->current_picture[0], s->linesize , s->h_edge_pos , s->v_edge_pos , EDGE_WIDTH ); |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
701 draw_edges(s->current_picture[1], s->uvlinesize, s->h_edge_pos>>1, s->v_edge_pos>>1, EDGE_WIDTH/2); |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
702 draw_edges(s->current_picture[2], s->uvlinesize, s->h_edge_pos>>1, s->v_edge_pos>>1, EDGE_WIDTH/2); |
| 0 | 703 } |
| 207 | 704 emms_c(); |
| 329 | 705 |
| 706 if(s->pict_type!=B_TYPE){ | |
| 707 s->last_non_b_pict_type= s->pict_type; | |
| 708 s->last_non_b_qscale= s->qscale; | |
| 456 | 709 s->last_non_b_mc_mb_var= s->mc_mb_var_sum; |
| 341 | 710 s->num_available_buffers++; |
| 711 if(s->num_available_buffers>2) s->num_available_buffers= 2; | |
| 329 | 712 } |
| 0 | 713 } |
| 714 | |
| 324 | 715 /* reorder input for encoding */ |
| 716 void reorder_input(MpegEncContext *s, AVPicture *pict) | |
| 717 { | |
| 718 int i, j, index; | |
| 719 | |
| 720 if(s->max_b_frames > FF_MAX_B_FRAMES) s->max_b_frames= FF_MAX_B_FRAMES; | |
| 721 | |
| 722 // delay= s->max_b_frames+1; (or 0 if no b frames cuz decoder diff) | |
| 723 | |
| 724 for(j=0; j<REORDER_BUFFER_SIZE-1; j++){ | |
| 725 s->coded_order[j]= s->coded_order[j+1]; | |
| 726 } | |
| 727 s->coded_order[j].picture[0]= s->coded_order[j].picture[1]= s->coded_order[j].picture[2]= NULL; //catch uninitalized buffers | |
| 339 | 728 s->coded_order[j].pict_type=0; |
| 324 | 729 |
| 730 switch(s->input_pict_type){ | |
| 731 default: | |
| 732 case I_TYPE: | |
| 733 case S_TYPE: | |
| 734 case P_TYPE: | |
| 735 index= s->max_b_frames - s->b_frames_since_non_b; | |
| 736 s->b_frames_since_non_b=0; | |
| 737 break; | |
| 738 case B_TYPE: | |
| 739 index= s->max_b_frames + 1; | |
| 740 s->b_frames_since_non_b++; | |
| 741 break; | |
| 742 } | |
| 743 //printf("index:%d type:%d strides: %d %d\n", index, s->input_pict_type, pict->linesize[0], s->linesize); | |
| 744 if( (index==0 || (s->flags&CODEC_FLAG_INPUT_PRESERVED)) | |
| 745 && pict->linesize[0] == s->linesize | |
| 556 | 746 && pict->linesize[1] == s->uvlinesize |
| 747 && pict->linesize[2] == s->uvlinesize){ | |
| 324 | 748 //printf("ptr\n"); |
| 749 for(i=0; i<3; i++){ | |
| 750 s->coded_order[index].picture[i]= pict->data[i]; | |
| 751 } | |
| 752 }else{ | |
| 753 //printf("copy\n"); | |
| 754 for(i=0; i<3; i++){ | |
| 755 uint8_t *src = pict->data[i]; | |
| 756 uint8_t *dest; | |
| 757 int src_wrap = pict->linesize[i]; | |
| 758 int dest_wrap = s->linesize; | |
| 759 int w = s->width; | |
| 760 int h = s->height; | |
| 761 | |
| 762 if(index==0) dest= s->last_picture[i]+16; //is current_picture indeed but the switch hapens after reordering | |
| 763 else dest= s->picture_buffer[s->picture_buffer_index][i]; | |
| 764 | |
| 765 if (i >= 1) { | |
| 766 dest_wrap >>= 1; | |
| 767 w >>= 1; | |
| 768 h >>= 1; | |
| 769 } | |
| 770 | |
| 771 s->coded_order[index].picture[i]= dest; | |
| 772 for(j=0;j<h;j++) { | |
| 773 memcpy(dest, src, w); | |
| 774 dest += dest_wrap; | |
| 775 src += src_wrap; | |
| 776 } | |
| 777 } | |
| 778 if(index!=0){ | |
| 779 s->picture_buffer_index++; | |
| 588 | 780 if(s->picture_buffer_index >= REORDER_BUFFER_SIZE) s->picture_buffer_index=0; |
| 324 | 781 } |
| 782 } | |
| 783 s->coded_order[index].pict_type = s->input_pict_type; | |
| 784 s->coded_order[index].qscale = s->input_qscale; | |
| 785 s->coded_order[index].force_type= s->force_input_type; | |
| 786 s->coded_order[index].picture_in_gop_number= s->input_picture_in_gop_number; | |
| 787 s->coded_order[index].picture_number= s->input_picture_number; | |
| 788 | |
| 789 for(i=0; i<3; i++){ | |
| 790 s->new_picture[i]= s->coded_order[0].picture[i]; | |
| 791 } | |
| 792 } | |
| 793 | |
| 0 | 794 int MPV_encode_picture(AVCodecContext *avctx, |
| 795 unsigned char *buf, int buf_size, void *data) | |
| 796 { | |
| 797 MpegEncContext *s = avctx->priv_data; | |
| 798 AVPicture *pict = data; | |
| 799 | |
| 324 | 800 s->input_qscale = avctx->quality; |
| 0 | 801 |
| 802 init_put_bits(&s->pb, buf, buf_size, NULL, NULL); | |
| 803 | |
| 329 | 804 if(avctx->flags&CODEC_FLAG_TYPE){ |
| 805 s->input_pict_type= | |
| 806 s->force_input_type= avctx->key_frame ? I_TYPE : P_TYPE; | |
| 807 }else if(s->flags&CODEC_FLAG_PASS2){ | |
| 808 s->input_pict_type= | |
| 809 s->force_input_type= s->rc_context.entry[s->input_picture_number].new_pict_type; | |
| 810 }else{ | |
| 811 s->force_input_type=0; | |
| 812 if (!s->intra_only) { | |
| 813 /* first picture of GOP is intra */ | |
| 814 if (s->input_picture_in_gop_number % s->gop_size==0){ | |
| 815 s->input_pict_type = I_TYPE; | |
| 816 }else if(s->max_b_frames==0){ | |
| 817 s->input_pict_type = P_TYPE; | |
| 818 }else{ | |
| 819 if(s->b_frames_since_non_b < s->max_b_frames) //FIXME more IQ | |
| 820 s->input_pict_type = B_TYPE; | |
| 821 else | |
| 822 s->input_pict_type = P_TYPE; | |
| 823 } | |
| 824 } else { | |
| 324 | 825 s->input_pict_type = I_TYPE; |
| 826 } | |
| 0 | 827 } |
| 828 | |
| 329 | 829 if(s->input_pict_type==I_TYPE) |
| 830 s->input_picture_in_gop_number=0; | |
| 831 | |
| 324 | 832 reorder_input(s, pict); |
| 833 | |
| 834 /* output? */ | |
| 835 if(s->coded_order[0].picture[0]){ | |
| 836 | |
| 837 s->pict_type= s->coded_order[0].pict_type; | |
| 838 if (s->fixed_qscale) /* the ratecontrol needs the last qscale so we dont touch it for CBR */ | |
| 839 s->qscale= s->coded_order[0].qscale; | |
| 840 s->force_type= s->coded_order[0].force_type; | |
| 841 s->picture_in_gop_number= s->coded_order[0].picture_in_gop_number; | |
| 842 s->picture_number= s->coded_order[0].picture_number; | |
| 843 | |
| 553 | 844 MPV_frame_start(s, avctx); |
| 286 | 845 |
| 324 | 846 encode_picture(s, s->picture_number); |
| 376 | 847 avctx->key_frame = (s->pict_type == I_TYPE); |
| 848 avctx->pict_type = s->pict_type; | |
| 849 avctx->real_pict_num = s->picture_number; | |
| 324 | 850 avctx->header_bits = s->header_bits; |
| 851 avctx->mv_bits = s->mv_bits; | |
| 852 avctx->misc_bits = s->misc_bits; | |
| 853 avctx->i_tex_bits = s->i_tex_bits; | |
| 854 avctx->p_tex_bits = s->p_tex_bits; | |
| 855 avctx->i_count = s->i_count; | |
| 856 avctx->p_count = s->p_count; | |
| 857 avctx->skip_count = s->skip_count; | |
| 0 | 858 |
| 324 | 859 MPV_frame_end(s); |
| 860 | |
| 861 if (s->out_format == FMT_MJPEG) | |
| 862 mjpeg_picture_trailer(s); | |
| 863 | |
| 864 avctx->quality = s->qscale; | |
| 329 | 865 |
| 866 if(s->flags&CODEC_FLAG_PASS1) | |
| 867 ff_write_pass1_stats(s); | |
| 456 | 868 |
| 324 | 869 } |
| 870 | |
| 871 s->input_picture_number++; | |
| 872 s->input_picture_in_gop_number++; | |
| 0 | 873 |
| 874 flush_put_bits(&s->pb); | |
| 268 | 875 s->frame_bits = (pbBufPtr(&s->pb) - s->pb.buf) * 8; |
| 329 | 876 if(s->pict_type==B_TYPE) s->pb_frame_bits+= s->frame_bits; |
| 877 else s->pb_frame_bits= s->frame_bits; | |
| 878 | |
| 268 | 879 s->total_bits += s->frame_bits; |
| 286 | 880 avctx->frame_bits = s->frame_bits; |
| 881 //printf("fcode: %d, type: %d, head: %d, mv: %d, misc: %d, frame: %d, itex: %d, ptex: %d\n", | |
| 882 //s->f_code, avctx->key_frame, s->header_bits, s->mv_bits, s->misc_bits, s->frame_bits, s->i_tex_bits, s->p_tex_bits); | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
233
diff
changeset
|
883 |
|
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
251
diff
changeset
|
884 if (avctx->get_psnr) { |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
251
diff
changeset
|
885 /* At this point pict->data should have the original frame */ |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
251
diff
changeset
|
886 /* an s->current_picture should have the coded/decoded frame */ |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
251
diff
changeset
|
887 get_psnr(pict->data, s->current_picture, |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
251
diff
changeset
|
888 pict->linesize, s->linesize, avctx); |
| 324 | 889 // printf("%f\n", avctx->psnr_y); |
|
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
251
diff
changeset
|
890 } |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
233
diff
changeset
|
891 return pbBufPtr(&s->pb) - s->pb.buf; |
| 0 | 892 } |
| 893 | |
| 255 | 894 static inline void gmc1_motion(MpegEncContext *s, |
| 895 UINT8 *dest_y, UINT8 *dest_cb, UINT8 *dest_cr, | |
| 896 int dest_offset, | |
| 897 UINT8 **ref_picture, int src_offset, | |
| 898 int h) | |
| 899 { | |
| 900 UINT8 *ptr; | |
| 556 | 901 int offset, src_x, src_y, linesize, uvlinesize; |
| 255 | 902 int motion_x, motion_y; |
| 566 | 903 int emu=0; |
| 255 | 904 |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
262
diff
changeset
|
905 if(s->real_sprite_warping_points>1) printf("more than 1 warp point isnt supported\n"); |
| 255 | 906 motion_x= s->sprite_offset[0][0]; |
| 907 motion_y= s->sprite_offset[0][1]; | |
| 908 src_x = s->mb_x * 16 + (motion_x >> (s->sprite_warping_accuracy+1)); | |
| 909 src_y = s->mb_y * 16 + (motion_y >> (s->sprite_warping_accuracy+1)); | |
| 910 motion_x<<=(3-s->sprite_warping_accuracy); | |
| 911 motion_y<<=(3-s->sprite_warping_accuracy); | |
| 912 src_x = clip(src_x, -16, s->width); | |
| 913 if (src_x == s->width) | |
| 914 motion_x =0; | |
| 915 src_y = clip(src_y, -16, s->height); | |
| 916 if (src_y == s->height) | |
| 917 motion_y =0; | |
| 918 | |
| 919 linesize = s->linesize; | |
| 556 | 920 uvlinesize = s->uvlinesize; |
| 255 | 921 ptr = ref_picture[0] + (src_y * linesize) + src_x + src_offset; |
| 922 | |
| 923 dest_y+=dest_offset; | |
| 566 | 924 if(s->flags&CODEC_FLAG_EMU_EDGE){ |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
925 if(src_x<0 || src_y<0 || src_x + (motion_x&15) + 16 > s->h_edge_pos |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
926 || src_y + (motion_y&15) + h > s->v_edge_pos){ |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
927 emulated_edge_mc(s, ptr, linesize, 17, h+1, src_x, src_y, s->h_edge_pos, s->v_edge_pos); |
| 566 | 928 ptr= s->edge_emu_buffer; |
| 929 emu=1; | |
| 930 } | |
| 931 } | |
| 255 | 932 gmc1(dest_y , ptr , linesize, h, motion_x&15, motion_y&15, s->no_rounding); |
| 933 gmc1(dest_y+8, ptr+8, linesize, h, motion_x&15, motion_y&15, s->no_rounding); | |
| 934 | |
| 935 motion_x= s->sprite_offset[1][0]; | |
| 936 motion_y= s->sprite_offset[1][1]; | |
| 937 src_x = s->mb_x * 8 + (motion_x >> (s->sprite_warping_accuracy+1)); | |
| 938 src_y = s->mb_y * 8 + (motion_y >> (s->sprite_warping_accuracy+1)); | |
| 939 motion_x<<=(3-s->sprite_warping_accuracy); | |
| 940 motion_y<<=(3-s->sprite_warping_accuracy); | |
| 941 src_x = clip(src_x, -8, s->width>>1); | |
| 942 if (src_x == s->width>>1) | |
| 943 motion_x =0; | |
| 944 src_y = clip(src_y, -8, s->height>>1); | |
| 945 if (src_y == s->height>>1) | |
| 946 motion_y =0; | |
| 947 | |
| 556 | 948 offset = (src_y * uvlinesize) + src_x + (src_offset>>1); |
| 255 | 949 ptr = ref_picture[1] + offset; |
| 566 | 950 if(emu){ |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
951 emulated_edge_mc(s, ptr, uvlinesize, 9, (h>>1)+1, src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1); |
| 566 | 952 ptr= s->edge_emu_buffer; |
| 953 } | |
| 556 | 954 gmc1(dest_cb + (dest_offset>>1), ptr, uvlinesize, h>>1, motion_x&15, motion_y&15, s->no_rounding); |
| 566 | 955 |
| 255 | 956 ptr = ref_picture[2] + offset; |
| 566 | 957 if(emu){ |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
958 emulated_edge_mc(s, ptr, uvlinesize, 9, (h>>1)+1, src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1); |
| 566 | 959 ptr= s->edge_emu_buffer; |
| 960 } | |
| 556 | 961 gmc1(dest_cr + (dest_offset>>1), ptr, uvlinesize, h>>1, motion_x&15, motion_y&15, s->no_rounding); |
| 255 | 962 |
| 963 return; | |
| 964 } | |
| 965 | |
| 566 | 966 static void emulated_edge_mc(MpegEncContext *s, UINT8 *src, int linesize, int block_w, int block_h, |
| 553 | 967 int src_x, int src_y, int w, int h){ |
| 968 int x, y; | |
| 969 int start_y, start_x, end_y, end_x; | |
| 566 | 970 UINT8 *buf= s->edge_emu_buffer; |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
971 |
| 553 | 972 if(src_y>= h){ |
| 973 src+= (h-1-src_y)*linesize; | |
| 974 src_y=h-1; | |
| 554 | 975 }else if(src_y<=-block_h){ |
| 976 src+= (1-block_h-src_y)*linesize; | |
| 977 src_y=1-block_h; | |
| 553 | 978 } |
| 979 if(src_x>= w){ | |
| 980 src+= (w-1-src_x); | |
| 981 src_x=w-1; | |
| 554 | 982 }else if(src_x<=-block_w){ |
| 983 src+= (1-block_w-src_x); | |
| 984 src_x=1-block_w; | |
| 553 | 985 } |
| 986 | |
| 987 start_y= MAX(0, -src_y); | |
| 988 start_x= MAX(0, -src_x); | |
| 989 end_y= MIN(block_h, h-src_y); | |
| 990 end_x= MIN(block_w, w-src_x); | |
| 566 | 991 |
| 553 | 992 // copy existing part |
| 993 for(y=start_y; y<end_y; y++){ | |
| 994 for(x=start_x; x<end_x; x++){ | |
| 995 buf[x + y*linesize]= src[x + y*linesize]; | |
| 996 } | |
| 997 } | |
| 998 | |
| 999 //top | |
| 1000 for(y=0; y<start_y; y++){ | |
| 1001 for(x=start_x; x<end_x; x++){ | |
| 1002 buf[x + y*linesize]= buf[x + start_y*linesize]; | |
| 1003 } | |
| 1004 } | |
| 1005 | |
| 1006 //bottom | |
| 1007 for(y=end_y; y<block_h; y++){ | |
| 1008 for(x=start_x; x<end_x; x++){ | |
| 1009 buf[x + y*linesize]= buf[x + (end_y-1)*linesize]; | |
| 1010 } | |
| 1011 } | |
| 1012 | |
| 1013 for(y=0; y<block_h; y++){ | |
| 1014 //left | |
| 1015 for(x=0; x<start_x; x++){ | |
| 1016 buf[x + y*linesize]= buf[start_x + y*linesize]; | |
| 1017 } | |
| 1018 | |
| 1019 //right | |
| 1020 for(x=end_x; x<block_w; x++){ | |
| 1021 buf[x + y*linesize]= buf[end_x - 1 + y*linesize]; | |
| 1022 } | |
| 1023 } | |
| 1024 } | |
| 1025 | |
| 1026 | |
| 0 | 1027 /* apply one mpeg motion vector to the three components */ |
| 1028 static inline void mpeg_motion(MpegEncContext *s, | |
| 1029 UINT8 *dest_y, UINT8 *dest_cb, UINT8 *dest_cr, | |
| 1030 int dest_offset, | |
| 1031 UINT8 **ref_picture, int src_offset, | |
| 1032 int field_based, op_pixels_func *pix_op, | |
| 1033 int motion_x, int motion_y, int h) | |
| 1034 { | |
| 1035 UINT8 *ptr; | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1036 int dxy, offset, mx, my, src_x, src_y, height, v_edge_pos, linesize, uvlinesize; |
| 553 | 1037 int emu=0; |
| 1038 | |
| 255 | 1039 if(s->quarter_sample) |
| 1040 { | |
| 1041 motion_x>>=1; | |
| 1042 motion_y>>=1; | |
| 1043 } | |
| 0 | 1044 dxy = ((motion_y & 1) << 1) | (motion_x & 1); |
| 1045 src_x = s->mb_x * 16 + (motion_x >> 1); | |
| 1046 src_y = s->mb_y * (16 >> field_based) + (motion_y >> 1); | |
| 1047 | |
| 1048 /* WARNING: do no forget half pels */ | |
| 1049 height = s->height >> field_based; | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1050 v_edge_pos = s->v_edge_pos >> field_based; |
| 0 | 1051 src_x = clip(src_x, -16, s->width); |
| 1052 if (src_x == s->width) | |
| 1053 dxy &= ~1; | |
| 1054 src_y = clip(src_y, -16, height); | |
| 1055 if (src_y == height) | |
| 1056 dxy &= ~2; | |
|
565
44d744901ded
interlaced mpeg2 fix ... replacing linesize>>1 by uvlinesize brainlessly wasnt a good idea
michaelni
parents:
562
diff
changeset
|
1057 linesize = s->linesize << field_based; |
|
44d744901ded
interlaced mpeg2 fix ... replacing linesize>>1 by uvlinesize brainlessly wasnt a good idea
michaelni
parents:
562
diff
changeset
|
1058 uvlinesize = s->uvlinesize << field_based; |
| 0 | 1059 ptr = ref_picture[0] + (src_y * linesize) + (src_x) + src_offset; |
| 1060 dest_y += dest_offset; | |
| 553 | 1061 |
| 1062 if(s->flags&CODEC_FLAG_EMU_EDGE){ | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1063 if(src_x<0 || src_y<0 || src_x + (motion_x&1) + 16 > s->h_edge_pos |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1064 || src_y + (motion_y&1) + h > v_edge_pos){ |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1065 emulated_edge_mc(s, ptr, linesize, 17, h+1, src_x, src_y, s->h_edge_pos, v_edge_pos); |
| 553 | 1066 ptr= s->edge_emu_buffer; |
| 1067 emu=1; | |
| 1068 } | |
| 1069 } | |
| 0 | 1070 pix_op[dxy](dest_y, ptr, linesize, h); |
| 1071 pix_op[dxy](dest_y + 8, ptr + 8, linesize, h); | |
| 1072 | |
| 485 | 1073 if(s->flags&CODEC_FLAG_GRAY) return; |
| 1074 | |
| 0 | 1075 if (s->out_format == FMT_H263) { |
| 1076 dxy = 0; | |
| 1077 if ((motion_x & 3) != 0) | |
| 1078 dxy |= 1; | |
| 1079 if ((motion_y & 3) != 0) | |
| 1080 dxy |= 2; | |
| 1081 mx = motion_x >> 2; | |
| 1082 my = motion_y >> 2; | |
| 1083 } else { | |
| 1084 mx = motion_x / 2; | |
| 1085 my = motion_y / 2; | |
| 1086 dxy = ((my & 1) << 1) | (mx & 1); | |
| 1087 mx >>= 1; | |
| 1088 my >>= 1; | |
| 1089 } | |
| 1090 | |
| 1091 src_x = s->mb_x * 8 + mx; | |
| 1092 src_y = s->mb_y * (8 >> field_based) + my; | |
| 1093 src_x = clip(src_x, -8, s->width >> 1); | |
| 1094 if (src_x == (s->width >> 1)) | |
| 1095 dxy &= ~1; | |
| 1096 src_y = clip(src_y, -8, height >> 1); | |
| 1097 if (src_y == (height >> 1)) | |
| 1098 dxy &= ~2; | |
|
565
44d744901ded
interlaced mpeg2 fix ... replacing linesize>>1 by uvlinesize brainlessly wasnt a good idea
michaelni
parents:
562
diff
changeset
|
1099 offset = (src_y * uvlinesize) + src_x + (src_offset >> 1); |
| 0 | 1100 ptr = ref_picture[1] + offset; |
| 553 | 1101 if(emu){ |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1102 emulated_edge_mc(s, ptr, uvlinesize, 9, (h>>1)+1, src_x, src_y, s->h_edge_pos>>1, v_edge_pos>>1); |
| 553 | 1103 ptr= s->edge_emu_buffer; |
| 1104 } | |
|
565
44d744901ded
interlaced mpeg2 fix ... replacing linesize>>1 by uvlinesize brainlessly wasnt a good idea
michaelni
parents:
562
diff
changeset
|
1105 pix_op[dxy](dest_cb + (dest_offset >> 1), ptr, uvlinesize, h >> 1); |
| 553 | 1106 |
| 0 | 1107 ptr = ref_picture[2] + offset; |
| 553 | 1108 if(emu){ |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1109 emulated_edge_mc(s, ptr, uvlinesize, 9, (h>>1)+1, src_x, src_y, s->h_edge_pos>>1, v_edge_pos>>1); |
| 553 | 1110 ptr= s->edge_emu_buffer; |
| 1111 } | |
|
565
44d744901ded
interlaced mpeg2 fix ... replacing linesize>>1 by uvlinesize brainlessly wasnt a good idea
michaelni
parents:
562
diff
changeset
|
1112 pix_op[dxy](dest_cr + (dest_offset >> 1), ptr, uvlinesize, h >> 1); |
| 0 | 1113 } |
| 1114 | |
| 255 | 1115 static inline void qpel_motion(MpegEncContext *s, |
| 1116 UINT8 *dest_y, UINT8 *dest_cb, UINT8 *dest_cr, | |
| 1117 int dest_offset, | |
| 1118 UINT8 **ref_picture, int src_offset, | |
| 1119 int field_based, op_pixels_func *pix_op, | |
| 1120 qpel_mc_func *qpix_op, | |
| 1121 int motion_x, int motion_y, int h) | |
| 1122 { | |
| 1123 UINT8 *ptr; | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1124 int dxy, offset, mx, my, src_x, src_y, height, v_edge_pos, linesize; |
| 554 | 1125 int emu=0; |
| 255 | 1126 |
| 1127 dxy = ((motion_y & 3) << 2) | (motion_x & 3); | |
| 1128 src_x = s->mb_x * 16 + (motion_x >> 2); | |
| 1129 src_y = s->mb_y * (16 >> field_based) + (motion_y >> 2); | |
| 1130 | |
| 1131 height = s->height >> field_based; | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1132 v_edge_pos = s->v_edge_pos >> field_based; |
| 255 | 1133 src_x = clip(src_x, -16, s->width); |
| 1134 if (src_x == s->width) | |
| 1135 dxy &= ~3; | |
| 1136 src_y = clip(src_y, -16, height); | |
| 1137 if (src_y == height) | |
| 1138 dxy &= ~12; | |
| 1139 linesize = s->linesize << field_based; | |
| 1140 ptr = ref_picture[0] + (src_y * linesize) + src_x + src_offset; | |
| 1141 dest_y += dest_offset; | |
| 1142 //printf("%d %d %d\n", src_x, src_y, dxy); | |
| 554 | 1143 |
| 1144 if(s->flags&CODEC_FLAG_EMU_EDGE){ | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1145 if(src_x<0 || src_y<0 || src_x + (motion_x&3) + 16 > s->h_edge_pos |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1146 || src_y + (motion_y&3) + h > v_edge_pos){ |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1147 emulated_edge_mc(s, ptr, linesize, 17, h+1, src_x, src_y, s->h_edge_pos, v_edge_pos); |
| 554 | 1148 ptr= s->edge_emu_buffer; |
| 1149 emu=1; | |
| 1150 } | |
| 1151 } | |
| 255 | 1152 qpix_op[dxy](dest_y , ptr , linesize, linesize, motion_x&3, motion_y&3); |
| 1153 qpix_op[dxy](dest_y + 8, ptr + 8, linesize, linesize, motion_x&3, motion_y&3); | |
| 1154 qpix_op[dxy](dest_y + linesize*8 , ptr + linesize*8 , linesize, linesize, motion_x&3, motion_y&3); | |
| 1155 qpix_op[dxy](dest_y + linesize*8 + 8, ptr + linesize*8 + 8, linesize, linesize, motion_x&3, motion_y&3); | |
| 1156 | |
| 485 | 1157 if(s->flags&CODEC_FLAG_GRAY) return; |
| 1158 | |
| 255 | 1159 mx= (motion_x>>1) | (motion_x&1); |
| 1160 my= (motion_y>>1) | (motion_y&1); | |
| 1161 | |
| 1162 dxy = 0; | |
| 1163 if ((mx & 3) != 0) | |
| 1164 dxy |= 1; | |
| 1165 if ((my & 3) != 0) | |
| 1166 dxy |= 2; | |
| 1167 mx = mx >> 2; | |
| 1168 my = my >> 2; | |
| 1169 | |
| 1170 src_x = s->mb_x * 8 + mx; | |
| 1171 src_y = s->mb_y * (8 >> field_based) + my; | |
| 1172 src_x = clip(src_x, -8, s->width >> 1); | |
| 1173 if (src_x == (s->width >> 1)) | |
| 1174 dxy &= ~1; | |
| 1175 src_y = clip(src_y, -8, height >> 1); | |
| 1176 if (src_y == (height >> 1)) | |
| 1177 dxy &= ~2; | |
| 1178 | |
| 556 | 1179 offset = (src_y * s->uvlinesize) + src_x + (src_offset >> 1); |
| 255 | 1180 ptr = ref_picture[1] + offset; |
| 554 | 1181 if(emu){ |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1182 emulated_edge_mc(s, ptr, s->uvlinesize, 9, (h>>1)+1, src_x, src_y, s->h_edge_pos>>1, v_edge_pos>>1); |
| 554 | 1183 ptr= s->edge_emu_buffer; |
| 1184 } | |
| 556 | 1185 pix_op[dxy](dest_cb + (dest_offset >> 1), ptr, s->uvlinesize, h >> 1); |
| 554 | 1186 |
| 255 | 1187 ptr = ref_picture[2] + offset; |
| 554 | 1188 if(emu){ |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1189 emulated_edge_mc(s, ptr, s->uvlinesize, 9, (h>>1)+1, src_x, src_y, s->h_edge_pos>>1, v_edge_pos>>1); |
| 554 | 1190 ptr= s->edge_emu_buffer; |
| 1191 } | |
| 556 | 1192 pix_op[dxy](dest_cr + (dest_offset >> 1), ptr, s->uvlinesize, h >> 1); |
| 255 | 1193 } |
| 1194 | |
| 1195 | |
| 0 | 1196 static inline void MPV_motion(MpegEncContext *s, |
| 1197 UINT8 *dest_y, UINT8 *dest_cb, UINT8 *dest_cr, | |
| 1198 int dir, UINT8 **ref_picture, | |
| 255 | 1199 op_pixels_func *pix_op, qpel_mc_func *qpix_op) |
| 0 | 1200 { |
| 1201 int dxy, offset, mx, my, src_x, src_y, motion_x, motion_y; | |
| 1202 int mb_x, mb_y, i; | |
| 1203 UINT8 *ptr, *dest; | |
| 554 | 1204 int emu=0; |
| 0 | 1205 |
| 1206 mb_x = s->mb_x; | |
| 1207 mb_y = s->mb_y; | |
| 1208 | |
| 1209 switch(s->mv_type) { | |
| 1210 case MV_TYPE_16X16: | |
| 255 | 1211 if(s->mcsel){ |
| 1212 #if 0 | |
| 1213 mpeg_motion(s, dest_y, dest_cb, dest_cr, 0, | |
| 1214 ref_picture, 0, | |
| 1215 0, pix_op, | |
| 1216 s->sprite_offset[0][0]>>3, | |
| 1217 s->sprite_offset[0][1]>>3, | |
| 1218 16); | |
| 1219 #else | |
| 1220 gmc1_motion(s, dest_y, dest_cb, dest_cr, 0, | |
| 1221 ref_picture, 0, | |
| 1222 16); | |
| 1223 #endif | |
| 262 | 1224 }else if(s->quarter_sample && dir==0){ //FIXME |
| 255 | 1225 qpel_motion(s, dest_y, dest_cb, dest_cr, 0, |
| 1226 ref_picture, 0, | |
| 1227 0, pix_op, qpix_op, | |
| 1228 s->mv[dir][0][0], s->mv[dir][0][1], 16); | |
| 1229 }else{ | |
| 1230 mpeg_motion(s, dest_y, dest_cb, dest_cr, 0, | |
| 1231 ref_picture, 0, | |
| 1232 0, pix_op, | |
| 1233 s->mv[dir][0][0], s->mv[dir][0][1], 16); | |
| 1234 } | |
| 0 | 1235 break; |
| 1236 case MV_TYPE_8X8: | |
| 1237 for(i=0;i<4;i++) { | |
| 1238 motion_x = s->mv[dir][i][0]; | |
| 1239 motion_y = s->mv[dir][i][1]; | |
| 1240 | |
| 1241 dxy = ((motion_y & 1) << 1) | (motion_x & 1); | |
| 1242 src_x = mb_x * 16 + (motion_x >> 1) + (i & 1) * 8; | |
| 295 | 1243 src_y = mb_y * 16 + (motion_y >> 1) + (i >>1) * 8; |
| 0 | 1244 |
| 1245 /* WARNING: do no forget half pels */ | |
| 1246 src_x = clip(src_x, -16, s->width); | |
| 1247 if (src_x == s->width) | |
| 1248 dxy &= ~1; | |
| 1249 src_y = clip(src_y, -16, s->height); | |
| 1250 if (src_y == s->height) | |
| 1251 dxy &= ~2; | |
| 1252 | |
| 1253 ptr = ref_picture[0] + (src_y * s->linesize) + (src_x); | |
| 554 | 1254 if(s->flags&CODEC_FLAG_EMU_EDGE){ |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1255 if(src_x<0 || src_y<0 || src_x + (motion_x&1) + 8 > s->h_edge_pos |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1256 || src_y + (motion_y&1) + 8 > s->v_edge_pos){ |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1257 emulated_edge_mc(s, ptr, s->linesize, 9, 9, src_x, src_y, s->h_edge_pos, s->v_edge_pos); |
| 554 | 1258 ptr= s->edge_emu_buffer; |
| 1259 } | |
| 1260 } | |
| 0 | 1261 dest = dest_y + ((i & 1) * 8) + (i >> 1) * 8 * s->linesize; |
| 1262 pix_op[dxy](dest, ptr, s->linesize, 8); | |
| 1263 } | |
| 485 | 1264 |
| 1265 if(s->flags&CODEC_FLAG_GRAY) break; | |
| 0 | 1266 /* In case of 8X8, we construct a single chroma motion vector |
| 1267 with a special rounding */ | |
| 1268 mx = 0; | |
| 1269 my = 0; | |
| 1270 for(i=0;i<4;i++) { | |
| 1271 mx += s->mv[dir][i][0]; | |
| 1272 my += s->mv[dir][i][1]; | |
| 1273 } | |
| 1274 if (mx >= 0) | |
| 1275 mx = (h263_chroma_roundtab[mx & 0xf] + ((mx >> 3) & ~1)); | |
| 1276 else { | |
| 1277 mx = -mx; | |
| 1278 mx = -(h263_chroma_roundtab[mx & 0xf] + ((mx >> 3) & ~1)); | |
| 1279 } | |
| 1280 if (my >= 0) | |
| 1281 my = (h263_chroma_roundtab[my & 0xf] + ((my >> 3) & ~1)); | |
| 1282 else { | |
| 1283 my = -my; | |
| 1284 my = -(h263_chroma_roundtab[my & 0xf] + ((my >> 3) & ~1)); | |
| 1285 } | |
| 1286 dxy = ((my & 1) << 1) | (mx & 1); | |
| 1287 mx >>= 1; | |
| 1288 my >>= 1; | |
| 1289 | |
| 1290 src_x = mb_x * 8 + mx; | |
| 1291 src_y = mb_y * 8 + my; | |
| 1292 src_x = clip(src_x, -8, s->width/2); | |
| 1293 if (src_x == s->width/2) | |
| 1294 dxy &= ~1; | |
| 1295 src_y = clip(src_y, -8, s->height/2); | |
| 1296 if (src_y == s->height/2) | |
| 1297 dxy &= ~2; | |
| 1298 | |
| 556 | 1299 offset = (src_y * (s->uvlinesize)) + src_x; |
| 0 | 1300 ptr = ref_picture[1] + offset; |
| 554 | 1301 if(s->flags&CODEC_FLAG_EMU_EDGE){ |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1302 if(src_x<0 || src_y<0 || src_x + (dxy &1) + 8 > s->h_edge_pos>>1 |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1303 || src_y + (dxy>>1) + 8 > s->v_edge_pos>>1){ |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1304 emulated_edge_mc(s, ptr, s->uvlinesize, 9, 9, src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1); |
| 554 | 1305 ptr= s->edge_emu_buffer; |
| 1306 emu=1; | |
| 1307 } | |
| 1308 } | |
| 556 | 1309 pix_op[dxy](dest_cb, ptr, s->uvlinesize, 8); |
| 554 | 1310 |
| 0 | 1311 ptr = ref_picture[2] + offset; |
| 554 | 1312 if(emu){ |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1313 emulated_edge_mc(s, ptr, s->uvlinesize, 9, 9, src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1); |
| 554 | 1314 ptr= s->edge_emu_buffer; |
| 1315 } | |
| 556 | 1316 pix_op[dxy](dest_cr, ptr, s->uvlinesize, 8); |
| 0 | 1317 break; |
| 1318 case MV_TYPE_FIELD: | |
| 1319 if (s->picture_structure == PICT_FRAME) { | |
| 1320 /* top field */ | |
| 1321 mpeg_motion(s, dest_y, dest_cb, dest_cr, 0, | |
| 1322 ref_picture, s->field_select[dir][0] ? s->linesize : 0, | |
| 1323 1, pix_op, | |
| 1324 s->mv[dir][0][0], s->mv[dir][0][1], 8); | |
| 1325 /* bottom field */ | |
| 1326 mpeg_motion(s, dest_y, dest_cb, dest_cr, s->linesize, | |
| 1327 ref_picture, s->field_select[dir][1] ? s->linesize : 0, | |
| 1328 1, pix_op, | |
| 1329 s->mv[dir][1][0], s->mv[dir][1][1], 8); | |
| 1330 } else { | |
| 1331 | |
| 1332 | |
| 1333 } | |
| 1334 break; | |
| 1335 } | |
| 1336 } | |
| 1337 | |
| 1338 | |
| 1339 /* put block[] to dest[] */ | |
| 1340 static inline void put_dct(MpegEncContext *s, | |
| 1341 DCTELEM *block, int i, UINT8 *dest, int line_size) | |
| 1342 { | |
| 1343 if (!s->mpeg2) | |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
1344 s->dct_unquantize(s, block, i, s->qscale); |
| 478 | 1345 ff_idct_put (dest, line_size, block); |
| 0 | 1346 } |
| 1347 | |
| 1348 /* add block[] to dest[] */ | |
| 1349 static inline void add_dct(MpegEncContext *s, | |
| 1350 DCTELEM *block, int i, UINT8 *dest, int line_size) | |
| 1351 { | |
| 1352 if (s->block_last_index[i] >= 0) { | |
| 481 | 1353 ff_idct_add (dest, line_size, block); |
| 1354 } | |
| 1355 } | |
| 1356 | |
| 1357 static inline void add_dequant_dct(MpegEncContext *s, | |
| 1358 DCTELEM *block, int i, UINT8 *dest, int line_size) | |
| 1359 { | |
| 1360 if (s->block_last_index[i] >= 0) { | |
| 1361 s->dct_unquantize(s, block, i, s->qscale); | |
| 324 | 1362 |
| 478 | 1363 ff_idct_add (dest, line_size, block); |
| 0 | 1364 } |
| 1365 } | |
| 1366 | |
| 456 | 1367 /** |
| 1368 * cleans dc, ac, coded_block for the current non intra MB | |
| 1369 */ | |
| 1370 void ff_clean_intra_table_entries(MpegEncContext *s) | |
| 1371 { | |
| 1372 int wrap = s->block_wrap[0]; | |
| 1373 int xy = s->block_index[0]; | |
| 1374 | |
| 1375 s->dc_val[0][xy ] = | |
| 1376 s->dc_val[0][xy + 1 ] = | |
| 1377 s->dc_val[0][xy + wrap] = | |
| 1378 s->dc_val[0][xy + 1 + wrap] = 1024; | |
| 1379 /* ac pred */ | |
| 1380 memset(s->ac_val[0][xy ], 0, 32 * sizeof(INT16)); | |
| 1381 memset(s->ac_val[0][xy + wrap], 0, 32 * sizeof(INT16)); | |
| 1382 if (s->msmpeg4_version>=3) { | |
| 1383 s->coded_block[xy ] = | |
| 1384 s->coded_block[xy + 1 ] = | |
| 1385 s->coded_block[xy + wrap] = | |
| 1386 s->coded_block[xy + 1 + wrap] = 0; | |
| 1387 } | |
| 1388 /* chroma */ | |
| 1389 wrap = s->block_wrap[4]; | |
| 1390 xy = s->mb_x + 1 + (s->mb_y + 1) * wrap; | |
| 1391 s->dc_val[1][xy] = | |
| 1392 s->dc_val[2][xy] = 1024; | |
| 1393 /* ac pred */ | |
| 1394 memset(s->ac_val[1][xy], 0, 16 * sizeof(INT16)); | |
| 1395 memset(s->ac_val[2][xy], 0, 16 * sizeof(INT16)); | |
| 1396 | |
| 1397 s->mbintra_table[s->mb_x + s->mb_y*s->mb_width]= 0; | |
| 1398 } | |
| 1399 | |
| 0 | 1400 /* generic function called after a macroblock has been parsed by the |
| 1401 decoder or after it has been encoded by the encoder. | |
| 1402 | |
| 1403 Important variables used: | |
| 1404 s->mb_intra : true if intra macroblock | |
| 1405 s->mv_dir : motion vector direction | |
| 1406 s->mv_type : motion vector type | |
| 1407 s->mv : motion vector | |
| 1408 s->interlaced_dct : true if interlaced dct used (mpeg2) | |
| 1409 */ | |
| 1410 void MPV_decode_mb(MpegEncContext *s, DCTELEM block[6][64]) | |
| 1411 { | |
| 244 | 1412 int mb_x, mb_y; |
| 481 | 1413 const int mb_xy = s->mb_y * s->mb_width + s->mb_x; |
| 0 | 1414 |
| 1415 mb_x = s->mb_x; | |
| 1416 mb_y = s->mb_y; | |
| 1417 | |
|
108
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
79
diff
changeset
|
1418 #ifdef FF_POSTPROCESS |
|
466
805714c0c10f
new field for communicating with external postprocessing
nickols_k
parents:
462
diff
changeset
|
1419 /* Obsolete. Exists for compatibility with mplayer only. */ |
|
108
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
79
diff
changeset
|
1420 quant_store[mb_y][mb_x]=s->qscale; |
|
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
79
diff
changeset
|
1421 //printf("[%02d][%02d] %d\n",mb_x,mb_y,s->qscale); |
|
466
805714c0c10f
new field for communicating with external postprocessing
nickols_k
parents:
462
diff
changeset
|
1422 #else |
| 575 | 1423 /* even more obsolete, exists for mplayer xp only */ |
| 467 | 1424 if(s->avctx->quant_store) s->avctx->quant_store[mb_y*s->avctx->qstride+mb_x] = s->qscale; |
|
108
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
79
diff
changeset
|
1425 #endif |
| 575 | 1426 s->qscale_table[mb_xy]= s->qscale; |
|
108
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
79
diff
changeset
|
1427 |
| 0 | 1428 /* update DC predictors for P macroblocks */ |
| 1429 if (!s->mb_intra) { | |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
1430 if (s->h263_pred || s->h263_aic) { |
| 481 | 1431 if(s->mbintra_table[mb_xy]) |
| 456 | 1432 ff_clean_intra_table_entries(s); |
| 0 | 1433 } else { |
| 456 | 1434 s->last_dc[0] = |
| 1435 s->last_dc[1] = | |
| 0 | 1436 s->last_dc[2] = 128 << s->intra_dc_precision; |
| 1437 } | |
| 1438 } | |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
1439 else if (s->h263_pred || s->h263_aic) |
| 481 | 1440 s->mbintra_table[mb_xy]=1; |
|
191
883f184537e6
AC table reset (memset) optimization - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
189
diff
changeset
|
1441 |
| 280 | 1442 /* update motion predictor, not for B-frames as they need the motion_val from the last P/S-Frame */ |
| 481 | 1443 if (s->out_format == FMT_H263 && s->pict_type!=B_TYPE) { //FIXME move into h263.c if possible, format specific stuff shouldnt be here |
| 1444 int motion_x, motion_y; | |
| 0 | 1445 |
| 481 | 1446 const int wrap = s->block_wrap[0]; |
| 1447 const int xy = s->block_index[0]; | |
| 0 | 1448 if (s->mb_intra) { |
| 1449 motion_x = 0; | |
| 1450 motion_y = 0; | |
| 1451 goto motion_init; | |
| 1452 } else if (s->mv_type == MV_TYPE_16X16) { | |
| 1453 motion_x = s->mv[0][0][0]; | |
| 1454 motion_y = s->mv[0][0][1]; | |
| 1455 motion_init: | |
| 1456 /* no update if 8X8 because it has been done during parsing */ | |
| 244 | 1457 s->motion_val[xy][0] = motion_x; |
| 1458 s->motion_val[xy][1] = motion_y; | |
| 1459 s->motion_val[xy + 1][0] = motion_x; | |
| 1460 s->motion_val[xy + 1][1] = motion_y; | |
| 1461 s->motion_val[xy + wrap][0] = motion_x; | |
| 1462 s->motion_val[xy + wrap][1] = motion_y; | |
| 1463 s->motion_val[xy + 1 + wrap][0] = motion_x; | |
| 1464 s->motion_val[xy + 1 + wrap][1] = motion_y; | |
| 598 | 1465 s->non_b_mv4_table[xy]=0; |
| 1466 } else { /* 8X8 */ | |
| 1467 s->non_b_mv4_table[xy]=1; | |
| 0 | 1468 } |
| 1469 } | |
| 1470 | |
| 324 | 1471 if (!(s->encoding && (s->intra_only || s->pict_type==B_TYPE))) { |
| 0 | 1472 UINT8 *dest_y, *dest_cb, *dest_cr; |
| 481 | 1473 int dct_linesize, dct_offset; |
| 1474 op_pixels_func *op_pix; | |
| 1475 qpel_mc_func *op_qpix; | |
|
7
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
1476 |
| 324 | 1477 /* avoid copy if macroblock skipped in last frame too |
| 1478 dont touch it for B-frames as they need the skip info from the next p-frame */ | |
| 1479 if (s->pict_type != B_TYPE) { | |
| 481 | 1480 UINT8 *mbskip_ptr = &s->mbskip_table[mb_xy]; |
|
7
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
1481 if (s->mb_skiped) { |
|
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
1482 s->mb_skiped = 0; |
| 556 | 1483 |
| 1484 (*mbskip_ptr) ++; /* indicate that this time we skiped it */ | |
| 1485 if(*mbskip_ptr >99) *mbskip_ptr= 99; | |
| 1486 | |
| 324 | 1487 /* if previous was skipped too, then nothing to do ! |
| 1488 skip only during decoding as we might trash the buffers during encoding a bit */ | |
| 556 | 1489 if (*mbskip_ptr >= s->ip_buffer_count && !s->encoding) |
|
7
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
1490 goto the_end; |
|
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
1491 } else { |
|
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
1492 *mbskip_ptr = 0; /* not skipped */ |
|
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
1493 } |
|
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
1494 } |
| 0 | 1495 |
|
562
23e58889a108
exporting mbskip_table after it has been allocated
michaelni
parents:
557
diff
changeset
|
1496 dest_y = s->current_picture [0] + (mb_y * 16* s->linesize ) + mb_x * 16; |
|
23e58889a108
exporting mbskip_table after it has been allocated
michaelni
parents:
557
diff
changeset
|
1497 dest_cb = s->current_picture[1] + (mb_y * 8 * s->uvlinesize) + mb_x * 8; |
|
23e58889a108
exporting mbskip_table after it has been allocated
michaelni
parents:
557
diff
changeset
|
1498 dest_cr = s->current_picture[2] + (mb_y * 8 * s->uvlinesize) + mb_x * 8; |
| 0 | 1499 |
| 1500 if (s->interlaced_dct) { | |
| 1501 dct_linesize = s->linesize * 2; | |
| 1502 dct_offset = s->linesize; | |
| 1503 } else { | |
| 1504 dct_linesize = s->linesize; | |
| 1505 dct_offset = s->linesize * 8; | |
| 1506 } | |
| 1507 | |
| 1508 if (!s->mb_intra) { | |
| 1509 /* motion handling */ | |
| 456 | 1510 /* decoding or more than one mb_type (MC was allready done otherwise) */ |
| 481 | 1511 if((!s->encoding) || (s->mb_type[mb_xy]&(s->mb_type[mb_xy]-1))){ |
| 327 | 1512 if ((!s->no_rounding) || s->pict_type==B_TYPE){ |
| 324 | 1513 op_pix = put_pixels_tab; |
| 1514 op_qpix= qpel_mc_rnd_tab; | |
| 1515 }else{ | |
| 1516 op_pix = put_no_rnd_pixels_tab; | |
| 1517 op_qpix= qpel_mc_no_rnd_tab; | |
| 1518 } | |
| 0 | 1519 |
| 324 | 1520 if (s->mv_dir & MV_DIR_FORWARD) { |
| 1521 MPV_motion(s, dest_y, dest_cb, dest_cr, 0, s->last_picture, op_pix, op_qpix); | |
| 327 | 1522 if ((!s->no_rounding) || s->pict_type==B_TYPE) |
| 324 | 1523 op_pix = avg_pixels_tab; |
| 1524 else | |
| 1525 op_pix = avg_no_rnd_pixels_tab; | |
| 1526 } | |
| 1527 if (s->mv_dir & MV_DIR_BACKWARD) { | |
| 1528 MPV_motion(s, dest_y, dest_cb, dest_cr, 1, s->next_picture, op_pix, op_qpix); | |
| 1529 } | |
| 0 | 1530 } |
| 1531 | |
| 481 | 1532 /* skip dequant / idct if we are really late ;) */ |
| 1533 if(s->hurry_up>1) goto the_end; | |
| 1534 | |
| 0 | 1535 /* add dct residue */ |
| 591 | 1536 if(s->encoding || !(s->mpeg2 || s->h263_msmpeg4 || (s->codec_id==CODEC_ID_MPEG4 && !s->mpeg_quant))){ |
| 481 | 1537 add_dequant_dct(s, block[0], 0, dest_y, dct_linesize); |
| 1538 add_dequant_dct(s, block[1], 1, dest_y + 8, dct_linesize); | |
| 1539 add_dequant_dct(s, block[2], 2, dest_y + dct_offset, dct_linesize); | |
| 1540 add_dequant_dct(s, block[3], 3, dest_y + dct_offset + 8, dct_linesize); | |
| 0 | 1541 |
| 485 | 1542 if(!(s->flags&CODEC_FLAG_GRAY)){ |
| 556 | 1543 add_dequant_dct(s, block[4], 4, dest_cb, s->uvlinesize); |
| 1544 add_dequant_dct(s, block[5], 5, dest_cr, s->uvlinesize); | |
| 485 | 1545 } |
| 481 | 1546 } else { |
| 1547 add_dct(s, block[0], 0, dest_y, dct_linesize); | |
| 1548 add_dct(s, block[1], 1, dest_y + 8, dct_linesize); | |
| 1549 add_dct(s, block[2], 2, dest_y + dct_offset, dct_linesize); | |
| 1550 add_dct(s, block[3], 3, dest_y + dct_offset + 8, dct_linesize); | |
| 1551 | |
| 485 | 1552 if(!(s->flags&CODEC_FLAG_GRAY)){ |
| 556 | 1553 add_dct(s, block[4], 4, dest_cb, s->uvlinesize); |
| 1554 add_dct(s, block[5], 5, dest_cr, s->uvlinesize); | |
| 485 | 1555 } |
| 481 | 1556 } |
| 0 | 1557 } else { |
| 1558 /* dct only in intra block */ | |
| 1559 put_dct(s, block[0], 0, dest_y, dct_linesize); | |
| 1560 put_dct(s, block[1], 1, dest_y + 8, dct_linesize); | |
| 1561 put_dct(s, block[2], 2, dest_y + dct_offset, dct_linesize); | |
| 1562 put_dct(s, block[3], 3, dest_y + dct_offset + 8, dct_linesize); | |
| 1563 | |
| 485 | 1564 if(!(s->flags&CODEC_FLAG_GRAY)){ |
| 556 | 1565 put_dct(s, block[4], 4, dest_cb, s->uvlinesize); |
| 1566 put_dct(s, block[5], 5, dest_cr, s->uvlinesize); | |
| 485 | 1567 } |
| 0 | 1568 } |
| 1569 } | |
|
7
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
1570 the_end: |
| 294 | 1571 emms_c(); //FIXME remove |
| 1572 } | |
| 1573 | |
| 456 | 1574 static inline void dct_single_coeff_elimination(MpegEncContext *s, int n, int threshold, int skip_dc) |
| 1575 { | |
| 1576 static const char tab[64]= | |
| 1577 {3,2,2,1,1,1,1,1, | |
| 1578 1,1,1,1,1,1,1,1, | |
| 1579 1,1,1,1,1,1,1,1, | |
| 1580 0,0,0,0,0,0,0,0, | |
| 1581 0,0,0,0,0,0,0,0, | |
| 1582 0,0,0,0,0,0,0,0, | |
| 1583 0,0,0,0,0,0,0,0, | |
| 1584 0,0,0,0,0,0,0,0}; | |
| 1585 int score=0; | |
| 1586 int run=0; | |
| 1587 int i; | |
| 1588 DCTELEM *block= s->block[n]; | |
| 1589 const int last_index= s->block_last_index[n]; | |
| 1590 | |
| 1591 if(skip_dc) skip_dc=1; | |
|
604
4344cc8033bd
skip blocks with small chroma dc too (if the user wants it) needed to avoid IDCT(input coeffs !=0) == 0 problems which cause catastrophic error accumulation at qp=1
michaelni
parents:
599
diff
changeset
|
1592 if(threshold<0){ |
|
4344cc8033bd
skip blocks with small chroma dc too (if the user wants it) needed to avoid IDCT(input coeffs !=0) == 0 problems which cause catastrophic error accumulation at qp=1
michaelni
parents:
599
diff
changeset
|
1593 skip_dc=0; |
|
4344cc8033bd
skip blocks with small chroma dc too (if the user wants it) needed to avoid IDCT(input coeffs !=0) == 0 problems which cause catastrophic error accumulation at qp=1
michaelni
parents:
599
diff
changeset
|
1594 threshold= -threshold; |
|
4344cc8033bd
skip blocks with small chroma dc too (if the user wants it) needed to avoid IDCT(input coeffs !=0) == 0 problems which cause catastrophic error accumulation at qp=1
michaelni
parents:
599
diff
changeset
|
1595 } |
|
4344cc8033bd
skip blocks with small chroma dc too (if the user wants it) needed to avoid IDCT(input coeffs !=0) == 0 problems which cause catastrophic error accumulation at qp=1
michaelni
parents:
599
diff
changeset
|
1596 |
| 456 | 1597 /* are all which we could set to zero are allready zero? */ |
| 1598 if(last_index<=skip_dc - 1) return; | |
| 1599 | |
| 1600 for(i=0; i<=last_index; i++){ | |
| 1601 const int j = zigzag_direct[i]; | |
| 1602 const int level = ABS(block[j]); | |
| 1603 if(level==1){ | |
| 1604 if(skip_dc && i==0) continue; | |
| 1605 score+= tab[run]; | |
| 1606 run=0; | |
| 1607 }else if(level>1){ | |
| 1608 return; | |
| 1609 }else{ | |
| 1610 run++; | |
| 1611 } | |
| 1612 } | |
| 1613 if(score >= threshold) return; | |
| 1614 for(i=skip_dc; i<=last_index; i++){ | |
| 1615 const int j = zigzag_direct[i]; | |
| 1616 block[j]=0; | |
| 1617 } | |
| 1618 if(block[0]) s->block_last_index[n]= 0; | |
| 1619 else s->block_last_index[n]= -1; | |
| 1620 } | |
| 1621 | |
| 344 | 1622 static inline void clip_coeffs(MpegEncContext *s, DCTELEM *block, int last_index) |
| 1623 { | |
| 1624 int i; | |
| 1625 const int maxlevel= s->max_qcoeff; | |
| 1626 const int minlevel= s->min_qcoeff; | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
1627 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
1628 for(i=0;i<=last_index; i++){ |
| 344 | 1629 const int j = zigzag_direct[i]; |
| 1630 int level = block[j]; | |
| 1631 | |
| 1632 if (level>maxlevel) level=maxlevel; | |
| 1633 else if(level<minlevel) level=minlevel; | |
| 1634 block[j]= level; | |
| 1635 } | |
| 1636 } | |
| 324 | 1637 |
| 1638 static void encode_mb(MpegEncContext *s, int motion_x, int motion_y) | |
| 294 | 1639 { |
| 1640 const int mb_x= s->mb_x; | |
| 1641 const int mb_y= s->mb_y; | |
| 1642 int i; | |
| 456 | 1643 int skip_dct[6]; |
| 324 | 1644 #if 0 |
| 1645 if (s->interlaced_dct) { | |
| 1646 dct_linesize = s->linesize * 2; | |
| 1647 dct_offset = s->linesize; | |
| 1648 } else { | |
| 1649 dct_linesize = s->linesize; | |
| 1650 dct_offset = s->linesize * 8; | |
| 1651 } | |
| 1652 #endif | |
| 456 | 1653 for(i=0; i<6; i++) skip_dct[i]=0; |
| 294 | 1654 |
| 324 | 1655 if (s->mb_intra) { |
| 1656 UINT8 *ptr; | |
| 1657 int wrap; | |
|
570
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1658 int emu=0; |
| 294 | 1659 |
| 324 | 1660 wrap = s->linesize; |
| 1661 ptr = s->new_picture[0] + (mb_y * 16 * wrap) + mb_x * 16; | |
|
570
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1662 if(mb_x*16+16 > s->width || mb_y*16+16 > s->height){ |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1663 emulated_edge_mc(s, ptr, wrap, 16, 16, mb_x*16, mb_y*16, s->width, s->height); |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1664 ptr= s->edge_emu_buffer; |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1665 emu=1; |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1666 } |
| 324 | 1667 get_pixels(s->block[0], ptr , wrap); |
| 1668 get_pixels(s->block[1], ptr + 8, wrap); | |
| 1669 get_pixels(s->block[2], ptr + 8 * wrap , wrap); | |
| 1670 get_pixels(s->block[3], ptr + 8 * wrap + 8, wrap); | |
| 294 | 1671 |
| 487 | 1672 if(s->flags&CODEC_FLAG_GRAY){ |
| 1673 skip_dct[4]= 1; | |
| 1674 skip_dct[5]= 1; | |
| 1675 }else{ | |
| 1676 wrap >>=1; | |
| 1677 ptr = s->new_picture[1] + (mb_y * 8 * wrap) + mb_x * 8; | |
|
570
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1678 if(emu){ |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1679 emulated_edge_mc(s, ptr, wrap, 8, 8, mb_x*8, mb_y*8, s->width>>1, s->height>>1); |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1680 ptr= s->edge_emu_buffer; |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1681 } |
| 487 | 1682 get_pixels(s->block[4], ptr, wrap); |
| 294 | 1683 |
| 487 | 1684 ptr = s->new_picture[2] + (mb_y * 8 * wrap) + mb_x * 8; |
|
570
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1685 if(emu){ |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1686 emulated_edge_mc(s, ptr, wrap, 8, 8, mb_x*8, mb_y*8, s->width>>1, s->height>>1); |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1687 ptr= s->edge_emu_buffer; |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1688 } |
| 487 | 1689 get_pixels(s->block[5], ptr, wrap); |
| 1690 } | |
| 324 | 1691 }else{ |
| 1692 op_pixels_func *op_pix; | |
| 1693 qpel_mc_func *op_qpix; | |
| 1694 UINT8 *dest_y, *dest_cb, *dest_cr; | |
| 456 | 1695 UINT8 *ptr_y, *ptr_cb, *ptr_cr; |
| 1696 int wrap_y, wrap_c; | |
|
570
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1697 int emu=0; |
| 294 | 1698 |
| 324 | 1699 dest_y = s->current_picture[0] + (mb_y * 16 * s->linesize ) + mb_x * 16; |
| 556 | 1700 dest_cb = s->current_picture[1] + (mb_y * 8 * (s->uvlinesize)) + mb_x * 8; |
| 1701 dest_cr = s->current_picture[2] + (mb_y * 8 * (s->uvlinesize)) + mb_x * 8; | |
| 456 | 1702 wrap_y = s->linesize; |
| 1703 wrap_c = wrap_y>>1; | |
| 1704 ptr_y = s->new_picture[0] + (mb_y * 16 * wrap_y) + mb_x * 16; | |
| 1705 ptr_cb = s->new_picture[1] + (mb_y * 8 * wrap_c) + mb_x * 8; | |
| 1706 ptr_cr = s->new_picture[2] + (mb_y * 8 * wrap_c) + mb_x * 8; | |
| 324 | 1707 |
| 327 | 1708 if ((!s->no_rounding) || s->pict_type==B_TYPE){ |
| 324 | 1709 op_pix = put_pixels_tab; |
| 1710 op_qpix= qpel_mc_rnd_tab; | |
| 295 | 1711 }else{ |
| 324 | 1712 op_pix = put_no_rnd_pixels_tab; |
| 1713 op_qpix= qpel_mc_no_rnd_tab; | |
| 1714 } | |
| 295 | 1715 |
| 324 | 1716 if (s->mv_dir & MV_DIR_FORWARD) { |
| 1717 MPV_motion(s, dest_y, dest_cb, dest_cr, 0, s->last_picture, op_pix, op_qpix); | |
| 327 | 1718 if ((!s->no_rounding) || s->pict_type==B_TYPE) |
| 324 | 1719 op_pix = avg_pixels_tab; |
| 1720 else | |
| 1721 op_pix = avg_no_rnd_pixels_tab; | |
| 1722 } | |
| 1723 if (s->mv_dir & MV_DIR_BACKWARD) { | |
| 1724 MPV_motion(s, dest_y, dest_cb, dest_cr, 1, s->next_picture, op_pix, op_qpix); | |
| 1725 } | |
| 295 | 1726 |
|
570
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1727 if(mb_x*16+16 > s->width || mb_y*16+16 > s->height){ |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1728 emulated_edge_mc(s, ptr_y, wrap_y, 16, 16, mb_x*16, mb_y*16, s->width, s->height); |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1729 ptr_y= s->edge_emu_buffer; |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1730 emu=1; |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1731 } |
| 456 | 1732 diff_pixels(s->block[0], ptr_y , dest_y , wrap_y); |
| 1733 diff_pixels(s->block[1], ptr_y + 8, dest_y + 8, wrap_y); | |
| 1734 diff_pixels(s->block[2], ptr_y + 8 * wrap_y , dest_y + 8 * wrap_y , wrap_y); | |
| 1735 diff_pixels(s->block[3], ptr_y + 8 * wrap_y + 8, dest_y + 8 * wrap_y + 8, wrap_y); | |
| 487 | 1736 |
| 1737 if(s->flags&CODEC_FLAG_GRAY){ | |
| 1738 skip_dct[4]= 1; | |
| 1739 skip_dct[5]= 1; | |
| 1740 }else{ | |
|
570
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1741 if(emu){ |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1742 emulated_edge_mc(s, ptr_cb, wrap_c, 8, 8, mb_x*8, mb_y*8, s->width>>1, s->height>>1); |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1743 ptr_cb= s->edge_emu_buffer; |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1744 } |
| 487 | 1745 diff_pixels(s->block[4], ptr_cb, dest_cb, wrap_c); |
|
570
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1746 if(emu){ |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1747 emulated_edge_mc(s, ptr_cr, wrap_c, 8, 8, mb_x*8, mb_y*8, s->width>>1, s->height>>1); |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1748 ptr_cr= s->edge_emu_buffer; |
|
274d9c5a75ee
use edge emu for encoding of width or height %16!=0 files
michaelni
parents:
569
diff
changeset
|
1749 } |
| 487 | 1750 diff_pixels(s->block[5], ptr_cr, dest_cr, wrap_c); |
| 1751 } | |
| 1752 | |
| 456 | 1753 /* pre quantization */ |
| 1754 if(s->mc_mb_var[s->mb_width*mb_y+ mb_x]<2*s->qscale*s->qscale){ | |
| 1755 if(pix_abs8x8(ptr_y , dest_y , wrap_y) < 20*s->qscale) skip_dct[0]= 1; | |
| 1756 if(pix_abs8x8(ptr_y + 8, dest_y + 8, wrap_y) < 20*s->qscale) skip_dct[1]= 1; | |
| 1757 if(pix_abs8x8(ptr_y + 8*wrap_y , dest_y + 8*wrap_y , wrap_y) < 20*s->qscale) skip_dct[2]= 1; | |
| 1758 if(pix_abs8x8(ptr_y + 8*wrap_y + 8, dest_y + 8*wrap_y + 8, wrap_y) < 20*s->qscale) skip_dct[3]= 1; | |
| 1759 if(pix_abs8x8(ptr_cb , dest_cb , wrap_y) < 20*s->qscale) skip_dct[4]= 1; | |
| 1760 if(pix_abs8x8(ptr_cr , dest_cr , wrap_y) < 20*s->qscale) skip_dct[5]= 1; | |
| 1761 #if 0 | |
| 1762 { | |
| 1763 static int stat[7]; | |
| 1764 int num=0; | |
| 1765 for(i=0; i<6; i++) | |
| 1766 if(skip_dct[i]) num++; | |
| 1767 stat[num]++; | |
| 1768 | |
| 1769 if(s->mb_x==0 && s->mb_y==0){ | |
| 1770 for(i=0; i<7; i++){ | |
| 1771 printf("%6d %1d\n", stat[i], i); | |
| 1772 } | |
| 1773 } | |
| 1774 } | |
| 1775 #endif | |
| 1776 } | |
| 324 | 1777 |
| 294 | 1778 } |
| 1779 | |
| 1780 #if 0 | |
| 1781 { | |
| 1782 float adap_parm; | |
| 1783 | |
| 1784 adap_parm = ((s->avg_mb_var << 1) + s->mb_var[s->mb_width*mb_y+mb_x] + 1.0) / | |
| 1785 ((s->mb_var[s->mb_width*mb_y+mb_x] << 1) + s->avg_mb_var + 1.0); | |
| 1786 | |
| 1787 printf("\ntype=%c qscale=%2d adap=%0.2f dquant=%4.2f var=%4d avgvar=%4d", | |
| 1788 (s->mb_type[s->mb_width*mb_y+mb_x] > 0) ? 'I' : 'P', | |
| 1789 s->qscale, adap_parm, s->qscale*adap_parm, | |
| 1790 s->mb_var[s->mb_width*mb_y+mb_x], s->avg_mb_var); | |
| 1791 } | |
| 1792 #endif | |
| 1793 /* DCT & quantize */ | |
| 344 | 1794 if(s->out_format==FMT_MJPEG){ |
| 1795 for(i=0;i<6;i++) { | |
| 1796 int overflow; | |
| 1797 s->block_last_index[i] = dct_quantize(s, s->block[i], i, 8, &overflow); | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
1798 if (overflow) clip_coeffs(s, s->block[i], s->block_last_index[i]); |
| 344 | 1799 } |
| 1800 }else{ | |
| 1801 for(i=0;i<6;i++) { | |
| 456 | 1802 if(!skip_dct[i]){ |
| 1803 int overflow; | |
| 1804 s->block_last_index[i] = dct_quantize(s, s->block[i], i, s->qscale, &overflow); | |
| 344 | 1805 // FIXME we could decide to change to quantizer instead of clipping |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
1806 // JS: I don't think that would be a good idea it could lower quality instead |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
1807 // of improve it. Just INTRADC clipping deserves changes in quantizer |
| 456 | 1808 if (overflow) clip_coeffs(s, s->block[i], s->block_last_index[i]); |
| 1809 }else | |
| 1810 s->block_last_index[i]= -1; | |
| 344 | 1811 } |
| 456 | 1812 if(s->luma_elim_threshold && !s->mb_intra) |
| 1813 for(i=0; i<4; i++) | |
| 1814 dct_single_coeff_elimination(s, i, s->luma_elim_threshold, 0); | |
| 1815 if(s->chroma_elim_threshold && !s->mb_intra) | |
| 1816 for(i=4; i<6; i++) | |
| 1817 dct_single_coeff_elimination(s, i, s->chroma_elim_threshold, 1); | |
| 294 | 1818 } |
| 1819 | |
| 487 | 1820 if((s->flags&CODEC_FLAG_GRAY) && s->mb_intra){ |
| 1821 s->block_last_index[4]= | |
| 1822 s->block_last_index[5]= 0; | |
| 1823 s->block[4][0]= | |
| 1824 s->block[5][0]= 128; | |
| 1825 } | |
| 1826 | |
| 294 | 1827 /* huffman encode */ |
| 1828 switch(s->out_format) { | |
| 1829 case FMT_MPEG1: | |
| 1830 mpeg1_encode_mb(s, s->block, motion_x, motion_y); | |
| 1831 break; | |
| 1832 case FMT_H263: | |
| 1833 if (s->h263_msmpeg4) | |
| 1834 msmpeg4_encode_mb(s, s->block, motion_x, motion_y); | |
| 1835 else if(s->h263_pred) | |
| 1836 mpeg4_encode_mb(s, s->block, motion_x, motion_y); | |
| 1837 else | |
| 1838 h263_encode_mb(s, s->block, motion_x, motion_y); | |
| 1839 break; | |
| 1840 case FMT_MJPEG: | |
| 1841 mjpeg_encode_mb(s, s->block); | |
| 1842 break; | |
| 1843 } | |
| 1844 } | |
| 1845 | |
| 456 | 1846 void ff_copy_bits(PutBitContext *pb, UINT8 *src, int length) |
| 294 | 1847 { |
| 326 | 1848 int bytes= length>>4; |
| 1849 int bits= length&15; | |
| 1850 int i; | |
| 1851 | |
| 456 | 1852 if(length==0) return; |
| 1853 | |
| 326 | 1854 for(i=0; i<bytes; i++) put_bits(pb, 16, be2me_16(((uint16_t*)src)[i])); |
| 1855 put_bits(pb, bits, be2me_16(((uint16_t*)src)[i])>>(16-bits)); | |
| 0 | 1856 } |
| 1857 | |
| 456 | 1858 static inline void copy_context_before_encode(MpegEncContext *d, MpegEncContext *s, int type){ |
| 326 | 1859 int i; |
| 1860 | |
| 1861 memcpy(d->last_mv, s->last_mv, 2*2*2*sizeof(int)); //FIXME is memcpy faster then a loop? | |
| 1862 | |
| 1863 /* mpeg1 */ | |
| 1864 d->mb_incr= s->mb_incr; | |
| 1865 for(i=0; i<3; i++) | |
| 1866 d->last_dc[i]= s->last_dc[i]; | |
| 1867 | |
| 1868 /* statistics */ | |
| 1869 d->mv_bits= s->mv_bits; | |
| 1870 d->i_tex_bits= s->i_tex_bits; | |
| 1871 d->p_tex_bits= s->p_tex_bits; | |
| 1872 d->i_count= s->i_count; | |
| 1873 d->p_count= s->p_count; | |
| 1874 d->skip_count= s->skip_count; | |
| 1875 d->misc_bits= s->misc_bits; | |
| 329 | 1876 d->last_bits= 0; |
| 327 | 1877 |
| 1878 d->mb_skiped= s->mb_skiped; | |
| 326 | 1879 } |
| 1880 | |
| 456 | 1881 static inline void copy_context_after_encode(MpegEncContext *d, MpegEncContext *s, int type){ |
| 326 | 1882 int i; |
| 1883 | |
| 1884 memcpy(d->mv, s->mv, 2*4*2*sizeof(int)); | |
| 1885 memcpy(d->last_mv, s->last_mv, 2*2*2*sizeof(int)); //FIXME is memcpy faster then a loop? | |
| 1886 | |
| 1887 /* mpeg1 */ | |
| 1888 d->mb_incr= s->mb_incr; | |
| 1889 for(i=0; i<3; i++) | |
| 1890 d->last_dc[i]= s->last_dc[i]; | |
| 1891 | |
| 1892 /* statistics */ | |
| 1893 d->mv_bits= s->mv_bits; | |
| 1894 d->i_tex_bits= s->i_tex_bits; | |
| 1895 d->p_tex_bits= s->p_tex_bits; | |
| 1896 d->i_count= s->i_count; | |
| 1897 d->p_count= s->p_count; | |
| 1898 d->skip_count= s->skip_count; | |
| 1899 d->misc_bits= s->misc_bits; | |
| 1900 | |
| 1901 d->mb_intra= s->mb_intra; | |
| 327 | 1902 d->mb_skiped= s->mb_skiped; |
| 326 | 1903 d->mv_type= s->mv_type; |
| 1904 d->mv_dir= s->mv_dir; | |
| 1905 d->pb= s->pb; | |
| 456 | 1906 if(s->data_partitioning){ |
| 1907 d->pb2= s->pb2; | |
| 1908 d->tex_pb= s->tex_pb; | |
| 1909 } | |
| 326 | 1910 d->block= s->block; |
| 1911 for(i=0; i<6; i++) | |
| 1912 d->block_last_index[i]= s->block_last_index[i]; | |
| 1913 } | |
| 1914 | |
| 456 | 1915 static inline void encode_mb_hq(MpegEncContext *s, MpegEncContext *backup, MpegEncContext *best, int type, |
| 1916 PutBitContext pb[2], PutBitContext pb2[2], PutBitContext tex_pb[2], | |
| 1917 int *dmin, int *next_block, int motion_x, int motion_y) | |
| 1918 { | |
| 1919 int bits_count; | |
| 1920 | |
| 1921 copy_context_before_encode(s, backup, type); | |
| 1922 | |
| 1923 s->block= s->blocks[*next_block]; | |
| 1924 s->pb= pb[*next_block]; | |
| 1925 if(s->data_partitioning){ | |
| 1926 s->pb2 = pb2 [*next_block]; | |
| 1927 s->tex_pb= tex_pb[*next_block]; | |
| 1928 } | |
| 1929 | |
| 1930 encode_mb(s, motion_x, motion_y); | |
| 1931 | |
| 1932 bits_count= get_bit_count(&s->pb); | |
| 1933 if(s->data_partitioning){ | |
| 1934 bits_count+= get_bit_count(&s->pb2); | |
| 1935 bits_count+= get_bit_count(&s->tex_pb); | |
| 1936 } | |
| 1937 | |
| 1938 if(bits_count<*dmin){ | |
| 1939 *dmin= bits_count; | |
| 1940 *next_block^=1; | |
| 1941 | |
| 1942 copy_context_after_encode(best, s, type); | |
| 1943 } | |
| 1944 } | |
| 326 | 1945 |
| 0 | 1946 static void encode_picture(MpegEncContext *s, int picture_number) |
| 1947 { | |
| 294 | 1948 int mb_x, mb_y, last_gob, pdif = 0; |
| 1949 int i; | |
| 286 | 1950 int bits; |
| 326 | 1951 MpegEncContext best_s, backup_s; |
| 456 | 1952 UINT8 bit_buf[2][3000]; |
| 1953 UINT8 bit_buf2[2][3000]; | |
| 1954 UINT8 bit_buf_tex[2][3000]; | |
| 1955 PutBitContext pb[2], pb2[2], tex_pb[2]; | |
| 1956 | |
| 1957 for(i=0; i<2; i++){ | |
| 1958 init_put_bits(&pb [i], bit_buf [i], 3000, NULL, NULL); | |
| 1959 init_put_bits(&pb2 [i], bit_buf2 [i], 3000, NULL, NULL); | |
| 1960 init_put_bits(&tex_pb[i], bit_buf_tex[i], 3000, NULL, NULL); | |
| 1961 } | |
| 0 | 1962 |
| 1963 s->picture_number = picture_number; | |
| 268 | 1964 |
| 294 | 1965 s->block_wrap[0]= |
| 1966 s->block_wrap[1]= | |
| 1967 s->block_wrap[2]= | |
| 1968 s->block_wrap[3]= s->mb_width*2 + 2; | |
| 1969 s->block_wrap[4]= | |
| 1970 s->block_wrap[5]= s->mb_width + 2; | |
| 1971 | |
| 268 | 1972 /* Reset the average MB variance */ |
| 456 | 1973 s->mb_var_sum = 0; |
| 1974 s->mc_mb_var_sum = 0; | |
| 327 | 1975 |
| 1976 /* we need to initialize some time vars before we can encode b-frames */ | |
| 1977 if (s->h263_pred && !s->h263_msmpeg4) | |
| 1978 ff_set_mpeg4_time(s, s->picture_number); | |
| 1979 | |
| 268 | 1980 /* Estimate motion for every MB */ |
| 324 | 1981 if(s->pict_type != I_TYPE){ |
| 294 | 1982 for(mb_y=0; mb_y < s->mb_height; mb_y++) { |
| 1983 s->block_index[0]= s->block_wrap[0]*(mb_y*2 + 1) - 1; | |
| 1984 s->block_index[1]= s->block_wrap[0]*(mb_y*2 + 1); | |
| 1985 s->block_index[2]= s->block_wrap[0]*(mb_y*2 + 2) - 1; | |
| 1986 s->block_index[3]= s->block_wrap[0]*(mb_y*2 + 2); | |
| 1987 for(mb_x=0; mb_x < s->mb_width; mb_x++) { | |
| 1988 s->mb_x = mb_x; | |
| 1989 s->mb_y = mb_y; | |
| 1990 s->block_index[0]+=2; | |
| 1991 s->block_index[1]+=2; | |
| 1992 s->block_index[2]+=2; | |
| 1993 s->block_index[3]+=2; | |
| 268 | 1994 |
| 294 | 1995 /* compute motion vector & mb_type and store in context */ |
| 324 | 1996 if(s->pict_type==B_TYPE) |
| 1997 ff_estimate_b_frame_motion(s, mb_x, mb_y); | |
| 1998 else | |
| 1999 ff_estimate_p_frame_motion(s, mb_x, mb_y); | |
| 294 | 2000 // s->mb_type[mb_y*s->mb_width + mb_x]=MB_TYPE_INTER; |
| 268 | 2001 } |
| 2002 } | |
| 294 | 2003 emms_c(); |
| 456 | 2004 }else /* if(s->pict_type == I_TYPE) */{ |
| 294 | 2005 /* I-Frame */ |
| 2006 //FIXME do we need to zero them? | |
| 2007 memset(s->motion_val[0], 0, sizeof(INT16)*(s->mb_width*2 + 2)*(s->mb_height*2 + 2)*2); | |
| 324 | 2008 memset(s->p_mv_table , 0, sizeof(INT16)*(s->mb_width+2)*(s->mb_height+2)*2); |
| 294 | 2009 memset(s->mb_type , MB_TYPE_INTRA, sizeof(UINT8)*s->mb_width*s->mb_height); |
| 268 | 2010 } |
| 2011 | |
| 456 | 2012 if(s->mb_var_sum < s->mc_mb_var_sum && s->pict_type == P_TYPE){ //FIXME subtract MV bits |
| 271 | 2013 s->pict_type= I_TYPE; |
| 294 | 2014 memset(s->mb_type , MB_TYPE_INTRA, sizeof(UINT8)*s->mb_width*s->mb_height); |
| 329 | 2015 if(s->max_b_frames==0){ |
| 2016 s->input_pict_type= I_TYPE; | |
| 2017 s->input_picture_in_gop_number=0; | |
| 2018 } | |
| 294 | 2019 //printf("Scene change detected, encoding as I Frame\n"); |
| 271 | 2020 } |
| 324 | 2021 |
| 2022 if(s->pict_type==P_TYPE || s->pict_type==S_TYPE) | |
| 2023 s->f_code= ff_get_best_fcode(s, s->p_mv_table, MB_TYPE_INTER); | |
| 2024 ff_fix_long_p_mvs(s); | |
| 2025 if(s->pict_type==B_TYPE){ | |
| 2026 s->f_code= ff_get_best_fcode(s, s->b_forw_mv_table, MB_TYPE_FORWARD); | |
| 2027 s->b_code= ff_get_best_fcode(s, s->b_back_mv_table, MB_TYPE_BACKWARD); | |
| 327 | 2028 |
| 2029 ff_fix_long_b_mvs(s, s->b_forw_mv_table, s->f_code, MB_TYPE_FORWARD); | |
| 2030 ff_fix_long_b_mvs(s, s->b_back_mv_table, s->b_code, MB_TYPE_BACKWARD); | |
| 2031 ff_fix_long_b_mvs(s, s->b_bidir_forw_mv_table, s->f_code, MB_TYPE_BIDIR); | |
| 2032 ff_fix_long_b_mvs(s, s->b_bidir_back_mv_table, s->b_code, MB_TYPE_BIDIR); | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
2033 } |
| 324 | 2034 |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
2035 //printf("f_code %d ///\n", s->f_code); |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
271
diff
changeset
|
2036 |
| 271 | 2037 // printf("%d %d\n", s->avg_mb_var, s->mc_mb_var); |
| 329 | 2038 if(s->flags&CODEC_FLAG_PASS2) |
| 2039 s->qscale = ff_rate_estimate_qscale_pass2(s); | |
| 2040 else if (!s->fixed_qscale) | |
| 2041 s->qscale = ff_rate_estimate_qscale(s); | |
| 2042 | |
| 0 | 2043 if (s->out_format == FMT_MJPEG) { |
| 2044 /* for mjpeg, we do include qscale in the matrix */ | |
|
533
3c07cf9595de
adding ff prefix to avoid global name conficts with xvid (patch by Marko Kreen <marko at l-t.ee>)
michaelni
parents:
514
diff
changeset
|
2045 s->intra_matrix[0] = ff_mpeg1_default_intra_matrix[0]; |
| 0 | 2046 for(i=1;i<64;i++) |
|
533
3c07cf9595de
adding ff prefix to avoid global name conficts with xvid (patch by Marko Kreen <marko at l-t.ee>)
michaelni
parents:
514
diff
changeset
|
2047 s->intra_matrix[i] = CLAMP_TO_8BIT((ff_mpeg1_default_intra_matrix[i] * s->qscale) >> 3); |
| 344 | 2048 convert_matrix(s->q_intra_matrix, s->q_intra_matrix16, |
| 2049 s->q_intra_matrix16_bias, s->intra_matrix, s->intra_quant_bias); | |
| 0 | 2050 } |
| 2051 | |
| 286 | 2052 s->last_bits= get_bit_count(&s->pb); |
| 0 | 2053 switch(s->out_format) { |
| 2054 case FMT_MJPEG: | |
| 2055 mjpeg_picture_header(s); | |
| 2056 break; | |
| 2057 case FMT_H263: | |
| 2058 if (s->h263_msmpeg4) | |
| 2059 msmpeg4_encode_picture_header(s, picture_number); | |
| 2060 else if (s->h263_pred) | |
| 2061 mpeg4_encode_picture_header(s, picture_number); | |
| 2062 else if (s->h263_rv10) | |
| 2063 rv10_encode_picture_header(s, picture_number); | |
| 2064 else | |
| 2065 h263_encode_picture_header(s, picture_number); | |
| 2066 break; | |
| 2067 case FMT_MPEG1: | |
| 2068 mpeg1_encode_picture_header(s, picture_number); | |
| 2069 break; | |
| 2070 } | |
| 286 | 2071 bits= get_bit_count(&s->pb); |
| 2072 s->header_bits= bits - s->last_bits; | |
| 2073 s->last_bits= bits; | |
| 2074 s->mv_bits=0; | |
| 2075 s->misc_bits=0; | |
| 2076 s->i_tex_bits=0; | |
| 2077 s->p_tex_bits=0; | |
| 2078 s->i_count=0; | |
| 2079 s->p_count=0; | |
| 2080 s->skip_count=0; | |
| 2081 | |
| 0 | 2082 /* init last dc values */ |
| 2083 /* note: quant matrix value (8) is implied here */ | |
| 2084 s->last_dc[0] = 128; | |
| 2085 s->last_dc[1] = 128; | |
| 2086 s->last_dc[2] = 128; | |
| 2087 s->mb_incr = 1; | |
| 2088 s->last_mv[0][0][0] = 0; | |
| 2089 s->last_mv[0][0][1] = 0; | |
| 2090 | |
| 162 | 2091 /* Get the GOB height based on picture height */ |
| 231 | 2092 if (s->out_format == FMT_H263 && !s->h263_pred && !s->h263_msmpeg4) { |
| 162 | 2093 if (s->height <= 400) |
| 2094 s->gob_index = 1; | |
| 2095 else if (s->height <= 800) | |
| 2096 s->gob_index = 2; | |
| 2097 else | |
| 2098 s->gob_index = 4; | |
| 456 | 2099 }else if(s->codec_id==CODEC_ID_MPEG4){ |
| 2100 s->gob_index = 1; | |
| 162 | 2101 } |
| 456 | 2102 |
| 2103 if(s->codec_id==CODEC_ID_MPEG4 && s->data_partitioning && s->pict_type!=B_TYPE) | |
| 2104 ff_mpeg4_init_partitions(s); | |
| 2105 | |
| 2106 s->resync_mb_x=0; | |
| 2107 s->resync_mb_y=0; | |
|
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2108 for(mb_y=0; mb_y < s->mb_height; mb_y++) { |
| 456 | 2109 /* Put GOB header based on RTP MTU for formats which support it per line (H263*)*/ |
|
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2110 /* TODO: Put all this stuff in a separate generic function */ |
|
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2111 if (s->rtp_mode) { |
|
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2112 if (!mb_y) { |
|
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2113 s->ptr_lastgob = s->pb.buf; |
|
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2114 s->ptr_last_mb_line = s->pb.buf; |
|
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2115 } else if (s->out_format == FMT_H263 && !s->h263_pred && !s->h263_msmpeg4 && !(mb_y % s->gob_index)) { |
| 456 | 2116 // MN: we could move the space check from h263 -> here, as its not h263 specific |
|
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2117 last_gob = h263_encode_gob_header(s, mb_y); |
|
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2118 if (last_gob) { |
| 456 | 2119 s->first_slice_line = 1; |
| 2120 }else{ | |
| 2121 /*MN: we reset it here instead at the end of each line cuz mpeg4 can have | |
| 2122 slice lines starting & ending in the middle*/ | |
| 2123 s->first_slice_line = 0; | |
|
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2124 } |
|
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2125 } |
|
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2126 } |
| 499 | 2127 |
| 2128 s->y_dc_scale= s->y_dc_scale_table[ s->qscale ]; | |
| 2129 s->c_dc_scale= s->c_dc_scale_table[ s->qscale ]; | |
|
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
2130 |
| 266 | 2131 s->block_index[0]= s->block_wrap[0]*(mb_y*2 + 1) - 1; |
| 2132 s->block_index[1]= s->block_wrap[0]*(mb_y*2 + 1); | |
| 2133 s->block_index[2]= s->block_wrap[0]*(mb_y*2 + 2) - 1; | |
| 2134 s->block_index[3]= s->block_wrap[0]*(mb_y*2 + 2); | |
| 2135 s->block_index[4]= s->block_wrap[4]*(mb_y + 1) + s->block_wrap[0]*(s->mb_height*2 + 2); | |
| 2136 s->block_index[5]= s->block_wrap[4]*(mb_y + 1 + s->mb_height + 2) + s->block_wrap[0]*(s->mb_height*2 + 2); | |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
2137 for(mb_x=0; mb_x < s->mb_width; mb_x++) { |
| 327 | 2138 const int mb_type= s->mb_type[mb_y * s->mb_width + mb_x]; |
| 2139 const int xy= (mb_y+1) * (s->mb_width+2) + mb_x + 1; | |
| 456 | 2140 // int d; |
| 294 | 2141 int dmin=10000000; |
| 0 | 2142 |
|
232
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
2143 s->mb_x = mb_x; |
|
b640ec5948b0
- Now the ME is done for the entire picture when enconding, the
pulento
parents:
231
diff
changeset
|
2144 s->mb_y = mb_y; |
| 266 | 2145 s->block_index[0]+=2; |
| 2146 s->block_index[1]+=2; | |
| 2147 s->block_index[2]+=2; | |
| 2148 s->block_index[3]+=2; | |
| 2149 s->block_index[4]++; | |
| 2150 s->block_index[5]++; | |
| 456 | 2151 |
| 2152 /* write gob / video packet header for formats which support it at any MB (MPEG4) */ | |
| 2153 if(s->rtp_mode && s->mb_y>0 && s->codec_id==CODEC_ID_MPEG4){ | |
| 2154 int pdif= pbBufPtr(&s->pb) - s->ptr_lastgob; | |
| 2155 | |
| 2156 //the *2 is there so we stay below the requested size | |
| 2157 if(pdif + s->mb_line_avgsize/s->mb_width >= s->rtp_payload_size){ | |
| 2158 if(s->codec_id==CODEC_ID_MPEG4){ | |
| 2159 if(s->data_partitioning && s->pict_type!=B_TYPE){ | |
| 2160 ff_mpeg4_merge_partitions(s); | |
| 2161 ff_mpeg4_init_partitions(s); | |
| 2162 } | |
| 2163 ff_mpeg4_encode_video_packet_header(s); | |
| 2164 | |
| 2165 if(s->flags&CODEC_FLAG_PASS1){ | |
| 2166 int bits= get_bit_count(&s->pb); | |
| 2167 s->misc_bits+= bits - s->last_bits; | |
| 2168 s->last_bits= bits; | |
| 2169 } | |
| 2170 ff_mpeg4_clean_buffers(s); | |
| 2171 } | |
| 2172 s->ptr_lastgob = pbBufPtr(&s->pb); | |
| 2173 s->first_slice_line=1; | |
| 2174 s->resync_mb_x=mb_x; | |
| 2175 s->resync_mb_y=mb_y; | |
| 2176 } | |
| 2177 | |
| 2178 if( (s->resync_mb_x == s->mb_x) | |
| 2179 && s->resync_mb_y+1 == s->mb_y){ | |
| 2180 s->first_slice_line=0; | |
| 2181 } | |
| 2182 } | |
| 2183 | |
| 294 | 2184 if(mb_type & (mb_type-1)){ // more than 1 MB type possible |
| 327 | 2185 int next_block=0; |
| 456 | 2186 int pb_bits_count, pb2_bits_count, tex_pb_bits_count; |
| 326 | 2187 |
| 2188 copy_context_before_encode(&backup_s, s, -1); | |
| 456 | 2189 backup_s.pb= s->pb; |
| 2190 best_s.data_partitioning= s->data_partitioning; | |
| 2191 if(s->data_partitioning){ | |
| 2192 backup_s.pb2= s->pb2; | |
| 2193 backup_s.tex_pb= s->tex_pb; | |
| 2194 } | |
| 326 | 2195 |
| 294 | 2196 if(mb_type&MB_TYPE_INTER){ |
| 327 | 2197 s->mv_dir = MV_DIR_FORWARD; |
| 295 | 2198 s->mv_type = MV_TYPE_16X16; |
| 294 | 2199 s->mb_intra= 0; |
| 324 | 2200 s->mv[0][0][0] = s->p_mv_table[xy][0]; |
| 2201 s->mv[0][0][1] = s->p_mv_table[xy][1]; | |
| 456 | 2202 encode_mb_hq(s, &backup_s, &best_s, MB_TYPE_INTER, pb, pb2, tex_pb, |
| 2203 &dmin, &next_block, s->mv[0][0][0], s->mv[0][0][1]); | |
| 0 | 2204 } |
| 326 | 2205 if(mb_type&MB_TYPE_INTER4V){ |
| 327 | 2206 s->mv_dir = MV_DIR_FORWARD; |
| 295 | 2207 s->mv_type = MV_TYPE_8X8; |
| 2208 s->mb_intra= 0; | |
| 2209 for(i=0; i<4; i++){ | |
| 2210 s->mv[0][i][0] = s->motion_val[s->block_index[i]][0]; | |
| 2211 s->mv[0][i][1] = s->motion_val[s->block_index[i]][1]; | |
| 2212 } | |
| 456 | 2213 encode_mb_hq(s, &backup_s, &best_s, MB_TYPE_INTER4V, pb, pb2, tex_pb, |
| 2214 &dmin, &next_block, 0, 0); | |
| 327 | 2215 } |
| 2216 if(mb_type&MB_TYPE_FORWARD){ | |
| 2217 s->mv_dir = MV_DIR_FORWARD; | |
| 2218 s->mv_type = MV_TYPE_16X16; | |
| 2219 s->mb_intra= 0; | |
| 2220 s->mv[0][0][0] = s->b_forw_mv_table[xy][0]; | |
| 2221 s->mv[0][0][1] = s->b_forw_mv_table[xy][1]; | |
| 456 | 2222 encode_mb_hq(s, &backup_s, &best_s, MB_TYPE_FORWARD, pb, pb2, tex_pb, |
| 2223 &dmin, &next_block, s->mv[0][0][0], s->mv[0][0][1]); | |
| 327 | 2224 } |
| 2225 if(mb_type&MB_TYPE_BACKWARD){ | |
| 2226 s->mv_dir = MV_DIR_BACKWARD; | |
| 2227 s->mv_type = MV_TYPE_16X16; | |
| 2228 s->mb_intra= 0; | |
| 2229 s->mv[1][0][0] = s->b_back_mv_table[xy][0]; | |
| 2230 s->mv[1][0][1] = s->b_back_mv_table[xy][1]; | |
| 456 | 2231 encode_mb_hq(s, &backup_s, &best_s, MB_TYPE_BACKWARD, pb, pb2, tex_pb, |
| 2232 &dmin, &next_block, s->mv[1][0][0], s->mv[1][0][1]); | |
| 327 | 2233 } |
| 2234 if(mb_type&MB_TYPE_BIDIR){ | |
| 2235 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD; | |
| 2236 s->mv_type = MV_TYPE_16X16; | |
| 2237 s->mb_intra= 0; | |
| 2238 s->mv[0][0][0] = s->b_bidir_forw_mv_table[xy][0]; | |
| 2239 s->mv[0][0][1] = s->b_bidir_forw_mv_table[xy][1]; | |
| 2240 s->mv[1][0][0] = s->b_bidir_back_mv_table[xy][0]; | |
| 2241 s->mv[1][0][1] = s->b_bidir_back_mv_table[xy][1]; | |
| 456 | 2242 encode_mb_hq(s, &backup_s, &best_s, MB_TYPE_BIDIR, pb, pb2, tex_pb, |
| 2243 &dmin, &next_block, 0, 0); | |
| 327 | 2244 } |
| 2245 if(mb_type&MB_TYPE_DIRECT){ | |
| 2246 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD | MV_DIRECT; | |
| 2247 s->mv_type = MV_TYPE_16X16; //FIXME | |
| 2248 s->mb_intra= 0; | |
| 2249 s->mv[0][0][0] = s->b_direct_forw_mv_table[xy][0]; | |
| 2250 s->mv[0][0][1] = s->b_direct_forw_mv_table[xy][1]; | |
| 2251 s->mv[1][0][0] = s->b_direct_back_mv_table[xy][0]; | |
| 2252 s->mv[1][0][1] = s->b_direct_back_mv_table[xy][1]; | |
| 456 | 2253 encode_mb_hq(s, &backup_s, &best_s, MB_TYPE_DIRECT, pb, pb2, tex_pb, |
| 2254 &dmin, &next_block, s->b_direct_mv_table[xy][0], s->b_direct_mv_table[xy][1]); | |
| 295 | 2255 } |
| 294 | 2256 if(mb_type&MB_TYPE_INTRA){ |
| 327 | 2257 s->mv_dir = MV_DIR_FORWARD; |
| 295 | 2258 s->mv_type = MV_TYPE_16X16; |
| 294 | 2259 s->mb_intra= 1; |
| 2260 s->mv[0][0][0] = 0; | |
| 2261 s->mv[0][0][1] = 0; | |
| 456 | 2262 encode_mb_hq(s, &backup_s, &best_s, MB_TYPE_INTRA, pb, pb2, tex_pb, |
| 2263 &dmin, &next_block, 0, 0); | |
| 326 | 2264 /* force cleaning of ac/dc pred stuff if needed ... */ |
| 2265 if(s->h263_pred || s->h263_aic) | |
| 2266 s->mbintra_table[mb_x + mb_y*s->mb_width]=1; | |
| 295 | 2267 } |
| 326 | 2268 copy_context_after_encode(s, &best_s, -1); |
| 456 | 2269 |
| 2270 pb_bits_count= get_bit_count(&s->pb); | |
| 2271 flush_put_bits(&s->pb); | |
| 2272 ff_copy_bits(&backup_s.pb, bit_buf[next_block^1], pb_bits_count); | |
| 2273 s->pb= backup_s.pb; | |
| 2274 | |
| 2275 if(s->data_partitioning){ | |
| 2276 pb2_bits_count= get_bit_count(&s->pb2); | |
| 2277 flush_put_bits(&s->pb2); | |
| 2278 ff_copy_bits(&backup_s.pb2, bit_buf2[next_block^1], pb2_bits_count); | |
| 2279 s->pb2= backup_s.pb2; | |
| 2280 | |
| 2281 tex_pb_bits_count= get_bit_count(&s->tex_pb); | |
| 2282 flush_put_bits(&s->tex_pb); | |
| 2283 ff_copy_bits(&backup_s.tex_pb, bit_buf_tex[next_block^1], tex_pb_bits_count); | |
| 2284 s->tex_pb= backup_s.tex_pb; | |
| 2285 } | |
| 329 | 2286 s->last_bits= get_bit_count(&s->pb); |
| 294 | 2287 } else { |
| 324 | 2288 int motion_x, motion_y; |
| 2289 s->mv_type=MV_TYPE_16X16; | |
| 294 | 2290 // only one MB-Type possible |
| 327 | 2291 switch(mb_type){ |
| 2292 case MB_TYPE_INTRA: | |
| 324 | 2293 s->mv_dir = MV_DIR_FORWARD; |
| 294 | 2294 s->mb_intra= 1; |
| 324 | 2295 motion_x= s->mv[0][0][0] = 0; |
| 2296 motion_y= s->mv[0][0][1] = 0; | |
| 327 | 2297 break; |
| 2298 case MB_TYPE_INTER: | |
| 324 | 2299 s->mv_dir = MV_DIR_FORWARD; |
| 2300 s->mb_intra= 0; | |
| 2301 motion_x= s->mv[0][0][0] = s->p_mv_table[xy][0]; | |
| 2302 motion_y= s->mv[0][0][1] = s->p_mv_table[xy][1]; | |
| 327 | 2303 break; |
| 456 | 2304 case MB_TYPE_INTER4V: |
| 2305 s->mv_dir = MV_DIR_FORWARD; | |
| 2306 s->mv_type = MV_TYPE_8X8; | |
| 2307 s->mb_intra= 0; | |
| 2308 for(i=0; i<4; i++){ | |
| 2309 s->mv[0][i][0] = s->motion_val[s->block_index[i]][0]; | |
| 2310 s->mv[0][i][1] = s->motion_val[s->block_index[i]][1]; | |
| 2311 } | |
| 2312 motion_x= motion_y= 0; | |
| 2313 break; | |
| 327 | 2314 case MB_TYPE_DIRECT: |
| 324 | 2315 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD | MV_DIRECT; |
| 2316 s->mb_intra= 0; | |
| 327 | 2317 motion_x=s->b_direct_mv_table[xy][0]; |
| 2318 motion_y=s->b_direct_mv_table[xy][1]; | |
| 2319 s->mv[0][0][0] = s->b_direct_forw_mv_table[xy][0]; | |
| 2320 s->mv[0][0][1] = s->b_direct_forw_mv_table[xy][1]; | |
| 2321 s->mv[1][0][0] = s->b_direct_back_mv_table[xy][0]; | |
| 2322 s->mv[1][0][1] = s->b_direct_back_mv_table[xy][1]; | |
| 2323 break; | |
| 2324 case MB_TYPE_BIDIR: | |
| 324 | 2325 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD; |
| 294 | 2326 s->mb_intra= 0; |
| 324 | 2327 motion_x=0; |
| 2328 motion_y=0; | |
| 2329 s->mv[0][0][0] = s->b_bidir_forw_mv_table[xy][0]; | |
| 2330 s->mv[0][0][1] = s->b_bidir_forw_mv_table[xy][1]; | |
| 2331 s->mv[1][0][0] = s->b_bidir_back_mv_table[xy][0]; | |
| 2332 s->mv[1][0][1] = s->b_bidir_back_mv_table[xy][1]; | |
| 327 | 2333 break; |
| 2334 case MB_TYPE_BACKWARD: | |
| 324 | 2335 s->mv_dir = MV_DIR_BACKWARD; |
| 2336 s->mb_intra= 0; | |
| 2337 motion_x= s->mv[1][0][0] = s->b_back_mv_table[xy][0]; | |
| 2338 motion_y= s->mv[1][0][1] = s->b_back_mv_table[xy][1]; | |
| 327 | 2339 break; |
| 2340 case MB_TYPE_FORWARD: | |
| 324 | 2341 s->mv_dir = MV_DIR_FORWARD; |
| 2342 s->mb_intra= 0; | |
| 2343 motion_x= s->mv[0][0][0] = s->b_forw_mv_table[xy][0]; | |
| 2344 motion_y= s->mv[0][0][1] = s->b_forw_mv_table[xy][1]; | |
| 2345 // printf(" %d %d ", motion_x, motion_y); | |
| 327 | 2346 break; |
| 2347 default: | |
| 324 | 2348 motion_x=motion_y=0; //gcc warning fix |
| 2349 printf("illegal MB type\n"); | |
| 294 | 2350 } |
| 324 | 2351 encode_mb(s, motion_x, motion_y); |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
244
diff
changeset
|
2352 } |
| 327 | 2353 /* clean the MV table in IPS frames for direct mode in B frames */ |
| 2354 if(s->mb_intra /* && I,P,S_TYPE */){ | |
| 2355 s->p_mv_table[xy][0]=0; | |
| 2356 s->p_mv_table[xy][1]=0; | |
| 2357 } | |
| 0 | 2358 |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2359 MPV_decode_mb(s, s->block); |
| 456 | 2360 //printf("MB %d %d bits\n", s->mb_x+s->mb_y*s->mb_width, get_bit_count(&s->pb)); |
| 0 | 2361 } |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
233
diff
changeset
|
2362 |
|
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
233
diff
changeset
|
2363 |
| 231 | 2364 /* Obtain average GOB size for RTP */ |
| 2365 if (s->rtp_mode) { | |
| 2366 if (!mb_y) | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
233
diff
changeset
|
2367 s->mb_line_avgsize = pbBufPtr(&s->pb) - s->ptr_last_mb_line; |
| 231 | 2368 else if (!(mb_y % s->gob_index)) { |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
233
diff
changeset
|
2369 s->mb_line_avgsize = (s->mb_line_avgsize + pbBufPtr(&s->pb) - s->ptr_last_mb_line) >> 1; |
|
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
233
diff
changeset
|
2370 s->ptr_last_mb_line = pbBufPtr(&s->pb); |
| 231 | 2371 } |
| 2372 //fprintf(stderr, "\nMB line: %d\tSize: %u\tAvg. Size: %u", s->mb_y, | |
| 2373 // (s->pb.buf_ptr - s->ptr_last_mb_line), s->mb_line_avgsize); | |
| 456 | 2374 if(s->codec_id!=CODEC_ID_MPEG4) s->first_slice_line = 0; //FIXME clean |
| 231 | 2375 } |
| 0 | 2376 } |
| 294 | 2377 emms_c(); |
| 286 | 2378 |
| 456 | 2379 if(s->codec_id==CODEC_ID_MPEG4 && s->data_partitioning && s->pict_type!=B_TYPE) |
| 2380 ff_mpeg4_merge_partitions(s); | |
| 2381 | |
| 2382 if (s->msmpeg4_version && s->msmpeg4_version<4 && s->pict_type == I_TYPE) | |
| 208 | 2383 msmpeg4_encode_ext_header(s); |
| 2384 | |
| 456 | 2385 if(s->codec_id==CODEC_ID_MPEG4) |
| 2386 ff_mpeg4_stuffing(&s->pb); | |
| 2387 | |
| 162 | 2388 //if (s->gob_number) |
| 2389 // fprintf(stderr,"\nNumber of GOB: %d", s->gob_number); | |
| 231 | 2390 |
| 2391 /* Send the last GOB if RTP */ | |
| 2392 if (s->rtp_mode) { | |
| 2393 flush_put_bits(&s->pb); | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
233
diff
changeset
|
2394 pdif = pbBufPtr(&s->pb) - s->ptr_lastgob; |
| 231 | 2395 /* Call the RTP callback to send the last GOB */ |
| 2396 if (s->rtp_callback) | |
| 2397 s->rtp_callback(s->ptr_lastgob, pdif, s->gob_number); | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
233
diff
changeset
|
2398 s->ptr_lastgob = pbBufPtr(&s->pb); |
| 231 | 2399 //fprintf(stderr,"\nGOB: %2d size: %d (last)", s->gob_number, pdif); |
| 2400 } | |
| 0 | 2401 } |
| 2402 | |
| 220 | 2403 static int dct_quantize_c(MpegEncContext *s, |
| 0 | 2404 DCTELEM *block, int n, |
| 344 | 2405 int qscale, int *overflow) |
| 0 | 2406 { |
| 2407 int i, j, level, last_non_zero, q; | |
| 2408 const int *qmat; | |
| 344 | 2409 int bias; |
| 2410 int max=0; | |
| 2411 unsigned int threshold1, threshold2; | |
| 456 | 2412 |
| 0 | 2413 av_fdct (block); |
| 2414 | |
| 64 | 2415 /* we need this permutation so that we correct the IDCT |
| 2416 permutation. will be moved into DCT code */ | |
| 2417 block_permute(block); | |
| 2418 | |
| 0 | 2419 if (s->mb_intra) { |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
2420 if (!s->h263_aic) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
2421 if (n < 4) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
2422 q = s->y_dc_scale; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
2423 else |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
2424 q = s->c_dc_scale; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
2425 q = q << 3; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
2426 } else |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
2427 /* For AIC we skip quant/dequant of INTRADC */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
2428 q = 1 << 3; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
347
diff
changeset
|
2429 |
| 0 | 2430 /* note: block[0] is assumed to be positive */ |
| 2431 block[0] = (block[0] + (q >> 1)) / q; | |
| 2432 i = 1; | |
| 2433 last_non_zero = 0; | |
| 344 | 2434 qmat = s->q_intra_matrix[qscale]; |
| 2435 bias= s->intra_quant_bias<<(QMAT_SHIFT - 3 - QUANT_BIAS_SHIFT); | |
| 0 | 2436 } else { |
| 2437 i = 0; | |
| 2438 last_non_zero = -1; | |
| 344 | 2439 qmat = s->q_inter_matrix[qscale]; |
| 2440 bias= s->inter_quant_bias<<(QMAT_SHIFT - 3 - QUANT_BIAS_SHIFT); | |
| 0 | 2441 } |
| 344 | 2442 threshold1= (1<<(QMAT_SHIFT - 3)) - bias - 1; |
| 2443 threshold2= threshold1<<1; | |
| 0 | 2444 |
| 2445 for(;i<64;i++) { | |
| 2446 j = zigzag_direct[i]; | |
| 2447 level = block[j]; | |
| 2448 level = level * qmat[j]; | |
| 344 | 2449 |
| 2450 // if( bias+level >= (1<<(QMAT_SHIFT - 3)) | |
| 2451 // || bias-level >= (1<<(QMAT_SHIFT - 3))){ | |
| 2452 if(((unsigned)(level+threshold1))>threshold2){ | |
| 2453 if(level>0){ | |
| 2454 level= (bias + level)>>(QMAT_SHIFT - 3); | |
| 2455 block[j]= level; | |
| 2456 }else{ | |
| 2457 level= (bias - level)>>(QMAT_SHIFT - 3); | |
| 2458 block[j]= -level; | |
| 0 | 2459 } |
| 344 | 2460 max |=level; |
| 0 | 2461 last_non_zero = i; |
| 344 | 2462 }else{ |
| 2463 block[j]=0; | |
| 0 | 2464 } |
| 2465 } | |
| 344 | 2466 *overflow= s->max_qcoeff < max; //overflow might have happend |
| 2467 | |
| 0 | 2468 return last_non_zero; |
| 2469 } | |
| 2470 | |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2471 static void dct_unquantize_mpeg1_c(MpegEncContext *s, |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2472 DCTELEM *block, int n, int qscale) |
| 0 | 2473 { |
| 200 | 2474 int i, level, nCoeffs; |
| 0 | 2475 const UINT16 *quant_matrix; |
| 2476 | |
| 200 | 2477 if(s->alternate_scan) nCoeffs= 64; |
| 2478 else nCoeffs= s->block_last_index[n]+1; | |
| 2479 | |
| 0 | 2480 if (s->mb_intra) { |
| 2481 if (n < 4) | |
| 2482 block[0] = block[0] * s->y_dc_scale; | |
| 2483 else | |
| 2484 block[0] = block[0] * s->c_dc_scale; | |
| 2485 /* XXX: only mpeg1 */ | |
| 2486 quant_matrix = s->intra_matrix; | |
| 200 | 2487 for(i=1;i<nCoeffs;i++) { |
| 2488 int j= zigzag_direct[i]; | |
| 2489 level = block[j]; | |
| 0 | 2490 if (level) { |
| 2491 if (level < 0) { | |
| 2492 level = -level; | |
| 200 | 2493 level = (int)(level * qscale * quant_matrix[j]) >> 3; |
| 0 | 2494 level = (level - 1) | 1; |
| 2495 level = -level; | |
| 2496 } else { | |
| 200 | 2497 level = (int)(level * qscale * quant_matrix[j]) >> 3; |
| 0 | 2498 level = (level - 1) | 1; |
| 2499 } | |
| 2500 #ifdef PARANOID | |
| 2501 if (level < -2048 || level > 2047) | |
| 2502 fprintf(stderr, "unquant error %d %d\n", i, level); | |
| 2503 #endif | |
| 200 | 2504 block[j] = level; |
| 0 | 2505 } |
| 2506 } | |
| 2507 } else { | |
| 2508 i = 0; | |
| 344 | 2509 quant_matrix = s->inter_matrix; |
| 217 | 2510 for(;i<nCoeffs;i++) { |
| 200 | 2511 int j= zigzag_direct[i]; |
| 2512 level = block[j]; | |
| 0 | 2513 if (level) { |
| 2514 if (level < 0) { | |
| 2515 level = -level; | |
| 2516 level = (((level << 1) + 1) * qscale * | |
| 200 | 2517 ((int) (quant_matrix[j]))) >> 4; |
| 0 | 2518 level = (level - 1) | 1; |
| 2519 level = -level; | |
| 2520 } else { | |
| 2521 level = (((level << 1) + 1) * qscale * | |
| 200 | 2522 ((int) (quant_matrix[j]))) >> 4; |
| 0 | 2523 level = (level - 1) | 1; |
| 2524 } | |
| 2525 #ifdef PARANOID | |
| 2526 if (level < -2048 || level > 2047) | |
| 2527 fprintf(stderr, "unquant error %d %d\n", i, level); | |
| 2528 #endif | |
| 200 | 2529 block[j] = level; |
| 0 | 2530 } |
| 2531 } | |
| 2532 } | |
| 2533 } | |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2534 |
| 325 | 2535 static void dct_unquantize_mpeg2_c(MpegEncContext *s, |
| 2536 DCTELEM *block, int n, int qscale) | |
| 2537 { | |
| 2538 int i, level, nCoeffs; | |
| 2539 const UINT16 *quant_matrix; | |
| 2540 | |
| 2541 if(s->alternate_scan) nCoeffs= 64; | |
| 2542 else nCoeffs= s->block_last_index[n]+1; | |
| 2543 | |
| 2544 if (s->mb_intra) { | |
| 2545 if (n < 4) | |
| 2546 block[0] = block[0] * s->y_dc_scale; | |
| 2547 else | |
| 2548 block[0] = block[0] * s->c_dc_scale; | |
| 2549 quant_matrix = s->intra_matrix; | |
| 2550 for(i=1;i<nCoeffs;i++) { | |
| 2551 int j= zigzag_direct[i]; | |
| 2552 level = block[j]; | |
| 2553 if (level) { | |
| 2554 if (level < 0) { | |
| 2555 level = -level; | |
| 2556 level = (int)(level * qscale * quant_matrix[j]) >> 3; | |
| 2557 level = -level; | |
| 2558 } else { | |
| 2559 level = (int)(level * qscale * quant_matrix[j]) >> 3; | |
| 2560 } | |
| 2561 #ifdef PARANOID | |
| 2562 if (level < -2048 || level > 2047) | |
| 2563 fprintf(stderr, "unquant error %d %d\n", i, level); | |
| 2564 #endif | |
| 2565 block[j] = level; | |
| 2566 } | |
| 2567 } | |
| 2568 } else { | |
| 2569 int sum=-1; | |
| 2570 i = 0; | |
| 344 | 2571 quant_matrix = s->inter_matrix; |
| 325 | 2572 for(;i<nCoeffs;i++) { |
| 2573 int j= zigzag_direct[i]; | |
| 2574 level = block[j]; | |
| 2575 if (level) { | |
| 2576 if (level < 0) { | |
| 2577 level = -level; | |
| 2578 level = (((level << 1) + 1) * qscale * | |
| 2579 ((int) (quant_matrix[j]))) >> 4; | |
| 2580 level = -level; | |
| 2581 } else { | |
| 2582 level = (((level << 1) + 1) * qscale * | |
| 2583 ((int) (quant_matrix[j]))) >> 4; | |
| 2584 } | |
| 2585 #ifdef PARANOID | |
| 2586 if (level < -2048 || level > 2047) | |
| 2587 fprintf(stderr, "unquant error %d %d\n", i, level); | |
| 2588 #endif | |
| 2589 block[j] = level; | |
| 2590 sum+=level; | |
| 2591 } | |
| 2592 } | |
| 2593 block[63]^=sum&1; | |
| 2594 } | |
| 2595 } | |
| 2596 | |
| 2597 | |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2598 static void dct_unquantize_h263_c(MpegEncContext *s, |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2599 DCTELEM *block, int n, int qscale) |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2600 { |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2601 int i, level, qmul, qadd; |
| 200 | 2602 int nCoeffs; |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2603 |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2604 if (s->mb_intra) { |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2605 if (!s->h263_aic) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2606 if (n < 4) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2607 block[0] = block[0] * s->y_dc_scale; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2608 else |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2609 block[0] = block[0] * s->c_dc_scale; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2610 } |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2611 i = 1; |
| 200 | 2612 nCoeffs= 64; //does not allways use zigzag table |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2613 } else { |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2614 i = 0; |
| 200 | 2615 nCoeffs= zigzag_end[ s->block_last_index[n] ]; |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2616 } |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2617 |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2618 qmul = s->qscale << 1; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
244
diff
changeset
|
2619 if (s->h263_aic && s->mb_intra) |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
244
diff
changeset
|
2620 qadd = 0; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
244
diff
changeset
|
2621 else |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
244
diff
changeset
|
2622 qadd = (s->qscale - 1) | 1; |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2623 |
| 200 | 2624 for(;i<nCoeffs;i++) { |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2625 level = block[i]; |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2626 if (level) { |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2627 if (level < 0) { |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2628 level = level * qmul - qadd; |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2629 } else { |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2630 level = level * qmul + qadd; |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2631 } |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2632 #ifdef PARANOID |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2633 if (level < -2048 || level > 2047) |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2634 fprintf(stderr, "unquant error %d %d\n", i, level); |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2635 #endif |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2636 block[i] = level; |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2637 } |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2638 } |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
8
diff
changeset
|
2639 } |
| 0 | 2640 |
| 456 | 2641 static void remove_ac(MpegEncContext *s, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, int mb_x, int mb_y) |
| 2642 { | |
| 2643 int dc, dcb, dcr, y, i; | |
| 2644 for(i=0; i<4; i++){ | |
| 2645 dc= s->dc_val[0][mb_x*2+1 + (i&1) + (mb_y*2+1 + (i>>1))*(s->mb_width*2+2)]; | |
| 2646 for(y=0; y<8; y++){ | |
| 2647 int x; | |
| 2648 for(x=0; x<8; x++){ | |
| 2649 dest_y[x + (i&1)*8 + (y + (i>>1)*8)*s->linesize]= dc/8; | |
| 2650 } | |
| 2651 } | |
| 2652 } | |
| 2653 dcb = s->dc_val[1][mb_x+1 + (mb_y+1)*(s->mb_width+2)]; | |
| 2654 dcr= s->dc_val[2][mb_x+1 + (mb_y+1)*(s->mb_width+2)]; | |
| 2655 for(y=0; y<8; y++){ | |
| 2656 int x; | |
| 2657 for(x=0; x<8; x++){ | |
| 556 | 2658 dest_cb[x + y*(s->uvlinesize)]= dcb/8; |
| 2659 dest_cr[x + y*(s->uvlinesize)]= dcr/8; | |
| 456 | 2660 } |
| 2661 } | |
| 2662 } | |
| 2663 | |
| 2664 /** | |
| 2665 * will conceal past errors, and allso drop b frames if needed | |
| 2666 * | |
| 2667 */ | |
| 2668 void ff_conceal_past_errors(MpegEncContext *s, int unknown_pos) | |
| 2669 { | |
| 2670 int mb_x= s->mb_x; | |
| 2671 int mb_y= s->mb_y; | |
| 2672 int mb_dist=0; | |
| 2673 int i, intra_count=0, inter_count=0; | |
| 2674 int intra_conceal= s->msmpeg4_version ? 50 : 50; //FIXME finetune | |
| 2675 int inter_conceal= s->msmpeg4_version ? 50 : 50; | |
| 2676 | |
| 2677 // for last block | |
| 2678 if(mb_x>=s->mb_width) mb_x= s->mb_width -1; | |
| 2679 if(mb_y>=s->mb_height) mb_y= s->mb_height-1; | |
| 2680 | |
| 2681 if(s->decoding_error==0 && unknown_pos){ | |
| 2682 if(s->data_partitioning && s->pict_type!=B_TYPE) | |
| 2683 s->decoding_error= DECODING_AC_LOST; | |
| 2684 else | |
| 2685 s->decoding_error= DECODING_DESYNC; | |
| 2686 } | |
| 2687 | |
| 2688 if(s->decoding_error==DECODING_DESYNC && s->pict_type!=B_TYPE) s->next_p_frame_damaged=1; | |
| 2689 | |
| 2690 for(i=mb_x + mb_y*s->mb_width; i>=0; i--){ | |
| 2691 if(s->mbintra_table[i]) intra_count++; | |
| 2692 else inter_count++; | |
| 2693 } | |
| 2694 | |
| 2695 if(s->decoding_error==DECODING_AC_LOST){ | |
| 2696 intra_conceal*=2; | |
| 2697 inter_conceal*=2; | |
| 2698 }else if(s->decoding_error==DECODING_ACDC_LOST){ | |
| 2699 intra_conceal*=2; | |
| 2700 inter_conceal*=2; | |
| 2701 } | |
| 2702 | |
| 2703 if(unknown_pos && (intra_count<inter_count)){ | |
| 2704 intra_conceal= inter_conceal= s->mb_num; | |
| 2705 // printf("%d %d\n",intra_count, inter_count); | |
| 2706 } | |
| 2707 | |
| 2708 fprintf(stderr, "concealing errors\n"); | |
| 2709 | |
| 2710 /* for all MBs from the current one back until the last resync marker */ | |
| 2711 for(; mb_y>=0 && mb_y>=s->resync_mb_y; mb_y--){ | |
| 2712 for(; mb_x>=0; mb_x--){ | |
| 2713 uint8_t *dest_y = s->current_picture[0] + (mb_y * 16* s->linesize ) + mb_x * 16; | |
| 556 | 2714 uint8_t *dest_cb = s->current_picture[1] + (mb_y * 8 * (s->uvlinesize)) + mb_x * 8; |
| 2715 uint8_t *dest_cr = s->current_picture[2] + (mb_y * 8 * (s->uvlinesize)) + mb_x * 8; | |
| 456 | 2716 int mb_x_backup= s->mb_x; //FIXME pass xy to mpeg_motion |
| 2717 int mb_y_backup= s->mb_y; | |
| 2718 s->mb_x=mb_x; | |
| 2719 s->mb_y=mb_y; | |
| 2720 if(s->mbintra_table[mb_y*s->mb_width + mb_x] && mb_dist<intra_conceal){ | |
| 2721 if(s->decoding_error==DECODING_AC_LOST){ | |
| 2722 remove_ac(s, dest_y, dest_cb, dest_cr, mb_x, mb_y); | |
| 2723 // printf("remove ac to %d %d\n", mb_x, mb_y); | |
| 2724 }else{ | |
| 2725 mpeg_motion(s, dest_y, dest_cb, dest_cr, 0, | |
| 2726 s->last_picture, 0, 0, put_pixels_tab, | |
| 2727 0/*mx*/, 0/*my*/, 16); | |
| 2728 } | |
| 2729 } | |
| 2730 else if(!s->mbintra_table[mb_y*s->mb_width + mb_x] && mb_dist<inter_conceal){ | |
| 2731 int mx=0; | |
| 2732 int my=0; | |
| 2733 | |
| 2734 if(s->decoding_error!=DECODING_DESYNC){ | |
| 2735 int xy= mb_x*2+1 + (mb_y*2+1)*(s->mb_width*2+2); | |
| 2736 mx= s->motion_val[ xy ][0]; | |
| 2737 my= s->motion_val[ xy ][1]; | |
| 2738 } | |
| 2739 | |
| 2740 mpeg_motion(s, dest_y, dest_cb, dest_cr, 0, | |
| 2741 s->last_picture, 0, 0, put_pixels_tab, | |
| 2742 mx, my, 16); | |
| 2743 } | |
| 2744 s->mb_x= mb_x_backup; | |
| 2745 s->mb_y= mb_y_backup; | |
| 2746 | |
| 2747 if(mb_x== s->resync_mb_x && mb_y== s->resync_mb_y) return; | |
| 2748 if(!s->mbskip_table[mb_x + mb_y*s->mb_width]) mb_dist++; | |
| 2749 } | |
| 2750 mb_x=s->mb_width-1; | |
| 2751 } | |
| 2752 } | |
| 2753 | |
| 0 | 2754 AVCodec mpeg1video_encoder = { |
| 2755 "mpeg1video", | |
| 2756 CODEC_TYPE_VIDEO, | |
| 2757 CODEC_ID_MPEG1VIDEO, | |
| 2758 sizeof(MpegEncContext), | |
| 2759 MPV_encode_init, | |
| 2760 MPV_encode_picture, | |
| 2761 MPV_encode_end, | |
| 2762 }; | |
| 2763 | |
| 2764 AVCodec h263_encoder = { | |
| 2765 "h263", | |
| 2766 CODEC_TYPE_VIDEO, | |
| 2767 CODEC_ID_H263, | |
| 2768 sizeof(MpegEncContext), | |
| 2769 MPV_encode_init, | |
| 2770 MPV_encode_picture, | |
| 2771 MPV_encode_end, | |
| 2772 }; | |
| 2773 | |
| 2774 AVCodec h263p_encoder = { | |
| 2775 "h263p", | |
| 2776 CODEC_TYPE_VIDEO, | |
| 2777 CODEC_ID_H263P, | |
| 2778 sizeof(MpegEncContext), | |
| 2779 MPV_encode_init, | |
| 2780 MPV_encode_picture, | |
| 2781 MPV_encode_end, | |
| 2782 }; | |
| 2783 | |
| 2784 AVCodec rv10_encoder = { | |
| 2785 "rv10", | |
| 2786 CODEC_TYPE_VIDEO, | |
| 2787 CODEC_ID_RV10, | |
| 2788 sizeof(MpegEncContext), | |
| 2789 MPV_encode_init, | |
| 2790 MPV_encode_picture, | |
| 2791 MPV_encode_end, | |
| 2792 }; | |
| 2793 | |
| 2794 AVCodec mjpeg_encoder = { | |
| 2795 "mjpeg", | |
| 2796 CODEC_TYPE_VIDEO, | |
| 2797 CODEC_ID_MJPEG, | |
| 2798 sizeof(MpegEncContext), | |
| 2799 MPV_encode_init, | |
| 2800 MPV_encode_picture, | |
| 2801 MPV_encode_end, | |
| 2802 }; | |
| 2803 | |
| 71 | 2804 AVCodec mpeg4_encoder = { |
| 2805 "mpeg4", | |
| 0 | 2806 CODEC_TYPE_VIDEO, |
| 71 | 2807 CODEC_ID_MPEG4, |
| 0 | 2808 sizeof(MpegEncContext), |
| 2809 MPV_encode_init, | |
| 2810 MPV_encode_picture, | |
| 2811 MPV_encode_end, | |
| 2812 }; | |
| 2813 | |
| 307 | 2814 AVCodec msmpeg4v1_encoder = { |
| 2815 "msmpeg4v1", | |
| 0 | 2816 CODEC_TYPE_VIDEO, |
| 307 | 2817 CODEC_ID_MSMPEG4V1, |
| 0 | 2818 sizeof(MpegEncContext), |
| 2819 MPV_encode_init, | |
| 2820 MPV_encode_picture, | |
| 2821 MPV_encode_end, | |
| 2822 }; | |
| 307 | 2823 |
| 2824 AVCodec msmpeg4v2_encoder = { | |
| 2825 "msmpeg4v2", | |
| 2826 CODEC_TYPE_VIDEO, | |
| 2827 CODEC_ID_MSMPEG4V2, | |
| 2828 sizeof(MpegEncContext), | |
| 2829 MPV_encode_init, | |
| 2830 MPV_encode_picture, | |
| 2831 MPV_encode_end, | |
| 2832 }; | |
| 2833 | |
| 2834 AVCodec msmpeg4v3_encoder = { | |
| 2835 "msmpeg4", | |
| 2836 CODEC_TYPE_VIDEO, | |
| 2837 CODEC_ID_MSMPEG4V3, | |
| 2838 sizeof(MpegEncContext), | |
| 2839 MPV_encode_init, | |
| 2840 MPV_encode_picture, | |
| 2841 MPV_encode_end, | |
| 2842 }; | |
| 499 | 2843 |
| 2844 AVCodec wmv1_encoder = { | |
| 2845 "wmv1", | |
| 2846 CODEC_TYPE_VIDEO, | |
| 2847 CODEC_ID_WMV1, | |
| 2848 sizeof(MpegEncContext), | |
| 2849 MPV_encode_init, | |
| 2850 MPV_encode_picture, | |
| 2851 MPV_encode_end, | |
| 2852 }; | |
| 2853 | |
| 2854 AVCodec wmv2_encoder = { | |
| 2855 "wmv2", | |
| 2856 CODEC_TYPE_VIDEO, | |
| 2857 CODEC_ID_WMV2, | |
| 2858 sizeof(MpegEncContext), | |
| 2859 MPV_encode_init, | |
| 2860 MPV_encode_picture, | |
| 2861 MPV_encode_end, | |
| 2862 }; |
