Mercurial > libavcodec.hg
annotate msmpeg4.c @ 1255:625ccacd1113 libavcodec
decode motion & modulo optimize patch by (BERO <bero at geocities dot co dot jp>)
| author | michaelni |
|---|---|
| date | Wed, 14 May 2003 01:08:02 +0000 |
| parents | b874217f906b |
| children | 362947395f5c |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * MSMPEG4 backend for ffmpeg encoder and decoder | |
| 429 | 3 * Copyright (c) 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 | |
|
411
5c8b3a717929
workaround dc_scale bug in old ffmpeg msmpeg4v3 encoder (set workaround_bugs=1 for this)
michaelni
parents:
396
diff
changeset
|
18 * |
| 457 | 19 * msmpeg4v1 & v2 stuff by Michael Niedermayer <michaelni@gmx.at> |
| 0 | 20 */ |
| 1106 | 21 |
| 22 /** | |
| 23 * @file msmpeg4.c | |
| 24 * MSMPEG4 backend for ffmpeg encoder and decoder. | |
| 25 */ | |
| 26 | |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
347
diff
changeset
|
27 #include "avcodec.h" |
| 0 | 28 #include "dsputil.h" |
| 29 #include "mpegvideo.h" | |
|
411
5c8b3a717929
workaround dc_scale bug in old ffmpeg msmpeg4v3 encoder (set workaround_bugs=1 for this)
michaelni
parents:
396
diff
changeset
|
30 |
| 0 | 31 /* |
| 32 * You can also call this codec : MPEG4 with a twist ! | |
| 33 * | |
| 34 * TODO: | |
| 35 * - (encoding) select best mv table (two choices) | |
| 36 * - (encoding) select best vlc/dc table | |
| 37 */ | |
| 38 //#define DEBUG | |
| 39 | |
| 531 | 40 #define DC_VLC_BITS 9 |
| 41 #define CBPY_VLC_BITS 6 | |
| 42 #define INTER_INTRA_VLC_BITS 3 | |
| 43 #define V1_INTRA_CBPC_VLC_BITS 6 | |
| 44 #define V1_INTER_CBPC_VLC_BITS 6 | |
| 45 #define V2_INTRA_CBPC_VLC_BITS 3 | |
| 46 #define V2_MB_TYPE_VLC_BITS 7 | |
| 47 #define MV_VLC_BITS 9 | |
| 48 #define V2_MV_VLC_BITS 9 | |
| 49 #define TEX_VLC_BITS 9 | |
| 50 #define MB_NON_INTRA_VLC_BITS 9 | |
| 51 #define MB_INTRA_VLC_BITS 9 | |
| 52 | |
| 578 | 53 #define II_BITRATE 128*1024 |
| 54 #define MBAC_BITRATE 50*1024 | |
| 55 | |
| 936 | 56 #define DEFAULT_INTER_INDEX 3 |
| 57 | |
| 1064 | 58 static uint32_t v2_dc_lum_table[512][2]; |
| 59 static uint32_t v2_dc_chroma_table[512][2]; | |
| 307 | 60 |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
61 #ifdef CONFIG_ENCODERS |
| 499 | 62 static inline void msmpeg4_encode_block(MpegEncContext * s, DCTELEM * block, int n); |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
63 #endif //CONFIG_ENCODERS |
| 499 | 64 static inline int msmpeg4_decode_block(MpegEncContext * s, DCTELEM * block, |
| 936 | 65 int n, int coded, const uint8_t *scantable); |
| 0 | 66 static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr); |
| 67 static int msmpeg4_decode_motion(MpegEncContext * s, | |
| 68 int *mx_ptr, int *my_ptr); | |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
69 #ifdef CONFIG_ENCODERS |
| 310 | 70 static void msmpeg4v2_encode_motion(MpegEncContext * s, int val); |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
71 #endif //CONFIG_ENCODERS |
| 468 | 72 static void init_h263_dc_for_msmpeg4(void); |
| 519 | 73 static inline void msmpeg4_memsetw(short *tab, int val, int n); |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
74 #ifdef CONFIG_ENCODERS |
| 601 | 75 static int get_size_of_code(MpegEncContext * s, RLTable *rl, int last, int run, int level, int intra); |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
76 #endif //CONFIG_ENCODERS |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
77 static int msmpeg4v12_decode_mb(MpegEncContext *s, DCTELEM block[6][64]); |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
78 static int msmpeg4v34_decode_mb(MpegEncContext *s, DCTELEM block[6][64]); |
| 936 | 79 static int wmv2_decode_mb(MpegEncContext *s, DCTELEM block[6][64]); |
| 0 | 80 |
| 1064 | 81 extern uint32_t inverse[256]; |
|
225
ae145876789d
use multiply instead of divides for DC prediction on X86
michaelni
parents:
221
diff
changeset
|
82 |
| 601 | 83 |
| 0 | 84 #ifdef DEBUG |
| 85 int intra_count = 0; | |
| 86 int frame_count = 0; | |
| 87 #endif | |
| 88 | |
| 89 #include "msmpeg4data.h" | |
| 90 | |
| 1064 | 91 static uint8_t rl_length[NB_RL_TABLES][MAX_LEVEL+1][MAX_RUN+1][2]; |
| 601 | 92 |
| 0 | 93 #ifdef STATS |
| 94 | |
| 95 const char *st_names[ST_NB] = { | |
| 96 "unknown", | |
| 97 "dc", | |
| 98 "intra_ac", | |
| 99 "inter_ac", | |
| 100 "intra_mb", | |
| 101 "inter_mb", | |
| 102 "mv", | |
| 103 }; | |
| 104 | |
| 105 int st_current_index = 0; | |
| 106 unsigned int st_bit_counts[ST_NB]; | |
| 107 unsigned int st_out_bit_counts[ST_NB]; | |
| 108 | |
| 109 #define set_stat(var) st_current_index = var; | |
| 110 | |
| 111 void print_stats(void) | |
| 112 { | |
| 113 unsigned int total; | |
| 114 int i; | |
| 115 | |
| 116 printf("Input:\n"); | |
| 117 total = 0; | |
| 118 for(i=0;i<ST_NB;i++) | |
| 119 total += st_bit_counts[i]; | |
| 120 if (total == 0) | |
| 121 total = 1; | |
| 122 for(i=0;i<ST_NB;i++) { | |
| 123 printf("%-10s : %10.1f %5.1f%%\n", | |
| 124 st_names[i], | |
| 125 (double)st_bit_counts[i] / 8.0, | |
| 126 (double)st_bit_counts[i] * 100.0 / total); | |
| 127 } | |
| 128 printf("%-10s : %10.1f %5.1f%%\n", | |
| 129 "total", | |
| 130 (double)total / 8.0, | |
| 131 100.0); | |
| 132 | |
| 133 printf("Output:\n"); | |
| 134 total = 0; | |
| 135 for(i=0;i<ST_NB;i++) | |
| 136 total += st_out_bit_counts[i]; | |
| 137 if (total == 0) | |
| 138 total = 1; | |
| 139 for(i=0;i<ST_NB;i++) { | |
| 140 printf("%-10s : %10.1f %5.1f%%\n", | |
| 141 st_names[i], | |
| 142 (double)st_out_bit_counts[i] / 8.0, | |
| 143 (double)st_out_bit_counts[i] * 100.0 / total); | |
| 144 } | |
| 145 printf("%-10s : %10.1f %5.1f%%\n", | |
| 146 "total", | |
| 147 (double)total / 8.0, | |
| 148 100.0); | |
| 149 } | |
| 150 | |
| 151 #else | |
| 152 | |
| 153 #define set_stat(var) | |
| 154 | |
| 155 #endif | |
| 156 | |
| 499 | 157 static void common_init(MpegEncContext * s) |
| 158 { | |
| 159 static int inited=0; | |
| 160 | |
| 161 switch(s->msmpeg4_version){ | |
| 162 case 1: | |
| 163 case 2: | |
| 164 s->y_dc_scale_table= | |
| 165 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; | |
| 166 break; | |
| 167 case 3: | |
| 168 if(s->workaround_bugs){ | |
| 169 s->y_dc_scale_table= old_ff_y_dc_scale_table; | |
| 170 s->c_dc_scale_table= old_ff_c_dc_scale_table; | |
| 171 } else{ | |
| 172 s->y_dc_scale_table= ff_mpeg4_y_dc_scale_table; | |
| 173 s->c_dc_scale_table= ff_mpeg4_c_dc_scale_table; | |
| 174 } | |
| 175 break; | |
| 176 case 4: | |
| 936 | 177 case 5: |
| 499 | 178 s->y_dc_scale_table= wmv1_y_dc_scale_table; |
| 179 s->c_dc_scale_table= wmv1_c_dc_scale_table; | |
| 180 break; | |
| 181 } | |
| 182 | |
|
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
601
diff
changeset
|
183 |
| 936 | 184 if(s->msmpeg4_version>=4){ |
|
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
601
diff
changeset
|
185 ff_init_scantable(s, &s->intra_scantable , wmv1_scantable[1]); |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
601
diff
changeset
|
186 ff_init_scantable(s, &s->intra_h_scantable, wmv1_scantable[2]); |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
601
diff
changeset
|
187 ff_init_scantable(s, &s->intra_v_scantable, wmv1_scantable[3]); |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
601
diff
changeset
|
188 ff_init_scantable(s, &s->inter_scantable , wmv1_scantable[0]); |
| 499 | 189 } |
|
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
601
diff
changeset
|
190 //Note the default tables are set in common_init in mpegvideo.c |
| 499 | 191 |
| 192 if(!inited){ | |
| 193 inited=1; | |
| 194 | |
| 195 init_h263_dc_for_msmpeg4(); | |
| 196 } | |
| 197 } | |
| 198 | |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
199 #ifdef CONFIG_ENCODERS |
|
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
200 |
| 0 | 201 /* build the table which associate a (x,y) motion vector to a vlc */ |
| 202 static void init_mv_table(MVTable *tab) | |
| 203 { | |
| 204 int i, x, y; | |
| 205 | |
| 1064 | 206 tab->table_mv_index = av_malloc(sizeof(uint16_t) * 4096); |
| 0 | 207 /* mark all entries as not used */ |
| 208 for(i=0;i<4096;i++) | |
| 209 tab->table_mv_index[i] = tab->n; | |
| 210 | |
| 211 for(i=0;i<tab->n;i++) { | |
| 212 x = tab->table_mvx[i]; | |
| 213 y = tab->table_mvy[i]; | |
| 214 tab->table_mv_index[(x << 6) | y] = i; | |
| 215 } | |
| 216 } | |
| 217 | |
| 218 static void code012(PutBitContext *pb, int n) | |
| 219 { | |
| 220 if (n == 0) { | |
| 221 put_bits(pb, 1, 0); | |
| 222 } else { | |
| 223 put_bits(pb, 1, 1); | |
| 224 put_bits(pb, 1, (n >= 2)); | |
| 225 } | |
| 226 } | |
| 227 | |
| 499 | 228 void ff_msmpeg4_encode_init(MpegEncContext *s) |
| 229 { | |
| 230 static int init_done=0; | |
| 231 int i; | |
| 232 | |
| 233 common_init(s); | |
| 234 if(s->msmpeg4_version>=4){ | |
| 235 s->min_qcoeff= -255; | |
| 236 s->max_qcoeff= 255; | |
| 237 } | |
| 238 | |
| 239 if (!init_done) { | |
| 240 /* init various encoding tables */ | |
| 241 init_done = 1; | |
| 242 init_mv_table(&mv_tables[0]); | |
| 243 init_mv_table(&mv_tables[1]); | |
| 244 for(i=0;i<NB_RL_TABLES;i++) | |
| 245 init_rl(&rl_table[i]); | |
| 601 | 246 |
| 247 for(i=0; i<NB_RL_TABLES; i++){ | |
| 248 int level; | |
| 249 for(level=0; level<=MAX_LEVEL; level++){ | |
| 250 int run; | |
| 251 for(run=0; run<=MAX_RUN; run++){ | |
| 252 int last; | |
| 253 for(last=0; last<2; last++){ | |
|
774
baa66649df35
mergeing inter & intra rl_length tables (50% smaller & no meassureable difference in filesize/quality)
michaelni
parents:
773
diff
changeset
|
254 rl_length[i][level][run][last]= get_size_of_code(s, &rl_table[ i], last, run, level, 0); |
| 601 | 255 } |
| 256 } | |
| 257 } | |
| 258 } | |
| 499 | 259 } |
| 260 } | |
| 261 | |
| 262 static int get_size_of_code(MpegEncContext * s, RLTable *rl, int last, int run, int level, int intra){ | |
| 263 int size=0; | |
| 264 int code; | |
| 265 int run_diff= intra ? 0 : 1; | |
| 266 | |
| 267 code = get_rl_index(rl, last, run, level); | |
| 268 size+= rl->table_vlc[code][1]; | |
| 269 if (code == rl->n) { | |
| 270 int level1, run1; | |
| 271 | |
| 272 level1 = level - rl->max_level[last][run]; | |
| 273 if (level1 < 1) | |
| 274 goto esc2; | |
| 275 code = get_rl_index(rl, last, run, level1); | |
| 276 if (code == rl->n) { | |
| 277 esc2: | |
| 278 size++; | |
| 279 if (level > MAX_LEVEL) | |
| 280 goto esc3; | |
| 281 run1 = run - rl->max_run[last][level] - run_diff; | |
| 282 if (run1 < 0) | |
| 283 goto esc3; | |
| 284 code = get_rl_index(rl, last, run1, level); | |
| 285 if (code == rl->n) { | |
| 286 esc3: | |
| 287 /* third escape */ | |
| 288 size+=1+1+6+8; | |
| 289 } else { | |
| 290 /* second escape */ | |
| 291 size+= 1+1+ rl->table_vlc[code][1]; | |
| 292 } | |
| 293 } else { | |
| 294 /* first escape */ | |
| 295 size+= 1+1+ rl->table_vlc[code][1]; | |
| 296 } | |
| 297 } else { | |
| 298 size++; | |
| 299 } | |
| 300 return size; | |
| 301 } | |
| 302 | |
| 303 static void find_best_tables(MpegEncContext * s) | |
| 304 { | |
| 305 int i; | |
| 306 int best =-1, best_size =9999999; | |
| 307 int chroma_best=-1, best_chroma_size=9999999; | |
| 601 | 308 |
| 499 | 309 for(i=0; i<3; i++){ |
| 310 int level; | |
| 311 int chroma_size=0; | |
| 312 int size=0; | |
| 313 | |
| 314 if(i>0){// ;) | |
| 315 size++; | |
| 316 chroma_size++; | |
| 317 } | |
| 318 for(level=0; level<=MAX_LEVEL; level++){ | |
| 319 int run; | |
| 320 for(run=0; run<=MAX_RUN; run++){ | |
| 321 int last; | |
| 601 | 322 const int last_size= size + chroma_size; |
| 499 | 323 for(last=0; last<2; last++){ |
| 324 int inter_count = s->ac_stats[0][0][level][run][last] + s->ac_stats[0][1][level][run][last]; | |
| 325 int intra_luma_count = s->ac_stats[1][0][level][run][last]; | |
| 326 int intra_chroma_count= s->ac_stats[1][1][level][run][last]; | |
| 601 | 327 |
| 499 | 328 if(s->pict_type==I_TYPE){ |
|
774
baa66649df35
mergeing inter & intra rl_length tables (50% smaller & no meassureable difference in filesize/quality)
michaelni
parents:
773
diff
changeset
|
329 size += intra_luma_count *rl_length[i ][level][run][last]; |
|
baa66649df35
mergeing inter & intra rl_length tables (50% smaller & no meassureable difference in filesize/quality)
michaelni
parents:
773
diff
changeset
|
330 chroma_size+= intra_chroma_count*rl_length[i+3][level][run][last]; |
| 499 | 331 }else{ |
|
774
baa66649df35
mergeing inter & intra rl_length tables (50% smaller & no meassureable difference in filesize/quality)
michaelni
parents:
773
diff
changeset
|
332 size+= intra_luma_count *rl_length[i ][level][run][last] |
|
baa66649df35
mergeing inter & intra rl_length tables (50% smaller & no meassureable difference in filesize/quality)
michaelni
parents:
773
diff
changeset
|
333 +intra_chroma_count*rl_length[i+3][level][run][last] |
|
baa66649df35
mergeing inter & intra rl_length tables (50% smaller & no meassureable difference in filesize/quality)
michaelni
parents:
773
diff
changeset
|
334 +inter_count *rl_length[i+3][level][run][last]; |
| 499 | 335 } |
| 336 } | |
| 601 | 337 if(last_size == size+chroma_size) break; |
| 499 | 338 } |
| 339 } | |
| 340 if(size<best_size){ | |
| 341 best_size= size; | |
| 342 best= i; | |
| 343 } | |
| 344 if(chroma_size<best_chroma_size){ | |
| 345 best_chroma_size= chroma_size; | |
| 346 chroma_best= i; | |
| 347 } | |
| 348 } | |
| 601 | 349 |
| 499 | 350 // printf("type:%d, best:%d, qp:%d, var:%d, mcvar:%d, size:%d //\n", |
| 351 // s->pict_type, best, s->qscale, s->mb_var_sum, s->mc_mb_var_sum, best_size); | |
| 352 | |
| 353 if(s->pict_type==P_TYPE) chroma_best= best; | |
| 354 | |
| 355 memset(s->ac_stats, 0, sizeof(int)*(MAX_LEVEL+1)*(MAX_RUN+1)*2*2*2); | |
| 356 | |
| 357 s->rl_table_index = best; | |
| 358 s->rl_chroma_table_index= chroma_best; | |
| 359 | |
| 360 if(s->pict_type != s->last_non_b_pict_type){ | |
| 361 s->rl_table_index= 2; | |
| 362 if(s->pict_type==I_TYPE) | |
| 363 s->rl_chroma_table_index= 1; | |
| 364 else | |
| 365 s->rl_chroma_table_index= 2; | |
| 366 } | |
| 367 | |
| 368 } | |
| 369 | |
| 457 | 370 /* write MSMPEG4 compatible frame header */ |
| 0 | 371 void msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number) |
| 372 { | |
| 499 | 373 find_best_tables(s); |
| 0 | 374 |
| 375 align_put_bits(&s->pb); | |
| 376 put_bits(&s->pb, 2, s->pict_type - 1); | |
| 377 | |
| 378 put_bits(&s->pb, 5, s->qscale); | |
| 499 | 379 if(s->msmpeg4_version<=2){ |
| 380 s->rl_table_index = 2; | |
| 381 s->rl_chroma_table_index = 2; | |
| 382 } | |
| 310 | 383 |
| 0 | 384 s->dc_table_index = 1; |
| 385 s->mv_table_index = 1; /* only if P frame */ | |
| 386 s->use_skip_mb_code = 1; /* only if P frame */ | |
| 499 | 387 s->per_mb_rl_table = 0; |
| 759 | 388 if(s->msmpeg4_version==4) |
| 389 s->inter_intra_pred= (s->width*s->height < 320*240 && s->bit_rate<=II_BITRATE && s->pict_type==P_TYPE); | |
| 936 | 390 //printf("%d %d %d %d %d\n", s->pict_type, s->bit_rate, s->inter_intra_pred, s->width, s->height); |
| 499 | 391 |
| 0 | 392 if (s->pict_type == I_TYPE) { |
| 519 | 393 s->slice_height= s->mb_height/1; |
| 394 put_bits(&s->pb, 5, 0x16 + s->mb_height/s->slice_height); | |
| 499 | 395 |
| 396 if(s->msmpeg4_version==4){ | |
| 397 msmpeg4_encode_ext_header(s); | |
| 578 | 398 if(s->bit_rate>MBAC_BITRATE) |
| 519 | 399 put_bits(&s->pb, 1, s->per_mb_rl_table); |
| 499 | 400 } |
| 0 | 401 |
| 457 | 402 if(s->msmpeg4_version>2){ |
| 499 | 403 if(!s->per_mb_rl_table){ |
| 404 code012(&s->pb, s->rl_chroma_table_index); | |
| 405 code012(&s->pb, s->rl_table_index); | |
| 406 } | |
| 0 | 407 |
| 310 | 408 put_bits(&s->pb, 1, s->dc_table_index); |
| 409 } | |
| 0 | 410 } else { |
| 411 put_bits(&s->pb, 1, s->use_skip_mb_code); | |
| 412 | |
| 578 | 413 if(s->msmpeg4_version==4 && s->bit_rate>MBAC_BITRATE) |
| 499 | 414 put_bits(&s->pb, 1, s->per_mb_rl_table); |
| 415 | |
| 457 | 416 if(s->msmpeg4_version>2){ |
| 499 | 417 if(!s->per_mb_rl_table) |
| 418 code012(&s->pb, s->rl_table_index); | |
| 0 | 419 |
| 310 | 420 put_bits(&s->pb, 1, s->dc_table_index); |
| 0 | 421 |
| 310 | 422 put_bits(&s->pb, 1, s->mv_table_index); |
| 423 } | |
| 0 | 424 } |
| 425 | |
| 499 | 426 s->esc3_level_length= 0; |
| 427 s->esc3_run_length= 0; | |
| 0 | 428 |
| 429 #ifdef DEBUG | |
| 430 intra_count = 0; | |
| 431 printf("*****frame %d:\n", frame_count++); | |
| 432 #endif | |
| 433 } | |
| 434 | |
| 208 | 435 void msmpeg4_encode_ext_header(MpegEncContext * s) |
| 436 { | |
|
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
437 put_bits(&s->pb, 5, s->avctx->frame_rate / s->avctx->frame_rate_base); //yes 29.97 -> 29 |
| 208 | 438 |
| 847 | 439 put_bits(&s->pb, 11, FFMIN(s->bit_rate/1024, 2047)); |
| 208 | 440 |
| 1163 | 441 if(s->msmpeg4_version>=3) |
| 457 | 442 put_bits(&s->pb, 1, s->flipflop_rounding); |
| 1163 | 443 else |
| 444 assert(s->flipflop_rounding==0); | |
| 208 | 445 } |
| 446 | |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
447 #endif //CONFIG_ENCODERS |
|
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
448 |
| 0 | 449 /* predict coded block */ |
| 1064 | 450 static inline int coded_block_pred(MpegEncContext * s, int n, uint8_t **coded_block_ptr) |
| 0 | 451 { |
| 299 | 452 int xy, wrap, pred, a, b, c; |
| 0 | 453 |
| 299 | 454 xy = s->block_index[n]; |
| 455 wrap = s->block_wrap[0]; | |
| 0 | 456 |
| 457 /* B C | |
| 458 * A X | |
| 459 */ | |
| 299 | 460 a = s->coded_block[xy - 1 ]; |
| 461 b = s->coded_block[xy - 1 - wrap]; | |
| 462 c = s->coded_block[xy - wrap]; | |
| 0 | 463 |
| 464 if (b == c) { | |
| 465 pred = a; | |
| 466 } else { | |
| 467 pred = c; | |
| 468 } | |
| 469 | |
| 470 /* store value */ | |
| 299 | 471 *coded_block_ptr = &s->coded_block[xy]; |
| 0 | 472 |
| 473 return pred; | |
| 474 } | |
| 475 | |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
476 #ifdef CONFIG_ENCODERS |
|
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
477 |
| 0 | 478 static void msmpeg4_encode_motion(MpegEncContext * s, |
| 479 int mx, int my) | |
| 480 { | |
| 481 int code; | |
| 482 MVTable *mv; | |
| 483 | |
| 484 /* modulo encoding */ | |
| 485 /* WARNING : you cannot reach all the MVs even with the modulo | |
| 486 encoding. This is a somewhat strange compromise they took !!! */ | |
| 487 if (mx <= -64) | |
| 488 mx += 64; | |
| 489 else if (mx >= 64) | |
| 490 mx -= 64; | |
| 491 if (my <= -64) | |
| 492 my += 64; | |
| 493 else if (my >= 64) | |
| 494 my -= 64; | |
| 495 | |
| 496 mx += 32; | |
| 497 my += 32; | |
| 498 #if 0 | |
| 499 if ((unsigned)mx >= 64 || | |
| 500 (unsigned)my >= 64) | |
| 501 fprintf(stderr, "error mx=%d my=%d\n", mx, my); | |
| 502 #endif | |
| 503 mv = &mv_tables[s->mv_table_index]; | |
| 504 | |
| 505 code = mv->table_mv_index[(mx << 6) | my]; | |
| 506 set_stat(ST_MV); | |
| 507 put_bits(&s->pb, | |
| 508 mv->table_mv_bits[code], | |
| 509 mv->table_mv_code[code]); | |
| 510 if (code == mv->n) { | |
| 511 /* escape : code litterally */ | |
| 512 put_bits(&s->pb, 6, mx); | |
| 513 put_bits(&s->pb, 6, my); | |
| 514 } | |
| 515 } | |
| 516 | |
| 519 | 517 static inline void handle_slices(MpegEncContext *s){ |
| 518 if (s->mb_x == 0) { | |
| 519 if (s->slice_height && (s->mb_y % s->slice_height) == 0) { | |
| 983 | 520 if(s->msmpeg4_version < 4){ |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
521 ff_mpeg4_clean_buffers(s); |
| 519 | 522 } |
| 523 s->first_slice_line = 1; | |
| 524 } else { | |
| 525 s->first_slice_line = 0; | |
| 526 } | |
| 527 } | |
| 528 } | |
| 529 | |
| 0 | 530 void msmpeg4_encode_mb(MpegEncContext * s, |
| 531 DCTELEM block[6][64], | |
| 532 int motion_x, int motion_y) | |
| 533 { | |
| 534 int cbp, coded_cbp, i; | |
| 535 int pred_x, pred_y; | |
| 1064 | 536 uint8_t *coded_block; |
| 0 | 537 |
| 519 | 538 handle_slices(s); |
| 539 | |
| 0 | 540 if (!s->mb_intra) { |
| 541 /* compute cbp */ | |
| 542 set_stat(ST_INTER_MB); | |
| 543 cbp = 0; | |
| 544 for (i = 0; i < 6; i++) { | |
| 545 if (s->block_last_index[i] >= 0) | |
| 546 cbp |= 1 << (5 - i); | |
| 547 } | |
| 548 if (s->use_skip_mb_code && (cbp | motion_x | motion_y) == 0) { | |
| 549 /* skip macroblock */ | |
| 550 put_bits(&s->pb, 1, 1); | |
| 1164 | 551 s->last_bits++; |
| 552 s->misc_bits++; | |
| 1216 | 553 s->skip_count++; |
| 1164 | 554 |
| 0 | 555 return; |
| 556 } | |
| 557 if (s->use_skip_mb_code) | |
| 558 put_bits(&s->pb, 1, 0); /* mb coded */ | |
| 559 | |
| 457 | 560 if(s->msmpeg4_version<=2){ |
| 310 | 561 put_bits(&s->pb, |
| 562 v2_mb_type[cbp&3][1], | |
| 563 v2_mb_type[cbp&3][0]); | |
| 564 if((cbp&3) != 3) coded_cbp= cbp ^ 0x3C; | |
| 565 else coded_cbp= cbp; | |
| 0 | 566 |
| 310 | 567 put_bits(&s->pb, |
| 568 cbpy_tab[coded_cbp>>2][1], | |
| 569 cbpy_tab[coded_cbp>>2][0]); | |
| 1164 | 570 |
| 571 s->misc_bits += get_bits_diff(s); | |
| 572 | |
| 310 | 573 h263_pred_motion(s, 0, &pred_x, &pred_y); |
| 574 msmpeg4v2_encode_motion(s, motion_x - pred_x); | |
| 575 msmpeg4v2_encode_motion(s, motion_y - pred_y); | |
| 576 }else{ | |
| 577 put_bits(&s->pb, | |
| 578 table_mb_non_intra[cbp + 64][1], | |
| 579 table_mb_non_intra[cbp + 64][0]); | |
| 580 | |
| 1164 | 581 s->misc_bits += get_bits_diff(s); |
| 582 | |
| 310 | 583 /* motion vector */ |
| 584 h263_pred_motion(s, 0, &pred_x, &pred_y); | |
| 585 msmpeg4_encode_motion(s, motion_x - pred_x, | |
| 586 motion_y - pred_y); | |
| 587 } | |
| 1164 | 588 |
| 589 s->mv_bits += get_bits_diff(s); | |
| 590 | |
| 591 for (i = 0; i < 6; i++) { | |
| 592 msmpeg4_encode_block(s, block[i], i); | |
| 593 } | |
| 594 s->p_tex_bits += get_bits_diff(s); | |
| 0 | 595 } else { |
| 596 /* compute cbp */ | |
| 597 cbp = 0; | |
| 598 coded_cbp = 0; | |
| 599 for (i = 0; i < 6; i++) { | |
| 600 int val, pred; | |
| 601 val = (s->block_last_index[i] >= 1); | |
| 602 cbp |= val << (5 - i); | |
| 603 if (i < 4) { | |
| 604 /* predict value for close blocks only for luma */ | |
| 605 pred = coded_block_pred(s, i, &coded_block); | |
| 606 *coded_block = val; | |
| 607 val = val ^ pred; | |
| 608 } | |
| 609 coded_cbp |= val << (5 - i); | |
| 610 } | |
| 611 #if 0 | |
| 612 if (coded_cbp) | |
| 613 printf("cbp=%x %x\n", cbp, coded_cbp); | |
| 614 #endif | |
| 615 | |
| 457 | 616 if(s->msmpeg4_version<=2){ |
| 310 | 617 if (s->pict_type == I_TYPE) { |
| 618 put_bits(&s->pb, | |
| 619 v2_intra_cbpc[cbp&3][1], v2_intra_cbpc[cbp&3][0]); | |
| 620 } else { | |
| 621 if (s->use_skip_mb_code) | |
| 622 put_bits(&s->pb, 1, 0); /* mb coded */ | |
| 623 put_bits(&s->pb, | |
| 624 v2_mb_type[(cbp&3) + 4][1], | |
| 625 v2_mb_type[(cbp&3) + 4][0]); | |
| 626 } | |
| 627 put_bits(&s->pb, 1, 0); /* no AC prediction yet */ | |
| 0 | 628 put_bits(&s->pb, |
| 310 | 629 cbpy_tab[cbp>>2][1], |
| 630 cbpy_tab[cbp>>2][0]); | |
| 631 }else{ | |
| 632 if (s->pict_type == I_TYPE) { | |
| 633 set_stat(ST_INTRA_MB); | |
| 634 put_bits(&s->pb, | |
| 635 table_mb_intra[coded_cbp][1], table_mb_intra[coded_cbp][0]); | |
| 636 } else { | |
| 637 if (s->use_skip_mb_code) | |
| 638 put_bits(&s->pb, 1, 0); /* mb coded */ | |
| 639 put_bits(&s->pb, | |
| 640 table_mb_non_intra[cbp][1], | |
| 641 table_mb_non_intra[cbp][0]); | |
| 642 } | |
| 643 set_stat(ST_INTRA_MB); | |
| 644 put_bits(&s->pb, 1, 0); /* no AC prediction yet */ | |
| 578 | 645 if(s->inter_intra_pred){ |
| 646 s->h263_aic_dir=0; | |
| 647 put_bits(&s->pb, table_inter_intra[s->h263_aic_dir][1], table_inter_intra[s->h263_aic_dir][0]); | |
| 648 } | |
| 0 | 649 } |
| 1164 | 650 s->misc_bits += get_bits_diff(s); |
| 0 | 651 |
| 1164 | 652 for (i = 0; i < 6; i++) { |
| 653 msmpeg4_encode_block(s, block[i], i); | |
| 654 } | |
| 655 s->i_tex_bits += get_bits_diff(s); | |
| 1216 | 656 s->i_count++; |
| 0 | 657 } |
| 658 } | |
| 659 | |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
660 #endif //CONFIG_ENCODERS |
|
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
661 |
|
411
5c8b3a717929
workaround dc_scale bug in old ffmpeg msmpeg4v3 encoder (set workaround_bugs=1 for this)
michaelni
parents:
396
diff
changeset
|
662 /* old ffmpeg msmpeg4v3 mode */ |
| 1057 | 663 static void ff_old_msmpeg4_dc_scale(MpegEncContext * s) |
| 0 | 664 { |
|
411
5c8b3a717929
workaround dc_scale bug in old ffmpeg msmpeg4v3 encoder (set workaround_bugs=1 for this)
michaelni
parents:
396
diff
changeset
|
665 if (s->qscale < 5){ |
|
195
92f726205082
s->c_dc_scale was 7 if s->qscale==2 but should be 8 (the bug is visible in deep red areas in high bitrate clips) - patch by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
186
diff
changeset
|
666 s->y_dc_scale = 8; |
|
92f726205082
s->c_dc_scale was 7 if s->qscale==2 but should be 8 (the bug is visible in deep red areas in high bitrate clips) - patch by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
186
diff
changeset
|
667 s->c_dc_scale = 8; |
|
92f726205082
s->c_dc_scale was 7 if s->qscale==2 but should be 8 (the bug is visible in deep red areas in high bitrate clips) - patch by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
186
diff
changeset
|
668 }else if (s->qscale < 9){ |
|
92f726205082
s->c_dc_scale was 7 if s->qscale==2 but should be 8 (the bug is visible in deep red areas in high bitrate clips) - patch by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
186
diff
changeset
|
669 s->y_dc_scale = 2 * s->qscale; |
|
92f726205082
s->c_dc_scale was 7 if s->qscale==2 but should be 8 (the bug is visible in deep red areas in high bitrate clips) - patch by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
186
diff
changeset
|
670 s->c_dc_scale = (s->qscale + 13)>>1; |
|
411
5c8b3a717929
workaround dc_scale bug in old ffmpeg msmpeg4v3 encoder (set workaround_bugs=1 for this)
michaelni
parents:
396
diff
changeset
|
671 }else{ |
|
195
92f726205082
s->c_dc_scale was 7 if s->qscale==2 but should be 8 (the bug is visible in deep red areas in high bitrate clips) - patch by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
186
diff
changeset
|
672 s->y_dc_scale = s->qscale + 8; |
|
92f726205082
s->c_dc_scale was 7 if s->qscale==2 but should be 8 (the bug is visible in deep red areas in high bitrate clips) - patch by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
186
diff
changeset
|
673 s->c_dc_scale = (s->qscale + 13)>>1; |
|
92f726205082
s->c_dc_scale was 7 if s->qscale==2 but should be 8 (the bug is visible in deep red areas in high bitrate clips) - patch by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
186
diff
changeset
|
674 } |
| 0 | 675 } |
| 676 | |
| 499 | 677 static inline int msmpeg4v1_pred_dc(MpegEncContext * s, int n, |
| 1064 | 678 int32_t **dc_val_ptr) |
| 457 | 679 { |
| 680 int i; | |
| 681 | |
| 682 if (n < 4) { | |
| 683 i= 0; | |
| 684 } else { | |
| 685 i= n-3; | |
| 686 } | |
| 687 | |
| 688 *dc_val_ptr= &s->last_dc[i]; | |
| 689 return s->last_dc[i]; | |
| 690 } | |
| 691 | |
| 519 | 692 static int get_dc(uint8_t *src, int stride, int scale) |
| 693 { | |
| 694 int y; | |
| 695 int sum=0; | |
| 696 for(y=0; y<8; y++){ | |
| 697 int x; | |
| 698 for(x=0; x<8; x++){ | |
| 699 sum+=src[x + y*stride]; | |
| 700 } | |
| 701 } | |
| 702 return (sum + (scale>>1))/scale; | |
| 703 } | |
| 704 | |
| 0 | 705 /* dir = 0: left, dir = 1: top prediction */ |
| 499 | 706 static inline int msmpeg4_pred_dc(MpegEncContext * s, int n, |
| 1064 | 707 uint16_t **dc_val_ptr, int *dir_ptr) |
| 0 | 708 { |
| 299 | 709 int a, b, c, wrap, pred, scale; |
| 1064 | 710 int16_t *dc_val; |
| 0 | 711 |
| 712 /* find prediction */ | |
| 713 if (n < 4) { | |
| 714 scale = s->y_dc_scale; | |
| 715 } else { | |
| 716 scale = s->c_dc_scale; | |
| 717 } | |
| 457 | 718 |
| 299 | 719 wrap = s->block_wrap[n]; |
| 720 dc_val= s->dc_val[0] + s->block_index[n]; | |
| 0 | 721 |
| 722 /* B C | |
| 723 * A X | |
| 724 */ | |
| 299 | 725 a = dc_val[ - 1]; |
| 726 b = dc_val[ - 1 - wrap]; | |
| 727 c = dc_val[ - wrap]; | |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
728 |
| 983 | 729 if(s->first_slice_line && (n&2)==0 && s->msmpeg4_version<4){ |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
730 b=c=1024; |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
731 } |
| 0 | 732 |
| 733 /* XXX: the following solution consumes divisions, but it does not | |
| 734 necessitate to modify mpegvideo.c. The problem comes from the | |
| 735 fact they decided to store the quantized DC (which would lead | |
| 736 to problems if Q could vary !) */ | |
| 221 | 737 #if defined ARCH_X86 && !defined PIC |
| 204 | 738 asm volatile( |
| 739 "movl %3, %%eax \n\t" | |
| 740 "shrl $1, %%eax \n\t" | |
| 741 "addl %%eax, %2 \n\t" | |
| 742 "addl %%eax, %1 \n\t" | |
| 743 "addl %0, %%eax \n\t" | |
|
225
ae145876789d
use multiply instead of divides for DC prediction on X86
michaelni
parents:
221
diff
changeset
|
744 "mull %4 \n\t" |
|
ae145876789d
use multiply instead of divides for DC prediction on X86
michaelni
parents:
221
diff
changeset
|
745 "movl %%edx, %0 \n\t" |
| 204 | 746 "movl %1, %%eax \n\t" |
|
225
ae145876789d
use multiply instead of divides for DC prediction on X86
michaelni
parents:
221
diff
changeset
|
747 "mull %4 \n\t" |
|
ae145876789d
use multiply instead of divides for DC prediction on X86
michaelni
parents:
221
diff
changeset
|
748 "movl %%edx, %1 \n\t" |
| 204 | 749 "movl %2, %%eax \n\t" |
|
225
ae145876789d
use multiply instead of divides for DC prediction on X86
michaelni
parents:
221
diff
changeset
|
750 "mull %4 \n\t" |
|
ae145876789d
use multiply instead of divides for DC prediction on X86
michaelni
parents:
221
diff
changeset
|
751 "movl %%edx, %2 \n\t" |
| 228 | 752 : "+b" (a), "+c" (b), "+D" (c) |
| 753 : "g" (scale), "S" (inverse[scale]) | |
| 204 | 754 : "%eax", "%edx" |
| 755 ); | |
| 221 | 756 #else |
| 757 /* #elif defined (ARCH_ALPHA) */ | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
208
diff
changeset
|
758 /* Divisions are extremely costly on Alpha; optimize the most |
| 221 | 759 common case. But they are costly everywhere... |
| 760 */ | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
208
diff
changeset
|
761 if (scale == 8) { |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
208
diff
changeset
|
762 a = (a + (8 >> 1)) / 8; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
208
diff
changeset
|
763 b = (b + (8 >> 1)) / 8; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
208
diff
changeset
|
764 c = (c + (8 >> 1)) / 8; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
208
diff
changeset
|
765 } else { |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
208
diff
changeset
|
766 a = (a + (scale >> 1)) / scale; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
208
diff
changeset
|
767 b = (b + (scale >> 1)) / scale; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
208
diff
changeset
|
768 c = (c + (scale >> 1)) / scale; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
208
diff
changeset
|
769 } |
| 204 | 770 #endif |
| 0 | 771 /* XXX: WARNING: they did not choose the same test as MPEG4. This |
| 772 is very important ! */ | |
|
501
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
773 if(s->msmpeg4_version>3){ |
| 519 | 774 if(s->inter_intra_pred){ |
| 775 uint8_t *dest; | |
| 776 int wrap; | |
| 777 | |
| 778 if(n==1){ | |
| 779 pred=a; | |
| 780 *dir_ptr = 0; | |
| 781 }else if(n==2){ | |
| 782 pred=c; | |
| 783 *dir_ptr = 1; | |
| 784 }else if(n==3){ | |
| 785 if (abs(a - b) < abs(b - c)) { | |
| 786 pred = c; | |
| 787 *dir_ptr = 1; | |
| 788 } else { | |
| 789 pred = a; | |
| 790 *dir_ptr = 0; | |
| 791 } | |
| 792 }else{ | |
| 793 if(n<4){ | |
| 794 wrap= s->linesize; | |
| 903 | 795 dest= s->current_picture.data[0] + (((n>>1) + 2*s->mb_y) * 8* wrap ) + ((n&1) + 2*s->mb_x) * 8; |
| 519 | 796 }else{ |
| 556 | 797 wrap= s->uvlinesize; |
| 903 | 798 dest= s->current_picture.data[n-3] + (s->mb_y * 8 * wrap) + s->mb_x * 8; |
| 519 | 799 } |
| 800 if(s->mb_x==0) a= (1024 + (scale>>1))/scale; | |
| 801 else a= get_dc(dest-8, wrap, scale*8); | |
| 802 if(s->mb_y==0) c= (1024 + (scale>>1))/scale; | |
| 803 else c= get_dc(dest-8*wrap, wrap, scale*8); | |
| 804 | |
| 805 if (s->h263_aic_dir==0) { | |
| 806 pred= a; | |
| 807 *dir_ptr = 0; | |
| 808 }else if (s->h263_aic_dir==1) { | |
| 809 if(n==0){ | |
| 810 pred= c; | |
| 811 *dir_ptr = 1; | |
| 812 }else{ | |
| 813 pred= a; | |
| 814 *dir_ptr = 0; | |
| 815 } | |
| 816 }else if (s->h263_aic_dir==2) { | |
| 817 if(n==0){ | |
| 818 pred= a; | |
| 819 *dir_ptr = 0; | |
| 820 }else{ | |
| 821 pred= c; | |
| 822 *dir_ptr = 1; | |
| 823 } | |
| 824 } else { | |
| 825 pred= c; | |
| 826 *dir_ptr = 1; | |
| 827 } | |
| 828 } | |
| 829 }else{ | |
| 830 if (abs(a - b) < abs(b - c)) { | |
| 831 pred = c; | |
| 832 *dir_ptr = 1; | |
| 833 } else { | |
| 834 pred = a; | |
| 835 *dir_ptr = 0; | |
| 836 } | |
|
501
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
837 } |
|
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
838 }else{ |
|
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
839 if (abs(a - b) <= abs(b - c)) { |
|
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
840 pred = c; |
|
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
841 *dir_ptr = 1; |
|
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
842 } else { |
|
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
843 pred = a; |
|
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
844 *dir_ptr = 0; |
|
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
845 } |
| 0 | 846 } |
| 847 | |
| 848 /* update predictor */ | |
| 299 | 849 *dc_val_ptr = &dc_val[0]; |
| 0 | 850 return pred; |
| 851 } | |
| 852 | |
| 853 #define DC_MAX 119 | |
| 854 | |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
855 #ifdef CONFIG_ENCODERS |
|
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
856 |
| 0 | 857 static void msmpeg4_encode_dc(MpegEncContext * s, int level, int n, int *dir_ptr) |
| 858 { | |
| 859 int sign, code; | |
| 860 int pred; | |
| 861 | |
| 457 | 862 if(s->msmpeg4_version==1){ |
| 1064 | 863 int32_t *dc_val; |
| 457 | 864 pred = msmpeg4v1_pred_dc(s, n, &dc_val); |
| 865 | |
| 866 /* update predictor */ | |
| 867 *dc_val= level; | |
| 868 }else{ | |
| 1064 | 869 uint16_t *dc_val; |
|
501
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
870 pred = msmpeg4_pred_dc(s, n, &dc_val, dir_ptr); |
| 457 | 871 |
| 872 /* update predictor */ | |
| 873 if (n < 4) { | |
| 874 *dc_val = level * s->y_dc_scale; | |
| 875 } else { | |
| 876 *dc_val = level * s->c_dc_scale; | |
| 877 } | |
| 0 | 878 } |
| 879 | |
| 880 /* do the prediction */ | |
| 881 level -= pred; | |
| 882 | |
| 457 | 883 if(s->msmpeg4_version<=2){ |
| 310 | 884 if (n < 4) { |
| 885 put_bits(&s->pb, | |
| 886 v2_dc_lum_table[level+256][1], | |
| 887 v2_dc_lum_table[level+256][0]); | |
| 888 }else{ | |
| 889 put_bits(&s->pb, | |
| 890 v2_dc_chroma_table[level+256][1], | |
| 891 v2_dc_chroma_table[level+256][0]); | |
| 892 } | |
| 893 }else{ | |
| 894 sign = 0; | |
| 895 if (level < 0) { | |
| 896 level = -level; | |
| 897 sign = 1; | |
| 898 } | |
| 899 code = level; | |
| 900 if (code > DC_MAX) | |
| 901 code = DC_MAX; | |
| 0 | 902 |
| 310 | 903 if (s->dc_table_index == 0) { |
| 904 if (n < 4) { | |
| 905 put_bits(&s->pb, table0_dc_lum[code][1], table0_dc_lum[code][0]); | |
| 906 } else { | |
| 907 put_bits(&s->pb, table0_dc_chroma[code][1], table0_dc_chroma[code][0]); | |
| 908 } | |
| 0 | 909 } else { |
| 310 | 910 if (n < 4) { |
| 911 put_bits(&s->pb, table1_dc_lum[code][1], table1_dc_lum[code][0]); | |
| 912 } else { | |
| 913 put_bits(&s->pb, table1_dc_chroma[code][1], table1_dc_chroma[code][0]); | |
| 914 } | |
| 0 | 915 } |
| 310 | 916 |
| 917 if (code == DC_MAX) | |
| 918 put_bits(&s->pb, 8, level); | |
| 919 | |
| 920 if (level != 0) { | |
| 921 put_bits(&s->pb, 1, sign); | |
| 922 } | |
| 0 | 923 } |
| 924 } | |
| 925 | |
| 926 /* Encoding of a block. Very similar to MPEG4 except for a different | |
| 927 escape coding (same as H263) and more vlc tables. | |
| 928 */ | |
| 499 | 929 static inline void msmpeg4_encode_block(MpegEncContext * s, DCTELEM * block, int n) |
| 0 | 930 { |
| 931 int level, run, last, i, j, last_index; | |
| 932 int last_non_zero, sign, slevel; | |
| 933 int code, run_diff, dc_pred_dir; | |
| 934 const RLTable *rl; | |
| 1064 | 935 const uint8_t *scantable; |
| 0 | 936 |
| 937 if (s->mb_intra) { | |
| 938 set_stat(ST_DC); | |
| 939 msmpeg4_encode_dc(s, block[0], n, &dc_pred_dir); | |
| 940 i = 1; | |
| 941 if (n < 4) { | |
| 942 rl = &rl_table[s->rl_table_index]; | |
| 943 } else { | |
| 944 rl = &rl_table[3 + s->rl_chroma_table_index]; | |
| 945 } | |
| 946 run_diff = 0; | |
|
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
601
diff
changeset
|
947 scantable= s->intra_scantable.permutated; |
| 0 | 948 set_stat(ST_INTRA_AC); |
| 949 } else { | |
| 950 i = 0; | |
| 951 rl = &rl_table[3 + s->rl_table_index]; | |
| 457 | 952 if(s->msmpeg4_version<=2) |
| 310 | 953 run_diff = 0; |
| 954 else | |
| 955 run_diff = 1; | |
|
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
601
diff
changeset
|
956 scantable= s->inter_scantable.permutated; |
| 0 | 957 set_stat(ST_INTER_AC); |
| 958 } | |
| 959 | |
| 499 | 960 /* recalculate block_last_index for M$ wmv1 */ |
| 936 | 961 if(s->msmpeg4_version>=4 && s->block_last_index[n]>0){ |
| 499 | 962 for(last_index=63; last_index>=0; last_index--){ |
| 963 if(block[scantable[last_index]]) break; | |
| 964 } | |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
965 s->block_last_index[n]= last_index; |
| 499 | 966 }else |
| 967 last_index = s->block_last_index[n]; | |
| 0 | 968 /* AC coefs */ |
| 969 last_non_zero = i - 1; | |
| 970 for (; i <= last_index; i++) { | |
| 499 | 971 j = scantable[i]; |
| 0 | 972 level = block[j]; |
| 973 if (level) { | |
| 974 run = i - last_non_zero - 1; | |
| 975 last = (i == last_index); | |
| 976 sign = 0; | |
| 977 slevel = level; | |
| 978 if (level < 0) { | |
| 979 sign = 1; | |
| 980 level = -level; | |
| 981 } | |
| 601 | 982 |
| 499 | 983 if(level<=MAX_LEVEL && run<=MAX_RUN){ |
| 984 s->ac_stats[s->mb_intra][n>3][level][run][last]++; | |
| 985 } | |
| 986 #if 0 | |
| 987 else | |
| 988 s->ac_stats[s->mb_intra][n>3][40][63][0]++; //esc3 like | |
| 989 #endif | |
| 0 | 990 code = get_rl_index(rl, last, run, level); |
| 991 put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 992 if (code == rl->n) { | |
| 993 int level1, run1; | |
| 994 | |
| 995 level1 = level - rl->max_level[last][run]; | |
| 996 if (level1 < 1) | |
| 997 goto esc2; | |
| 998 code = get_rl_index(rl, last, run, level1); | |
| 999 if (code == rl->n) { | |
| 1000 esc2: | |
| 1001 put_bits(&s->pb, 1, 0); | |
| 1002 if (level > MAX_LEVEL) | |
| 1003 goto esc3; | |
| 1004 run1 = run - rl->max_run[last][level] - run_diff; | |
| 1005 if (run1 < 0) | |
| 1006 goto esc3; | |
| 1007 code = get_rl_index(rl, last, run1, level); | |
| 1008 if (code == rl->n) { | |
| 1009 esc3: | |
| 1010 /* third escape */ | |
| 1011 put_bits(&s->pb, 1, 0); | |
| 1012 put_bits(&s->pb, 1, last); | |
| 936 | 1013 if(s->msmpeg4_version>=4){ |
| 499 | 1014 if(s->esc3_level_length==0){ |
| 1015 s->esc3_level_length=8; | |
| 1016 s->esc3_run_length= 6; | |
| 1017 if(s->qscale<8) | |
| 1018 put_bits(&s->pb, 6, 3); | |
| 1019 else | |
| 1020 put_bits(&s->pb, 8, 3); | |
| 1021 } | |
| 1022 put_bits(&s->pb, s->esc3_run_length, run); | |
| 1023 put_bits(&s->pb, 1, sign); | |
| 1024 put_bits(&s->pb, s->esc3_level_length, level); | |
| 1025 }else{ | |
| 1026 put_bits(&s->pb, 6, run); | |
| 1027 put_bits(&s->pb, 8, slevel & 0xff); | |
| 1028 } | |
| 0 | 1029 } else { |
| 1030 /* second escape */ | |
| 1031 put_bits(&s->pb, 1, 1); | |
| 1032 put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 1033 put_bits(&s->pb, 1, sign); | |
| 1034 } | |
| 1035 } else { | |
| 1036 /* first escape */ | |
| 1037 put_bits(&s->pb, 1, 1); | |
| 1038 put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 1039 put_bits(&s->pb, 1, sign); | |
| 1040 } | |
| 1041 } else { | |
| 1042 put_bits(&s->pb, 1, sign); | |
| 1043 } | |
| 1044 last_non_zero = i; | |
| 1045 } | |
| 1046 } | |
| 1047 } | |
| 1048 | |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
1049 #endif //CONFIG_ENCODERS |
|
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
1050 |
| 0 | 1051 /****************************************/ |
| 1052 /* decoding stuff */ | |
| 1053 | |
| 936 | 1054 static VLC mb_non_intra_vlc[4]; |
| 0 | 1055 static VLC mb_intra_vlc; |
| 1056 static VLC dc_lum_vlc[2]; | |
| 1057 static VLC dc_chroma_vlc[2]; | |
| 307 | 1058 static VLC v2_dc_lum_vlc; |
| 1059 static VLC v2_dc_chroma_vlc; | |
| 1060 static VLC cbpy_vlc; | |
| 1061 static VLC v2_intra_cbpc_vlc; | |
| 1062 static VLC v2_mb_type_vlc; | |
| 1063 static VLC v2_mv_vlc; | |
| 457 | 1064 static VLC v1_intra_cbpc_vlc; |
| 1065 static VLC v1_inter_cbpc_vlc; | |
| 519 | 1066 static VLC inter_intra_vlc; |
| 307 | 1067 |
| 1068 /* this table is practically identical to the one from h263 except that its inverted */ | |
| 468 | 1069 static void init_h263_dc_for_msmpeg4(void) |
| 307 | 1070 { |
| 1071 int level, uni_code, uni_len; | |
| 1072 | |
| 309 | 1073 for(level=-256; level<256; level++){ |
| 307 | 1074 int size, v, l; |
| 1075 /* find number of bits */ | |
| 1076 size = 0; | |
| 1077 v = abs(level); | |
| 1078 while (v) { | |
| 1079 v >>= 1; | |
| 1080 size++; | |
| 1081 } | |
| 1082 | |
| 1083 if (level < 0) | |
| 1084 l= (-level) ^ ((1 << size) - 1); | |
| 1085 else | |
| 1086 l= level; | |
| 1087 | |
| 1088 /* luminance h263 */ | |
| 1089 uni_code= DCtab_lum[size][0]; | |
| 1090 uni_len = DCtab_lum[size][1]; | |
| 1091 uni_code ^= (1<<uni_len)-1; //M$ doesnt like compatibility | |
| 1092 | |
| 1093 if (size > 0) { | |
| 1094 uni_code<<=size; uni_code|=l; | |
| 1095 uni_len+=size; | |
| 1096 if (size > 8){ | |
| 1097 uni_code<<=1; uni_code|=1; | |
| 1098 uni_len++; | |
| 1099 } | |
| 1100 } | |
| 1101 v2_dc_lum_table[level+256][0]= uni_code; | |
| 1102 v2_dc_lum_table[level+256][1]= uni_len; | |
| 1103 | |
| 1104 /* chrominance h263 */ | |
| 1105 uni_code= DCtab_chrom[size][0]; | |
| 1106 uni_len = DCtab_chrom[size][1]; | |
| 1107 uni_code ^= (1<<uni_len)-1; //M$ doesnt like compatibility | |
| 1108 | |
| 1109 if (size > 0) { | |
| 1110 uni_code<<=size; uni_code|=l; | |
| 1111 uni_len+=size; | |
| 1112 if (size > 8){ | |
| 1113 uni_code<<=1; uni_code|=1; | |
| 1114 uni_len++; | |
| 1115 } | |
| 1116 } | |
| 1117 v2_dc_chroma_table[level+256][0]= uni_code; | |
| 1118 v2_dc_chroma_table[level+256][1]= uni_len; | |
| 1119 | |
| 1120 } | |
| 1121 } | |
| 0 | 1122 |
| 1123 /* init all vlc decoding tables */ | |
| 499 | 1124 int ff_msmpeg4_decode_init(MpegEncContext *s) |
| 0 | 1125 { |
| 483 | 1126 static int done = 0; |
| 0 | 1127 int i; |
| 1128 MVTable *mv; | |
| 1129 | |
| 499 | 1130 common_init(s); |
| 483 | 1131 |
| 1132 if (!done) { | |
| 1133 done = 1; | |
| 0 | 1134 |
| 483 | 1135 for(i=0;i<NB_RL_TABLES;i++) { |
| 1136 init_rl(&rl_table[i]); | |
| 1137 init_vlc_rl(&rl_table[i]); | |
| 1138 } | |
| 1139 for(i=0;i<2;i++) { | |
| 1140 mv = &mv_tables[i]; | |
| 531 | 1141 init_vlc(&mv->vlc, MV_VLC_BITS, mv->n + 1, |
| 483 | 1142 mv->table_mv_bits, 1, 1, |
| 1143 mv->table_mv_code, 2, 2); | |
| 1144 } | |
| 1145 | |
| 531 | 1146 init_vlc(&dc_lum_vlc[0], DC_VLC_BITS, 120, |
| 483 | 1147 &table0_dc_lum[0][1], 8, 4, |
| 1148 &table0_dc_lum[0][0], 8, 4); | |
| 531 | 1149 init_vlc(&dc_chroma_vlc[0], DC_VLC_BITS, 120, |
| 483 | 1150 &table0_dc_chroma[0][1], 8, 4, |
| 1151 &table0_dc_chroma[0][0], 8, 4); | |
| 531 | 1152 init_vlc(&dc_lum_vlc[1], DC_VLC_BITS, 120, |
| 483 | 1153 &table1_dc_lum[0][1], 8, 4, |
| 1154 &table1_dc_lum[0][0], 8, 4); | |
| 531 | 1155 init_vlc(&dc_chroma_vlc[1], DC_VLC_BITS, 120, |
| 483 | 1156 &table1_dc_chroma[0][1], 8, 4, |
| 1157 &table1_dc_chroma[0][0], 8, 4); | |
| 307 | 1158 |
| 531 | 1159 init_vlc(&v2_dc_lum_vlc, DC_VLC_BITS, 512, |
| 483 | 1160 &v2_dc_lum_table[0][1], 8, 4, |
| 1161 &v2_dc_lum_table[0][0], 8, 4); | |
| 531 | 1162 init_vlc(&v2_dc_chroma_vlc, DC_VLC_BITS, 512, |
| 483 | 1163 &v2_dc_chroma_table[0][1], 8, 4, |
| 1164 &v2_dc_chroma_table[0][0], 8, 4); | |
| 307 | 1165 |
| 531 | 1166 init_vlc(&cbpy_vlc, CBPY_VLC_BITS, 16, |
| 483 | 1167 &cbpy_tab[0][1], 2, 1, |
| 1168 &cbpy_tab[0][0], 2, 1); | |
| 531 | 1169 init_vlc(&v2_intra_cbpc_vlc, V2_INTRA_CBPC_VLC_BITS, 4, |
| 483 | 1170 &v2_intra_cbpc[0][1], 2, 1, |
| 1171 &v2_intra_cbpc[0][0], 2, 1); | |
| 531 | 1172 init_vlc(&v2_mb_type_vlc, V2_MB_TYPE_VLC_BITS, 8, |
| 483 | 1173 &v2_mb_type[0][1], 2, 1, |
| 1174 &v2_mb_type[0][0], 2, 1); | |
| 531 | 1175 init_vlc(&v2_mv_vlc, V2_MV_VLC_BITS, 33, |
| 483 | 1176 &mvtab[0][1], 2, 1, |
| 1177 &mvtab[0][0], 2, 1); | |
| 0 | 1178 |
| 936 | 1179 for(i=0; i<4; i++){ |
| 1180 init_vlc(&mb_non_intra_vlc[i], MB_NON_INTRA_VLC_BITS, 128, | |
| 1181 &wmv2_inter_table[i][0][1], 8, 4, | |
| 1182 &wmv2_inter_table[i][0][0], 8, 4); //FIXME name? | |
| 1183 } | |
| 1184 | |
| 531 | 1185 init_vlc(&mb_intra_vlc, MB_INTRA_VLC_BITS, 64, |
| 483 | 1186 &table_mb_intra[0][1], 4, 2, |
| 1187 &table_mb_intra[0][0], 4, 2); | |
| 457 | 1188 |
| 531 | 1189 init_vlc(&v1_intra_cbpc_vlc, V1_INTRA_CBPC_VLC_BITS, 8, |
| 483 | 1190 intra_MCBPC_bits, 1, 1, |
| 1191 intra_MCBPC_code, 1, 1); | |
| 531 | 1192 init_vlc(&v1_inter_cbpc_vlc, V1_INTER_CBPC_VLC_BITS, 25, |
| 483 | 1193 inter_MCBPC_bits, 1, 1, |
| 1194 inter_MCBPC_code, 1, 1); | |
| 519 | 1195 |
| 531 | 1196 init_vlc(&inter_intra_vlc, INTER_INTRA_VLC_BITS, 4, |
| 519 | 1197 &table_inter_intra[0][1], 2, 1, |
| 1198 &table_inter_intra[0][0], 2, 1); | |
| 483 | 1199 } |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1200 |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1201 switch(s->msmpeg4_version){ |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1202 case 1: |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1203 case 2: |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1204 s->decode_mb= msmpeg4v12_decode_mb; |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1205 break; |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1206 case 3: |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1207 case 4: |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1208 s->decode_mb= msmpeg4v34_decode_mb; |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1209 break; |
| 936 | 1210 case 5: |
| 1211 s->decode_mb= wmv2_decode_mb; | |
| 1212 break; | |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1213 } |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1214 |
|
769
9f8c4905928b
fixing decoding of streams with no keyframe at the start
michaelni
parents:
759
diff
changeset
|
1215 s->slice_height= s->mb_height; //to avoid 1/0 if the first frame isnt a keyframe |
|
9f8c4905928b
fixing decoding of streams with no keyframe at the start
michaelni
parents:
759
diff
changeset
|
1216 |
| 0 | 1217 return 0; |
| 1218 } | |
| 1219 | |
| 1220 static int decode012(GetBitContext *gb) | |
| 1221 { | |
| 1222 int n; | |
| 21 | 1223 n = get_bits1(gb); |
| 0 | 1224 if (n == 0) |
| 1225 return 0; | |
| 1226 else | |
| 21 | 1227 return get_bits1(gb) + 1; |
| 0 | 1228 } |
| 1229 | |
| 307 | 1230 int msmpeg4_decode_picture_header(MpegEncContext * s) |
|
300
d874359e58f1
msmpeg4v2 header parser & some dump bits code behind #if 0
michaelni
parents:
299
diff
changeset
|
1231 { |
| 499 | 1232 int code; |
|
300
d874359e58f1
msmpeg4v2 header parser & some dump bits code behind #if 0
michaelni
parents:
299
diff
changeset
|
1233 |
| 311 | 1234 #if 0 |
| 1235 { | |
| 1236 int i; | |
|
1025
1f9afd8b9131
GetBitContext.size is allways multiplied by 8 -> use size_in_bits to avoid useless *8 in a few inner loops
michaelni
parents:
983
diff
changeset
|
1237 for(i=0; i<s->gb.size_in_bits; i++) |
| 311 | 1238 printf("%d", get_bits1(&s->gb)); |
| 1239 // get_bits1(&s->gb); | |
| 1240 printf("END\n"); | |
| 1241 return -1; | |
| 1242 } | |
| 1243 #endif | |
| 457 | 1244 |
| 1245 if(s->msmpeg4_version==1){ | |
| 1246 int start_code, num; | |
| 1247 start_code = (get_bits(&s->gb, 16)<<16) | get_bits(&s->gb, 16); | |
| 1248 if(start_code!=0x00000100){ | |
| 1249 fprintf(stderr, "invalid startcode\n"); | |
| 1250 return -1; | |
| 1251 } | |
| 1252 | |
| 1253 num= get_bits(&s->gb, 5); // frame number */ | |
| 1254 } | |
| 1255 | |
|
300
d874359e58f1
msmpeg4v2 header parser & some dump bits code behind #if 0
michaelni
parents:
299
diff
changeset
|
1256 s->pict_type = get_bits(&s->gb, 2) + 1; |
|
d874359e58f1
msmpeg4v2 header parser & some dump bits code behind #if 0
michaelni
parents:
299
diff
changeset
|
1257 if (s->pict_type != I_TYPE && |
| 457 | 1258 s->pict_type != P_TYPE){ |
| 1259 fprintf(stderr, "invalid picture type\n"); | |
|
300
d874359e58f1
msmpeg4v2 header parser & some dump bits code behind #if 0
michaelni
parents:
299
diff
changeset
|
1260 return -1; |
| 457 | 1261 } |
| 519 | 1262 #if 0 |
| 1263 { | |
| 1264 static int had_i=0; | |
| 1265 if(s->pict_type == I_TYPE) had_i=1; | |
| 1266 if(!had_i) return -1; | |
| 1267 } | |
| 1268 #endif | |
|
300
d874359e58f1
msmpeg4v2 header parser & some dump bits code behind #if 0
michaelni
parents:
299
diff
changeset
|
1269 s->qscale = get_bits(&s->gb, 5); |
|
1063
fdeac9642346
check for qscale==0 (fixes 1/0 on one corrupted stream)
michaelni
parents:
1057
diff
changeset
|
1270 if(s->qscale==0){ |
|
fdeac9642346
check for qscale==0 (fixes 1/0 on one corrupted stream)
michaelni
parents:
1057
diff
changeset
|
1271 fprintf(stderr, "invalid qscale\n"); |
|
fdeac9642346
check for qscale==0 (fixes 1/0 on one corrupted stream)
michaelni
parents:
1057
diff
changeset
|
1272 return -1; |
|
fdeac9642346
check for qscale==0 (fixes 1/0 on one corrupted stream)
michaelni
parents:
1057
diff
changeset
|
1273 } |
|
300
d874359e58f1
msmpeg4v2 header parser & some dump bits code behind #if 0
michaelni
parents:
299
diff
changeset
|
1274 |
|
d874359e58f1
msmpeg4v2 header parser & some dump bits code behind #if 0
michaelni
parents:
299
diff
changeset
|
1275 if (s->pict_type == I_TYPE) { |
|
d874359e58f1
msmpeg4v2 header parser & some dump bits code behind #if 0
michaelni
parents:
299
diff
changeset
|
1276 code = get_bits(&s->gb, 5); |
| 457 | 1277 if(s->msmpeg4_version==1){ |
| 1278 if(code==0 || code>s->mb_height){ | |
| 1279 fprintf(stderr, "invalid slice height %d\n", code); | |
| 1280 return -1; | |
| 1281 } | |
| 1282 | |
| 1283 s->slice_height = code; | |
| 1284 }else{ | |
| 1285 /* 0x17: one slice, 0x18: two slices, ... */ | |
| 519 | 1286 if (code < 0x17){ |
| 1287 fprintf(stderr, "error, slice code was %X\n", code); | |
| 457 | 1288 return -1; |
| 519 | 1289 } |
| 457 | 1290 |
| 1291 s->slice_height = s->mb_height / (code - 0x16); | |
| 1292 } | |
| 311 | 1293 |
| 1294 switch(s->msmpeg4_version){ | |
| 457 | 1295 case 1: |
| 311 | 1296 case 2: |
| 307 | 1297 s->rl_chroma_table_index = 2; |
| 1298 s->rl_table_index = 2; | |
|
300
d874359e58f1
msmpeg4v2 header parser & some dump bits code behind #if 0
michaelni
parents:
299
diff
changeset
|
1299 |
| 307 | 1300 s->dc_table_index = 0; //not used |
| 311 | 1301 break; |
| 1302 case 3: | |
| 307 | 1303 s->rl_chroma_table_index = decode012(&s->gb); |
| 1304 s->rl_table_index = decode012(&s->gb); | |
| 0 | 1305 |
| 307 | 1306 s->dc_table_index = get_bits1(&s->gb); |
| 311 | 1307 break; |
| 1308 case 4: | |
| 499 | 1309 msmpeg4_decode_ext_header(s, (2+5+5+17+7)/8); |
| 1310 | |
| 578 | 1311 if(s->bit_rate > MBAC_BITRATE) s->per_mb_rl_table= get_bits1(&s->gb); |
| 1312 else s->per_mb_rl_table= 0; | |
| 519 | 1313 |
| 499 | 1314 if(!s->per_mb_rl_table){ |
| 1315 s->rl_chroma_table_index = decode012(&s->gb); | |
| 1316 s->rl_table_index = decode012(&s->gb); | |
| 311 | 1317 } |
| 1318 | |
| 499 | 1319 s->dc_table_index = get_bits1(&s->gb); |
| 519 | 1320 s->inter_intra_pred= 0; |
| 311 | 1321 break; |
| 307 | 1322 } |
| 0 | 1323 s->no_rounding = 1; |
| 519 | 1324 /* printf("qscale:%d rlc:%d rl:%d dc:%d mbrl:%d slice:%d \n", |
| 200 | 1325 s->qscale, |
| 1326 s->rl_chroma_table_index, | |
| 1327 s->rl_table_index, | |
| 499 | 1328 s->dc_table_index, |
| 519 | 1329 s->per_mb_rl_table, |
| 1330 s->slice_height);*/ | |
| 0 | 1331 } else { |
| 457 | 1332 switch(s->msmpeg4_version){ |
| 1333 case 1: | |
| 1334 case 2: | |
| 1335 if(s->msmpeg4_version==1) | |
| 1336 s->use_skip_mb_code = 1; | |
| 1337 else | |
| 1338 s->use_skip_mb_code = get_bits1(&s->gb); | |
| 307 | 1339 s->rl_table_index = 2; |
| 1340 s->rl_chroma_table_index = s->rl_table_index; | |
| 1341 s->dc_table_index = 0; //not used | |
| 1342 s->mv_table_index = 0; | |
| 457 | 1343 break; |
| 1344 case 3: | |
| 1345 s->use_skip_mb_code = get_bits1(&s->gb); | |
| 307 | 1346 s->rl_table_index = decode012(&s->gb); |
| 1347 s->rl_chroma_table_index = s->rl_table_index; | |
| 0 | 1348 |
| 307 | 1349 s->dc_table_index = get_bits1(&s->gb); |
| 1350 | |
| 1351 s->mv_table_index = get_bits1(&s->gb); | |
| 457 | 1352 break; |
| 499 | 1353 case 4: |
| 1354 s->use_skip_mb_code = get_bits1(&s->gb); | |
| 519 | 1355 |
| 578 | 1356 if(s->bit_rate > MBAC_BITRATE) s->per_mb_rl_table= get_bits1(&s->gb); |
| 1357 else s->per_mb_rl_table= 0; | |
| 519 | 1358 |
| 499 | 1359 if(!s->per_mb_rl_table){ |
| 1360 s->rl_table_index = decode012(&s->gb); | |
| 1361 s->rl_chroma_table_index = s->rl_table_index; | |
| 1362 } | |
| 1363 | |
| 1364 s->dc_table_index = get_bits1(&s->gb); | |
| 1365 | |
| 1366 s->mv_table_index = get_bits1(&s->gb); | |
| 578 | 1367 s->inter_intra_pred= (s->width*s->height < 320*240 && s->bit_rate<=II_BITRATE); |
| 499 | 1368 break; |
| 307 | 1369 } |
| 519 | 1370 /* printf("skip:%d rl:%d rlc:%d dc:%d mv:%d mbrl:%d qp:%d \n", |
| 200 | 1371 s->use_skip_mb_code, |
| 1372 s->rl_table_index, | |
| 1373 s->rl_chroma_table_index, | |
| 1374 s->dc_table_index, | |
| 499 | 1375 s->mv_table_index, |
| 519 | 1376 s->per_mb_rl_table, |
| 1377 s->qscale);*/ | |
| 208 | 1378 if(s->flipflop_rounding){ |
| 1379 s->no_rounding ^= 1; | |
| 1380 }else{ | |
| 1381 s->no_rounding = 0; | |
| 1382 } | |
| 0 | 1383 } |
| 936 | 1384 //printf("%d %d %d %d %d\n", s->pict_type, s->bit_rate, s->inter_intra_pred, s->width, s->height); |
| 499 | 1385 |
| 1386 s->esc3_level_length= 0; | |
| 1387 s->esc3_run_length= 0; | |
| 307 | 1388 |
| 0 | 1389 #ifdef DEBUG |
| 1390 printf("*****frame %d:\n", frame_count++); | |
| 1391 #endif | |
| 1392 return 0; | |
| 1393 } | |
| 1394 | |
| 208 | 1395 int msmpeg4_decode_ext_header(MpegEncContext * s, int buf_size) |
| 1396 { | |
| 457 | 1397 int left= buf_size*8 - get_bits_count(&s->gb); |
| 1398 int length= s->msmpeg4_version>=3 ? 17 : 16; | |
| 208 | 1399 /* the alt_bitstream reader could read over the end so we need to check it */ |
| 457 | 1400 if(left>=length && left<length+8) |
| 208 | 1401 { |
|
251
75091bfc577b
fixing msmpeg4 decoding if fps < 16 (i thought it was a indicator for the ext header, its the fps indeed)
michaelni
parents:
246
diff
changeset
|
1402 int fps; |
|
75091bfc577b
fixing msmpeg4 decoding if fps < 16 (i thought it was a indicator for the ext header, its the fps indeed)
michaelni
parents:
246
diff
changeset
|
1403 |
|
75091bfc577b
fixing msmpeg4 decoding if fps < 16 (i thought it was a indicator for the ext header, its the fps indeed)
michaelni
parents:
246
diff
changeset
|
1404 fps= get_bits(&s->gb, 5); |
| 578 | 1405 s->bit_rate= get_bits(&s->gb, 11)*1024; |
| 457 | 1406 if(s->msmpeg4_version>=3) |
| 1407 s->flipflop_rounding= get_bits1(&s->gb); | |
| 1408 else | |
| 1409 s->flipflop_rounding= 0; | |
|
251
75091bfc577b
fixing msmpeg4 decoding if fps < 16 (i thought it was a indicator for the ext header, its the fps indeed)
michaelni
parents:
246
diff
changeset
|
1410 |
| 578 | 1411 // printf("fps:%2d bps:%2d roundingType:%1d\n", fps, s->bit_rate/1024, s->flipflop_rounding); |
| 457 | 1412 } |
| 1413 else if(left<length+8) | |
| 1414 { | |
| 1415 s->flipflop_rounding= 0; | |
| 1416 printf("ext header missing, %d left\n", left); | |
| 208 | 1417 } |
| 1418 else | |
| 1419 { | |
| 457 | 1420 fprintf(stderr, "I frame too long, ignoring ext header\n"); |
| 208 | 1421 } |
|
251
75091bfc577b
fixing msmpeg4 decoding if fps < 16 (i thought it was a indicator for the ext header, its the fps indeed)
michaelni
parents:
246
diff
changeset
|
1422 |
| 208 | 1423 return 0; |
| 1424 } | |
| 1425 | |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
1426 static inline void msmpeg4_memsetw(short *tab, int val, int n) |
| 0 | 1427 { |
| 1428 int i; | |
| 1429 for(i=0;i<n;i++) | |
| 1430 tab[i] = val; | |
| 1431 } | |
| 1432 | |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
1433 #ifdef CONFIG_ENCODERS |
|
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
1434 |
| 310 | 1435 static void msmpeg4v2_encode_motion(MpegEncContext * s, int val) |
| 1436 { | |
| 1437 int range, bit_size, sign, code, bits; | |
| 1438 | |
| 1439 if (val == 0) { | |
| 1440 /* zero vector */ | |
| 1441 code = 0; | |
| 1442 put_bits(&s->pb, mvtab[code][1], mvtab[code][0]); | |
| 1443 } else { | |
| 1444 bit_size = s->f_code - 1; | |
| 1445 range = 1 << bit_size; | |
| 1446 if (val <= -64) | |
| 1447 val += 64; | |
| 1448 else if (val >= 64) | |
| 1449 val -= 64; | |
| 1450 | |
| 1451 if (val >= 0) { | |
| 1452 sign = 0; | |
| 1453 } else { | |
| 1454 val = -val; | |
| 1455 sign = 1; | |
| 1456 } | |
| 1457 val--; | |
| 1458 code = (val >> bit_size) + 1; | |
| 1459 bits = val & (range - 1); | |
| 1460 | |
| 1461 put_bits(&s->pb, mvtab[code][1] + 1, (mvtab[code][0] << 1) | sign); | |
| 1462 if (bit_size > 0) { | |
| 1463 put_bits(&s->pb, bit_size, bits); | |
| 1464 } | |
| 1465 } | |
| 1466 } | |
| 1467 | |
|
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
1468 #endif //CONFIG_ENCODERS |
|
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
1469 |
| 307 | 1470 /* this is identical to h263 except that its range is multiplied by 2 */ |
| 1471 static int msmpeg4v2_decode_motion(MpegEncContext * s, int pred, int f_code) | |
| 1472 { | |
| 1473 int code, val, sign, shift; | |
| 1474 | |
| 531 | 1475 code = get_vlc2(&s->gb, v2_mv_vlc.table, V2_MV_VLC_BITS, 2); |
| 457 | 1476 // printf("MV code %d at %d %d pred: %d\n", code, s->mb_x,s->mb_y, pred); |
| 307 | 1477 if (code < 0) |
| 1478 return 0xffff; | |
| 1479 | |
| 1480 if (code == 0) | |
| 1481 return pred; | |
| 1482 sign = get_bits1(&s->gb); | |
| 1483 shift = f_code - 1; | |
|
1255
625ccacd1113
decode motion & modulo optimize patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1216
diff
changeset
|
1484 val = code; |
|
625ccacd1113
decode motion & modulo optimize patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1216
diff
changeset
|
1485 if (shift) { |
|
625ccacd1113
decode motion & modulo optimize patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1216
diff
changeset
|
1486 val = (val - 1) << shift; |
| 307 | 1487 val |= get_bits(&s->gb, shift); |
|
1255
625ccacd1113
decode motion & modulo optimize patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1216
diff
changeset
|
1488 val++; |
|
625ccacd1113
decode motion & modulo optimize patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1216
diff
changeset
|
1489 } |
| 307 | 1490 if (sign) |
| 1491 val = -val; | |
| 457 | 1492 |
| 307 | 1493 val += pred; |
| 1494 if (val <= -64) | |
| 1495 val += 64; | |
| 1496 else if (val >= 64) | |
| 1497 val -= 64; | |
| 1498 | |
| 1499 return val; | |
| 1500 } | |
| 1501 | |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1502 static int msmpeg4v12_decode_mb(MpegEncContext *s, DCTELEM block[6][64]) |
| 307 | 1503 { |
| 1504 int cbp, code, i; | |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1505 |
| 307 | 1506 if (s->pict_type == P_TYPE) { |
| 1507 if (s->use_skip_mb_code) { | |
| 1508 if (get_bits1(&s->gb)) { | |
| 1509 /* skip mb */ | |
| 1510 s->mb_intra = 0; | |
| 1511 for(i=0;i<6;i++) | |
| 1512 s->block_last_index[i] = -1; | |
| 1513 s->mv_dir = MV_DIR_FORWARD; | |
| 1514 s->mv_type = MV_TYPE_16X16; | |
| 1515 s->mv[0][0][0] = 0; | |
| 1516 s->mv[0][0][1] = 0; | |
| 1517 s->mb_skiped = 1; | |
| 1518 return 0; | |
| 1519 } | |
| 1520 } | |
| 1521 | |
| 457 | 1522 if(s->msmpeg4_version==2) |
| 531 | 1523 code = get_vlc2(&s->gb, v2_mb_type_vlc.table, V2_MB_TYPE_VLC_BITS, 1); |
| 457 | 1524 else |
| 531 | 1525 code = get_vlc2(&s->gb, v1_inter_cbpc_vlc.table, V1_INTER_CBPC_VLC_BITS, 3); |
| 457 | 1526 if(code<0 || code>7){ |
| 1527 fprintf(stderr, "cbpc %d invalid at %d %d\n", code, s->mb_x, s->mb_y); | |
| 1528 return -1; | |
| 1529 } | |
| 1530 | |
| 307 | 1531 s->mb_intra = code >>2; |
| 1532 | |
| 1533 cbp = code & 0x3; | |
| 1534 } else { | |
| 1535 s->mb_intra = 1; | |
| 457 | 1536 if(s->msmpeg4_version==2) |
| 531 | 1537 cbp= get_vlc2(&s->gb, v2_intra_cbpc_vlc.table, V2_INTRA_CBPC_VLC_BITS, 1); |
| 457 | 1538 else |
| 531 | 1539 cbp= get_vlc2(&s->gb, v1_intra_cbpc_vlc.table, V1_INTRA_CBPC_VLC_BITS, 1); |
| 457 | 1540 if(cbp<0 || cbp>3){ |
| 1541 fprintf(stderr, "cbpc %d invalid at %d %d\n", cbp, s->mb_x, s->mb_y); | |
| 1542 return -1; | |
| 1543 } | |
| 307 | 1544 } |
| 1545 | |
| 1546 if (!s->mb_intra) { | |
| 457 | 1547 int mx, my, cbpy; |
| 1548 | |
| 531 | 1549 cbpy= get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 457 | 1550 if(cbpy<0){ |
| 1551 fprintf(stderr, "cbpy %d invalid at %d %d\n", cbp, s->mb_x, s->mb_y); | |
| 1552 return -1; | |
| 1553 } | |
| 307 | 1554 |
| 457 | 1555 cbp|= cbpy<<2; |
| 1556 if(s->msmpeg4_version==1 || (cbp&3) != 3) cbp^= 0x3C; | |
| 307 | 1557 |
| 1558 h263_pred_motion(s, 0, &mx, &my); | |
| 1559 mx= msmpeg4v2_decode_motion(s, mx, 1); | |
| 1560 my= msmpeg4v2_decode_motion(s, my, 1); | |
| 1561 | |
| 1562 s->mv_dir = MV_DIR_FORWARD; | |
| 1563 s->mv_type = MV_TYPE_16X16; | |
| 1564 s->mv[0][0][0] = mx; | |
| 1565 s->mv[0][0][1] = my; | |
| 1566 } else { | |
| 457 | 1567 if(s->msmpeg4_version==2){ |
| 1568 s->ac_pred = get_bits1(&s->gb); | |
| 531 | 1569 cbp|= get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1)<<2; //FIXME check errors |
| 457 | 1570 } else{ |
| 1571 s->ac_pred = 0; | |
| 531 | 1572 cbp|= get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1)<<2; //FIXME check errors |
| 457 | 1573 if(s->pict_type==P_TYPE) cbp^=0x3C; |
| 1574 } | |
| 307 | 1575 } |
| 1576 | |
| 1577 for (i = 0; i < 6; i++) { | |
| 936 | 1578 if (msmpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, NULL) < 0) |
| 307 | 1579 { |
| 457 | 1580 fprintf(stderr,"\nerror while decoding block: %d x %d (%d)\n", s->mb_x, s->mb_y, i); |
| 307 | 1581 return -1; |
| 1582 } | |
| 1583 } | |
| 1584 return 0; | |
| 1585 } | |
| 1586 | |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1587 static int msmpeg4v34_decode_mb(MpegEncContext *s, DCTELEM block[6][64]) |
| 0 | 1588 { |
| 1589 int cbp, code, i; | |
| 1064 | 1590 uint8_t *coded_val; |
|
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1164
diff
changeset
|
1591 uint32_t * const mb_type_ptr= &s->current_picture.mb_type[ s->mb_x + s->mb_y*s->mb_stride ]; |
| 0 | 1592 |
| 1593 if (s->pict_type == P_TYPE) { | |
| 1594 set_stat(ST_INTER_MB); | |
| 1595 if (s->use_skip_mb_code) { | |
| 21 | 1596 if (get_bits1(&s->gb)) { |
| 0 | 1597 /* skip mb */ |
| 1598 s->mb_intra = 0; | |
| 1599 for(i=0;i<6;i++) | |
| 1600 s->block_last_index[i] = -1; | |
| 1601 s->mv_dir = MV_DIR_FORWARD; | |
| 1602 s->mv_type = MV_TYPE_16X16; | |
| 1603 s->mv[0][0][0] = 0; | |
| 1604 s->mv[0][0][1] = 0; | |
|
7
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
1605 s->mb_skiped = 1; |
|
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1164
diff
changeset
|
1606 *mb_type_ptr = MB_TYPE_SKIP | MB_TYPE_L0 | MB_TYPE_16x16; |
|
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1164
diff
changeset
|
1607 |
| 0 | 1608 return 0; |
| 1609 } | |
| 1610 } | |
| 1611 | |
| 936 | 1612 code = get_vlc2(&s->gb, mb_non_intra_vlc[DEFAULT_INTER_INDEX].table, MB_NON_INTRA_VLC_BITS, 3); |
| 0 | 1613 if (code < 0) |
| 1614 return -1; | |
| 246 | 1615 //s->mb_intra = (code & 0x40) ? 0 : 1; |
| 1616 s->mb_intra = (~code & 0x40) >> 6; | |
| 0 | 1617 |
| 1618 cbp = code & 0x3f; | |
| 1619 } else { | |
| 1620 set_stat(ST_INTRA_MB); | |
| 1621 s->mb_intra = 1; | |
| 531 | 1622 code = get_vlc2(&s->gb, mb_intra_vlc.table, MB_INTRA_VLC_BITS, 2); |
| 0 | 1623 if (code < 0) |
| 1624 return -1; | |
| 1625 /* predict coded block pattern */ | |
| 1626 cbp = 0; | |
| 1627 for(i=0;i<6;i++) { | |
| 246 | 1628 int val = ((code >> (5 - i)) & 1); |
| 0 | 1629 if (i < 4) { |
| 246 | 1630 int pred = coded_block_pred(s, i, &coded_val); |
| 0 | 1631 val = val ^ pred; |
| 1632 *coded_val = val; | |
| 1633 } | |
| 1634 cbp |= val << (5 - i); | |
| 1635 } | |
| 1636 } | |
| 1637 | |
| 1638 if (!s->mb_intra) { | |
| 1639 int mx, my; | |
| 499 | 1640 //printf("P at %d %d\n", s->mb_x, s->mb_y); |
| 1641 if(s->per_mb_rl_table && cbp){ | |
| 1642 s->rl_table_index = decode012(&s->gb); | |
| 1643 s->rl_chroma_table_index = s->rl_table_index; | |
| 1644 } | |
| 0 | 1645 set_stat(ST_MV); |
| 1646 h263_pred_motion(s, 0, &mx, &my); | |
| 1647 if (msmpeg4_decode_motion(s, &mx, &my) < 0) | |
| 1648 return -1; | |
| 1649 s->mv_dir = MV_DIR_FORWARD; | |
| 1650 s->mv_type = MV_TYPE_16X16; | |
| 1651 s->mv[0][0][0] = mx; | |
| 1652 s->mv[0][0][1] = my; | |
|
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1164
diff
changeset
|
1653 *mb_type_ptr = MB_TYPE_L0 | MB_TYPE_16x16; |
| 0 | 1654 } else { |
| 499 | 1655 //printf("I at %d %d %d %06X\n", s->mb_x, s->mb_y, ((cbp&3)? 1 : 0) +((cbp&0x3C)? 2 : 0), show_bits(&s->gb, 24)); |
| 0 | 1656 set_stat(ST_INTRA_MB); |
| 21 | 1657 s->ac_pred = get_bits1(&s->gb); |
|
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1164
diff
changeset
|
1658 *mb_type_ptr = MB_TYPE_INTRA; |
| 519 | 1659 if(s->inter_intra_pred){ |
| 531 | 1660 s->h263_aic_dir= get_vlc2(&s->gb, inter_intra_vlc.table, INTER_INTRA_VLC_BITS, 1); |
| 519 | 1661 // printf("%d%d %d %d/", s->ac_pred, s->h263_aic_dir, s->mb_x, s->mb_y); |
| 1662 } | |
| 499 | 1663 if(s->per_mb_rl_table && cbp){ |
| 1664 s->rl_table_index = decode012(&s->gb); | |
| 1665 s->rl_chroma_table_index = s->rl_table_index; | |
| 1666 } | |
| 0 | 1667 } |
| 1668 | |
| 1669 for (i = 0; i < 6; i++) { | |
| 936 | 1670 if (msmpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, NULL) < 0) |
| 246 | 1671 { |
| 457 | 1672 fprintf(stderr,"\nerror while decoding block: %d x %d (%d)\n", s->mb_x, s->mb_y, i); |
| 1673 return -1; | |
| 246 | 1674 } |
| 0 | 1675 } |
|
501
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
1676 |
| 0 | 1677 return 0; |
| 1678 } | |
| 563 | 1679 //#define ERROR_DETAILS |
| 499 | 1680 static inline int msmpeg4_decode_block(MpegEncContext * s, DCTELEM * block, |
| 936 | 1681 int n, int coded, const uint8_t *scan_table) |
| 0 | 1682 { |
| 542 | 1683 int level, i, last, run, run_diff; |
| 0 | 1684 int dc_pred_dir; |
| 1685 RLTable *rl; | |
| 542 | 1686 RL_VLC_ELEM *rl_vlc; |
| 200 | 1687 int qmul, qadd; |
| 0 | 1688 |
| 1689 if (s->mb_intra) { | |
| 200 | 1690 qmul=1; |
| 1691 qadd=0; | |
| 1692 | |
| 0 | 1693 /* DC coef */ |
| 1694 set_stat(ST_DC); | |
| 1695 level = msmpeg4_decode_dc(s, n, &dc_pred_dir); | |
|
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1164
diff
changeset
|
1696 |
| 457 | 1697 if (level < 0){ |
|
501
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
1698 fprintf(stderr, "dc overflow- block: %d qscale: %d//\n", n, s->qscale); |
| 519 | 1699 if(s->inter_intra_pred) level=0; |
| 1700 else return -1; | |
| 457 | 1701 } |
| 0 | 1702 if (n < 4) { |
| 1703 rl = &rl_table[s->rl_table_index]; | |
| 457 | 1704 if(level > 256*s->y_dc_scale){ |
|
501
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
1705 fprintf(stderr, "dc overflow+ L qscale: %d//\n", s->qscale); |
| 519 | 1706 if(!s->inter_intra_pred) return -1; |
| 457 | 1707 } |
| 0 | 1708 } else { |
| 1709 rl = &rl_table[3 + s->rl_chroma_table_index]; | |
| 457 | 1710 if(level > 256*s->c_dc_scale){ |
|
501
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
1711 fprintf(stderr, "dc overflow+ C qscale: %d//\n", s->qscale); |
| 519 | 1712 if(!s->inter_intra_pred) return -1; |
| 457 | 1713 } |
| 0 | 1714 } |
| 457 | 1715 block[0] = level; |
| 200 | 1716 |
| 0 | 1717 run_diff = 0; |
| 542 | 1718 i = 0; |
| 0 | 1719 if (!coded) { |
| 1720 goto not_coded; | |
| 1721 } | |
| 1722 if (s->ac_pred) { | |
| 1723 if (dc_pred_dir == 0) | |
|
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
601
diff
changeset
|
1724 scan_table = s->intra_v_scantable.permutated; /* left */ |
| 0 | 1725 else |
|
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
601
diff
changeset
|
1726 scan_table = s->intra_h_scantable.permutated; /* top */ |
| 0 | 1727 } else { |
|
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
601
diff
changeset
|
1728 scan_table = s->intra_scantable.permutated; |
| 0 | 1729 } |
| 1730 set_stat(ST_INTRA_AC); | |
| 542 | 1731 rl_vlc= rl->rl_vlc[0]; |
| 0 | 1732 } else { |
| 200 | 1733 qmul = s->qscale << 1; |
| 1734 qadd = (s->qscale - 1) | 1; | |
| 542 | 1735 i = -1; |
| 0 | 1736 rl = &rl_table[3 + s->rl_table_index]; |
| 307 | 1737 |
| 1738 if(s->msmpeg4_version==2) | |
| 1739 run_diff = 0; | |
| 1740 else | |
| 1741 run_diff = 1; | |
| 1742 | |
| 0 | 1743 if (!coded) { |
| 542 | 1744 s->block_last_index[n] = i; |
| 0 | 1745 return 0; |
| 1746 } | |
| 936 | 1747 if(!scan_table) |
| 1748 scan_table = s->inter_scantable.permutated; | |
| 0 | 1749 set_stat(ST_INTER_AC); |
| 542 | 1750 rl_vlc= rl->rl_vlc[s->qscale]; |
| 0 | 1751 } |
| 542 | 1752 { |
| 1753 OPEN_READER(re, &s->gb); | |
| 0 | 1754 for(;;) { |
| 542 | 1755 UPDATE_CACHE(re, &s->gb); |
| 1756 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 1757 if (level==0) { | |
| 1758 int cache; | |
| 1759 cache= GET_CACHE(re, &s->gb); | |
| 0 | 1760 /* escape */ |
| 542 | 1761 if (s->msmpeg4_version==1 || (cache&0x80000000)==0) { |
| 1762 if (s->msmpeg4_version==1 || (cache&0x40000000)==0) { | |
| 0 | 1763 /* third escape */ |
| 542 | 1764 if(s->msmpeg4_version!=1) LAST_SKIP_BITS(re, &s->gb, 2); |
| 1765 UPDATE_CACHE(re, &s->gb); | |
| 499 | 1766 if(s->msmpeg4_version<=3){ |
| 542 | 1767 last= SHOW_UBITS(re, &s->gb, 1); SKIP_CACHE(re, &s->gb, 1); |
| 1768 run= SHOW_UBITS(re, &s->gb, 6); SKIP_CACHE(re, &s->gb, 6); | |
| 1769 level= SHOW_SBITS(re, &s->gb, 8); LAST_SKIP_CACHE(re, &s->gb, 8); | |
| 1770 SKIP_COUNTER(re, &s->gb, 1+6+8); | |
| 1771 }else{ | |
| 499 | 1772 int sign; |
| 542 | 1773 last= SHOW_UBITS(re, &s->gb, 1); SKIP_BITS(re, &s->gb, 1); |
| 499 | 1774 if(!s->esc3_level_length){ |
| 1775 int ll; | |
| 1776 //printf("ESC-3 %X at %d %d\n", show_bits(&s->gb, 24), s->mb_x, s->mb_y); | |
| 1777 if(s->qscale<8){ | |
| 542 | 1778 ll= SHOW_UBITS(re, &s->gb, 3); SKIP_BITS(re, &s->gb, 3); |
| 499 | 1779 if(ll==0){ |
| 542 | 1780 if(SHOW_UBITS(re, &s->gb, 1)) printf("cool a new vlc code ,contact the ffmpeg developers and upload the file\n"); |
| 1781 SKIP_BITS(re, &s->gb, 1); | |
| 499 | 1782 ll=8; |
| 1783 } | |
| 1784 }else{ | |
| 1785 ll=2; | |
| 542 | 1786 while(ll<8 && SHOW_UBITS(re, &s->gb, 1)==0){ |
| 1787 ll++; | |
| 1788 SKIP_BITS(re, &s->gb, 1); | |
| 1789 } | |
| 578 | 1790 if(ll<8) SKIP_BITS(re, &s->gb, 1); |
| 499 | 1791 } |
| 1792 | |
| 1793 s->esc3_level_length= ll; | |
| 542 | 1794 s->esc3_run_length= SHOW_UBITS(re, &s->gb, 2) + 3; SKIP_BITS(re, &s->gb, 2); |
| 499 | 1795 //printf("level length:%d, run length: %d\n", ll, s->esc3_run_length); |
| 578 | 1796 UPDATE_CACHE(re, &s->gb); |
| 499 | 1797 } |
| 542 | 1798 run= SHOW_UBITS(re, &s->gb, s->esc3_run_length); |
| 1799 SKIP_BITS(re, &s->gb, s->esc3_run_length); | |
| 1800 | |
| 1801 sign= SHOW_UBITS(re, &s->gb, 1); | |
| 1802 SKIP_BITS(re, &s->gb, 1); | |
| 1803 | |
| 1804 level= SHOW_UBITS(re, &s->gb, s->esc3_level_length); | |
| 1805 SKIP_BITS(re, &s->gb, s->esc3_level_length); | |
| 499 | 1806 if(sign) level= -level; |
| 1807 } | |
| 1808 //printf("level: %d, run: %d at %d %d\n", level, run, s->mb_x, s->mb_y); | |
| 457 | 1809 #if 0 // waste of time / this will detect very few errors |
| 1810 { | |
| 1811 const int abs_level= ABS(level); | |
| 1812 const int run1= run - rl->max_run[last][abs_level] - run_diff; | |
| 1813 if(abs_level<=MAX_LEVEL && run<=MAX_RUN){ | |
| 1814 if(abs_level <= rl->max_level[last][run]){ | |
| 1815 fprintf(stderr, "illegal 3. esc, vlc encoding possible\n"); | |
| 1816 return DECODING_AC_LOST; | |
| 1817 } | |
| 1818 if(abs_level <= rl->max_level[last][run]*2){ | |
| 1819 fprintf(stderr, "illegal 3. esc, esc 1 encoding possible\n"); | |
| 1820 return DECODING_AC_LOST; | |
| 1821 } | |
| 499 | 1822 if(run1>=0 && abs_level <= rl->max_level[last][run1]){ |
| 457 | 1823 fprintf(stderr, "illegal 3. esc, esc 2 encoding possible\n"); |
| 1824 return DECODING_AC_LOST; | |
| 1825 } | |
| 1826 } | |
| 1827 } | |
| 1828 #endif | |
| 246 | 1829 //level = level * qmul + (level>0) * qadd - (level<=0) * qadd ; |
| 1830 if (level>0) level= level * qmul + qadd; | |
| 457 | 1831 else level= level * qmul - qadd; |
| 1832 #if 0 // waste of time too :( | |
| 1833 if(level>2048 || level<-2048){ | |
| 1834 fprintf(stderr, "|level| overflow in 3. esc\n"); | |
| 1835 return DECODING_AC_LOST; | |
| 1836 } | |
| 1837 #endif | |
| 542 | 1838 i+= run + 1; |
| 1839 if(last) i+=192; | |
| 563 | 1840 #ifdef ERROR_DETAILS |
| 1841 if(run==66) | |
| 1842 fprintf(stderr, "illegal vlc code in ESC3 level=%d\n", level); | |
| 1843 else if((i>62 && i<192) || i>192+63) | |
| 1844 fprintf(stderr, "run overflow in ESC3 i=%d run=%d level=%d\n", i, run, level); | |
| 1845 #endif | |
| 0 | 1846 } else { |
| 1847 /* second escape */ | |
| 542 | 1848 #if MIN_CACHE_BITS < 23 |
| 1849 LAST_SKIP_BITS(re, &s->gb, 2); | |
| 1850 UPDATE_CACHE(re, &s->gb); | |
| 1851 #else | |
| 1852 SKIP_BITS(re, &s->gb, 2); | |
| 1853 #endif | |
| 1854 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 1855 i+= run + rl->max_run[run>>7][level/qmul] + run_diff; //FIXME opt indexing | |
| 1856 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 1857 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 563 | 1858 #ifdef ERROR_DETAILS |
| 1859 if(run==66) | |
| 1860 fprintf(stderr, "illegal vlc code in ESC2 level=%d\n", level); | |
| 1861 else if((i>62 && i<192) || i>192+63) | |
| 1862 fprintf(stderr, "run overflow in ESC2 i=%d run=%d level=%d\n", i, run, level); | |
| 1863 #endif | |
| 0 | 1864 } |
| 1865 } else { | |
| 1866 /* first escape */ | |
| 542 | 1867 #if MIN_CACHE_BITS < 22 |
| 1868 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 1869 UPDATE_CACHE(re, &s->gb); | |
| 1870 #else | |
| 1871 SKIP_BITS(re, &s->gb, 1); | |
| 1872 #endif | |
| 1873 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 1874 i+= run; | |
| 1875 level = level + rl->max_level[run>>7][(run-1)&63] * qmul;//FIXME opt indexing | |
| 1876 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 1877 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 563 | 1878 #ifdef ERROR_DETAILS |
| 1879 if(run==66) | |
| 1880 fprintf(stderr, "illegal vlc code in ESC1 level=%d\n", level); | |
| 1881 else if((i>62 && i<192) || i>192+63) | |
| 1882 fprintf(stderr, "run overflow in ESC1 i=%d run=%d level=%d\n", i, run, level); | |
| 1883 #endif | |
| 0 | 1884 } |
| 1885 } else { | |
| 542 | 1886 i+= run; |
| 1887 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 1888 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 563 | 1889 #ifdef ERROR_DETAILS |
| 1890 if(run==66) | |
| 1891 fprintf(stderr, "illegal vlc code level=%d\n", level); | |
| 1892 else if((i>62 && i<192) || i>192+63) | |
| 1893 fprintf(stderr, "run overflow i=%d run=%d level=%d\n", i, run, level); | |
| 1894 #endif | |
| 0 | 1895 } |
| 542 | 1896 if (i > 62){ |
| 1897 i-= 192; | |
| 1898 if(i&(~63)){ | |
|
1025
1f9afd8b9131
GetBitContext.size is allways multiplied by 8 -> use size_in_bits to avoid useless *8 in a few inner loops
michaelni
parents:
983
diff
changeset
|
1899 const int left= s->gb.size_in_bits - get_bits_count(&s->gb); |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
743
diff
changeset
|
1900 if(((i+192 == 64 && level/qmul==-1) || s->error_resilience<=1) && left>=0){ |
| 563 | 1901 fprintf(stderr, "ignoring overflow at %d %d\n", s->mb_x, s->mb_y); |
| 1902 break; | |
| 1903 }else{ | |
| 1904 fprintf(stderr, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y); | |
| 1905 return -1; | |
| 1906 } | |
| 542 | 1907 } |
| 1908 | |
| 1909 block[scan_table[i]] = level; | |
| 1910 break; | |
| 499 | 1911 } |
| 457 | 1912 |
| 542 | 1913 block[scan_table[i]] = level; |
| 0 | 1914 } |
| 542 | 1915 CLOSE_READER(re, &s->gb); |
| 1916 } | |
| 0 | 1917 not_coded: |
| 1918 if (s->mb_intra) { | |
| 1919 mpeg4_pred_ac(s, block, n, dc_pred_dir); | |
| 1920 if (s->ac_pred) { | |
| 542 | 1921 i = 63; /* XXX: not optimal */ |
| 0 | 1922 } |
| 1923 } | |
| 936 | 1924 if(s->msmpeg4_version>=4 && i>0) i=63; //FIXME/XXX optimize |
| 542 | 1925 s->block_last_index[n] = i; |
| 499 | 1926 |
| 0 | 1927 return 0; |
| 1928 } | |
| 1929 | |
| 1930 static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr) | |
| 1931 { | |
| 1932 int level, pred; | |
| 1933 | |
| 457 | 1934 if(s->msmpeg4_version<=2){ |
| 307 | 1935 if (n < 4) { |
| 531 | 1936 level = get_vlc2(&s->gb, v2_dc_lum_vlc.table, DC_VLC_BITS, 3); |
| 307 | 1937 } else { |
| 531 | 1938 level = get_vlc2(&s->gb, v2_dc_chroma_vlc.table, DC_VLC_BITS, 3); |
| 307 | 1939 } |
| 309 | 1940 if (level < 0) |
| 307 | 1941 return -1; |
| 1942 level-=256; | |
| 1943 }else{ //FIXME optimize use unified tables & index | |
| 1944 if (n < 4) { | |
| 531 | 1945 level = get_vlc2(&s->gb, dc_lum_vlc[s->dc_table_index].table, DC_VLC_BITS, 3); |
| 307 | 1946 } else { |
| 531 | 1947 level = get_vlc2(&s->gb, dc_chroma_vlc[s->dc_table_index].table, DC_VLC_BITS, 3); |
| 307 | 1948 } |
| 457 | 1949 if (level < 0){ |
| 1950 fprintf(stderr, "illegal dc vlc\n"); | |
| 307 | 1951 return -1; |
| 457 | 1952 } |
| 307 | 1953 |
| 1954 if (level == DC_MAX) { | |
| 1955 level = get_bits(&s->gb, 8); | |
| 1956 if (get_bits1(&s->gb)) | |
| 1957 level = -level; | |
| 1958 } else if (level != 0) { | |
| 1959 if (get_bits1(&s->gb)) | |
| 1960 level = -level; | |
| 1961 } | |
| 0 | 1962 } |
| 1963 | |
| 457 | 1964 if(s->msmpeg4_version==1){ |
| 1064 | 1965 int32_t *dc_val; |
| 457 | 1966 pred = msmpeg4v1_pred_dc(s, n, &dc_val); |
| 1967 level += pred; | |
| 1968 | |
| 1969 /* update predictor */ | |
| 1970 *dc_val= level; | |
| 1971 }else{ | |
| 1064 | 1972 uint16_t *dc_val; |
|
501
2241bce35bb9
fixing wmv1 bugs, it was foolish to belive that m$ would use the same dc prediction as mpeg4 just cuz they changed it a bit from msmpeg4v3
michaelni
parents:
499
diff
changeset
|
1973 pred = msmpeg4_pred_dc(s, n, &dc_val, dir_ptr); |
| 457 | 1974 level += pred; |
| 0 | 1975 |
| 457 | 1976 /* update predictor */ |
| 1977 if (n < 4) { | |
| 1978 *dc_val = level * s->y_dc_scale; | |
| 1979 } else { | |
| 1980 *dc_val = level * s->c_dc_scale; | |
| 1981 } | |
| 0 | 1982 } |
| 1983 | |
| 1984 return level; | |
| 1985 } | |
| 1986 | |
| 1987 static int msmpeg4_decode_motion(MpegEncContext * s, | |
| 1988 int *mx_ptr, int *my_ptr) | |
| 1989 { | |
| 1990 MVTable *mv; | |
| 1991 int code, mx, my; | |
| 1992 | |
| 1993 mv = &mv_tables[s->mv_table_index]; | |
| 1994 | |
| 531 | 1995 code = get_vlc2(&s->gb, mv->vlc.table, MV_VLC_BITS, 2); |
| 499 | 1996 if (code < 0){ |
| 1997 fprintf(stderr, "illegal MV code at %d %d\n", s->mb_x, s->mb_y); | |
| 0 | 1998 return -1; |
| 499 | 1999 } |
| 0 | 2000 if (code == mv->n) { |
| 499 | 2001 //printf("MV ESC %X at %d %d\n", show_bits(&s->gb, 24), s->mb_x, s->mb_y); |
| 0 | 2002 mx = get_bits(&s->gb, 6); |
| 2003 my = get_bits(&s->gb, 6); | |
| 2004 } else { | |
| 2005 mx = mv->table_mvx[code]; | |
| 2006 my = mv->table_mvy[code]; | |
| 2007 } | |
| 2008 | |
| 2009 mx += *mx_ptr - 32; | |
| 2010 my += *my_ptr - 32; | |
| 2011 /* WARNING : they do not do exactly modulo encoding */ | |
| 2012 if (mx <= -64) | |
| 2013 mx += 64; | |
| 2014 else if (mx >= 64) | |
| 2015 mx -= 64; | |
| 2016 | |
| 2017 if (my <= -64) | |
| 2018 my += 64; | |
| 2019 else if (my >= 64) | |
| 2020 my -= 64; | |
| 2021 *mx_ptr = mx; | |
| 2022 *my_ptr = my; | |
| 2023 return 0; | |
| 2024 } | |
| 936 | 2025 |
| 2026 /* cleanest way to support it | |
| 2027 * there is too much shared between versions so that we cant have 1 file per version & 1 common | |
| 2028 * as allmost everything would be in the common file | |
| 2029 */ | |
| 2030 #include "wmv2.c" |
