Mercurial > libavcodec.hg
annotate h263.c @ 617:df2102629fef libavcodec
fixing some 64bit bugs
| author | michaelni |
|---|---|
| date | Mon, 26 Aug 2002 16:10:41 +0000 |
| parents | b1a191202f96 |
| children | 2be2cc8fd0a1 |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * H263/MPEG4 backend for ffmpeg encoder and decoder | |
| 429 | 3 * Copyright (c) 2000,2001 Fabrice Bellard. |
| 78 | 4 * H263+ support. |
| 0 | 5 * Copyright (c) 2001 Juan J. Sierralta P. |
| 6 * | |
| 429 | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Lesser General Public | |
| 9 * License as published by the Free Software Foundation; either | |
| 10 * version 2 of the License, or (at your option) any later version. | |
| 0 | 11 * |
| 429 | 12 * This library is distributed in the hope that it will be useful, |
| 0 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 429 | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 * Lesser General Public License for more details. | |
| 0 | 16 * |
| 429 | 17 * You should have received a copy of the GNU Lesser General Public |
| 18 * License along with this library; if not, write to the Free Software | |
| 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
20 * |
| 327 | 21 * ac prediction encoding & b-frame support by Michael Niedermayer <michaelni@gmx.at> |
| 0 | 22 */ |
| 355 | 23 |
| 24 //#define DEBUG | |
| 0 | 25 #include "common.h" |
| 26 #include "dsputil.h" | |
| 27 #include "avcodec.h" | |
| 28 #include "mpegvideo.h" | |
| 29 #include "h263data.h" | |
| 30 #include "mpeg4data.h" | |
| 31 | |
| 255 | 32 //rounded divison & shift |
| 33 #define RSHIFT(a,b) ((a) > 0 ? ((a) + (1<<((b)-1)))>>(b) : ((a) + (1<<((b)-1))-1)>>(b)) | |
| 34 | |
| 523 | 35 #define PRINT_MB_TYPE(a) {} |
| 36 //#define PRINT_MB_TYPE(a) printf(a) | |
| 359 | 37 |
| 544 | 38 #define INTRA_MCBPC_VLC_BITS 6 |
| 39 #define INTER_MCBPC_VLC_BITS 6 | |
| 40 #define CBPY_VLC_BITS 6 | |
| 41 #define MV_VLC_BITS 9 | |
| 42 #define DC_VLC_BITS 9 | |
| 43 #define SPRITE_TRAJ_VLC_BITS 6 | |
| 44 #define MB_TYPE_B_VLC_BITS 4 | |
| 45 #define TEX_VLC_BITS 9 | |
| 46 | |
| 0 | 47 static void h263_encode_block(MpegEncContext * s, DCTELEM * block, |
| 48 int n); | |
| 324 | 49 static void h263_encode_motion(MpegEncContext * s, int val, int fcode); |
| 78 | 50 static void h263p_encode_umotion(MpegEncContext * s, int val); |
| 0 | 51 static void mpeg4_encode_block(MpegEncContext * s, DCTELEM * block, |
| 453 | 52 int n, int dc, UINT8 *scan_table, |
| 53 PutBitContext *dc_pb, PutBitContext *ac_pb); | |
| 262 | 54 static int h263_decode_motion(MpegEncContext * s, int pred, int fcode); |
| 78 | 55 static int h263p_decode_umotion(MpegEncContext * s, int pred); |
| 0 | 56 static int h263_decode_block(MpegEncContext * s, DCTELEM * block, |
| 57 int n, int coded); | |
| 453 | 58 static inline int mpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr); |
| 59 static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block, | |
| 575 | 60 int n, int coded, int intra); |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
61 static int h263_pred_dc(MpegEncContext * s, int n, UINT16 **dc_val_ptr); |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
62 static void mpeg4_inv_pred_ac(MpegEncContext * s, INT16 *block, int n, |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
63 int dir); |
| 290 | 64 static void mpeg4_decode_sprite_trajectory(MpegEncContext * s); |
| 65 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
66 extern UINT32 inverse[256]; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
67 |
|
292
73a9ce3d9715
fcode_tables where too small, found by Klaas-Pieter Vlieg <vlieg@eurescom.de>
michaelni
parents:
291
diff
changeset
|
68 static UINT16 mv_penalty[MAX_FCODE+1][MAX_MV*2+1]; |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
69 static UINT8 fcode_tab[MAX_MV*2+1]; |
| 287 | 70 static UINT8 umv_fcode_tab[MAX_MV*2+1]; |
| 0 | 71 |
| 293 | 72 static UINT16 uni_DCtab_lum [512][2]; |
| 73 static UINT16 uni_DCtab_chrom[512][2]; | |
| 74 | |
| 0 | 75 int h263_get_picture_format(int width, int height) |
| 76 { | |
| 77 int format; | |
| 78 | |
| 79 if (width == 128 && height == 96) | |
| 355 | 80 format = 1; |
| 0 | 81 else if (width == 176 && height == 144) |
| 355 | 82 format = 2; |
| 0 | 83 else if (width == 352 && height == 288) |
| 355 | 84 format = 3; |
| 0 | 85 else if (width == 704 && height == 576) |
| 355 | 86 format = 4; |
| 0 | 87 else if (width == 1408 && height == 1152) |
| 355 | 88 format = 5; |
| 0 | 89 else |
| 90 format = 7; | |
| 91 return format; | |
| 92 } | |
| 93 | |
| 94 void h263_encode_picture_header(MpegEncContext * s, int picture_number) | |
| 95 { | |
| 78 | 96 int format; |
| 0 | 97 |
| 98 align_put_bits(&s->pb); | |
| 231 | 99 |
| 100 /* Update the pointer to last GOB */ | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
101 s->ptr_lastgob = pbBufPtr(&s->pb); |
| 231 | 102 s->gob_number = 0; |
| 103 | |
| 104 put_bits(&s->pb, 22, 0x20); /* PSC */ | |
| 241 | 105 put_bits(&s->pb, 8, (((INT64)s->picture_number * 30 * FRAME_RATE_BASE) / |
| 0 | 106 s->frame_rate) & 0xff); |
| 107 | |
| 108 put_bits(&s->pb, 1, 1); /* marker */ | |
| 109 put_bits(&s->pb, 1, 0); /* h263 id */ | |
| 110 put_bits(&s->pb, 1, 0); /* split screen off */ | |
| 111 put_bits(&s->pb, 1, 0); /* camera off */ | |
| 112 put_bits(&s->pb, 1, 0); /* freeze picture release off */ | |
| 78 | 113 |
| 114 format = h263_get_picture_format(s->width, s->height); | |
| 0 | 115 if (!s->h263_plus) { |
| 116 /* H.263v1 */ | |
| 117 put_bits(&s->pb, 3, format); | |
| 118 put_bits(&s->pb, 1, (s->pict_type == P_TYPE)); | |
| 119 /* By now UMV IS DISABLED ON H.263v1, since the restrictions | |
| 120 of H.263v1 UMV implies to check the predicted MV after | |
| 121 calculation of the current MB to see if we're on the limits */ | |
| 122 put_bits(&s->pb, 1, 0); /* unrestricted motion vector: off */ | |
| 123 put_bits(&s->pb, 1, 0); /* SAC: off */ | |
| 124 put_bits(&s->pb, 1, 0); /* advanced prediction mode: off */ | |
| 125 put_bits(&s->pb, 1, 0); /* not PB frame */ | |
| 126 put_bits(&s->pb, 5, s->qscale); | |
| 127 put_bits(&s->pb, 1, 0); /* Continuous Presence Multipoint mode: off */ | |
| 128 } else { | |
| 129 /* H.263v2 */ | |
| 130 /* H.263 Plus PTYPE */ | |
| 131 put_bits(&s->pb, 3, 7); | |
| 132 put_bits(&s->pb,3,1); /* Update Full Extended PTYPE */ | |
| 78 | 133 if (format == 7) |
| 134 put_bits(&s->pb,3,6); /* Custom Source Format */ | |
| 135 else | |
| 136 put_bits(&s->pb, 3, format); | |
| 137 | |
| 0 | 138 put_bits(&s->pb,1,0); /* Custom PCF: off */ |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
139 s->umvplus = (s->pict_type == P_TYPE) && s->unrestricted_mv; |
|
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
140 put_bits(&s->pb, 1, s->umvplus); /* Unrestricted Motion Vector */ |
| 0 | 141 put_bits(&s->pb,1,0); /* SAC: off */ |
| 142 put_bits(&s->pb,1,0); /* Advanced Prediction Mode: off */ | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
143 put_bits(&s->pb,1,s->h263_aic); /* Advanced Intra Coding */ |
| 0 | 144 put_bits(&s->pb,1,0); /* Deblocking Filter: off */ |
| 145 put_bits(&s->pb,1,0); /* Slice Structured: off */ | |
| 146 put_bits(&s->pb,1,0); /* Reference Picture Selection: off */ | |
| 147 put_bits(&s->pb,1,0); /* Independent Segment Decoding: off */ | |
| 148 put_bits(&s->pb,1,0); /* Alternative Inter VLC: off */ | |
| 149 put_bits(&s->pb,1,0); /* Modified Quantization: off */ | |
| 150 put_bits(&s->pb,1,1); /* "1" to prevent start code emulation */ | |
| 151 put_bits(&s->pb,3,0); /* Reserved */ | |
| 152 | |
| 153 put_bits(&s->pb, 3, s->pict_type == P_TYPE); | |
| 154 | |
| 155 put_bits(&s->pb,1,0); /* Reference Picture Resampling: off */ | |
| 156 put_bits(&s->pb,1,0); /* Reduced-Resolution Update: off */ | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
157 if (s->pict_type == I_TYPE) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
158 s->no_rounding = 0; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
159 else |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
160 s->no_rounding ^= 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
161 put_bits(&s->pb,1,s->no_rounding); /* Rounding Type */ |
| 0 | 162 put_bits(&s->pb,2,0); /* Reserved */ |
| 163 put_bits(&s->pb,1,1); /* "1" to prevent start code emulation */ | |
| 164 | |
| 165 /* This should be here if PLUSPTYPE */ | |
| 166 put_bits(&s->pb, 1, 0); /* Continuous Presence Multipoint mode: off */ | |
| 167 | |
| 78 | 168 if (format == 7) { |
| 169 /* Custom Picture Format (CPFMT) */ | |
| 0 | 170 |
| 355 | 171 if (s->aspect_ratio_info) |
| 172 put_bits(&s->pb,4,s->aspect_ratio_info); | |
| 173 else | |
| 78 | 174 put_bits(&s->pb,4,2); /* Aspect ratio: CIF 12:11 (4:3) picture */ |
| 175 put_bits(&s->pb,9,(s->width >> 2) - 1); | |
| 176 put_bits(&s->pb,1,1); /* "1" to prevent start code emulation */ | |
| 177 put_bits(&s->pb,9,(s->height >> 2)); | |
| 178 } | |
| 179 | |
| 0 | 180 /* Unlimited Unrestricted Motion Vectors Indicator (UUI) */ |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
181 if (s->umvplus) |
| 0 | 182 put_bits(&s->pb,1,1); /* Limited according tables of Annex D */ |
| 183 put_bits(&s->pb, 5, s->qscale); | |
| 184 } | |
| 185 | |
| 186 put_bits(&s->pb, 1, 0); /* no PEI */ | |
| 498 | 187 |
| 188 if(s->h263_aic){ | |
| 189 s->y_dc_scale_table= | |
| 190 s->c_dc_scale_table= h263_aic_dc_scale_table; | |
| 191 }else{ | |
| 192 s->y_dc_scale_table= | |
| 193 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; | |
| 194 } | |
| 0 | 195 } |
| 196 | |
| 162 | 197 int h263_encode_gob_header(MpegEncContext * s, int mb_line) |
| 198 { | |
| 199 int pdif=0; | |
| 200 | |
| 201 /* Check to see if we need to put a new GBSC */ | |
| 202 /* for RTP packetization */ | |
| 203 if (s->rtp_mode) { | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
204 pdif = pbBufPtr(&s->pb) - s->ptr_lastgob; |
| 162 | 205 if (pdif >= s->rtp_payload_size) { |
| 206 /* Bad luck, packet must be cut before */ | |
| 207 align_put_bits(&s->pb); | |
| 231 | 208 flush_put_bits(&s->pb); |
| 209 /* Call the RTP callback to send the last GOB */ | |
| 210 if (s->rtp_callback) { | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
211 pdif = pbBufPtr(&s->pb) - s->ptr_lastgob; |
| 231 | 212 s->rtp_callback(s->ptr_lastgob, pdif, s->gob_number); |
| 213 } | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
214 s->ptr_lastgob = pbBufPtr(&s->pb); |
| 162 | 215 put_bits(&s->pb, 17, 1); /* GBSC */ |
| 231 | 216 s->gob_number = mb_line / s->gob_index; |
| 162 | 217 put_bits(&s->pb, 5, s->gob_number); /* GN */ |
| 231 | 218 put_bits(&s->pb, 2, s->pict_type == I_TYPE); /* GFID */ |
| 162 | 219 put_bits(&s->pb, 5, s->qscale); /* GQUANT */ |
| 231 | 220 //fprintf(stderr,"\nGOB: %2d size: %d", s->gob_number - 1, pdif); |
| 162 | 221 return pdif; |
| 222 } else if (pdif + s->mb_line_avgsize >= s->rtp_payload_size) { | |
| 223 /* Cut the packet before we can't */ | |
| 224 align_put_bits(&s->pb); | |
| 231 | 225 flush_put_bits(&s->pb); |
| 226 /* Call the RTP callback to send the last GOB */ | |
| 227 if (s->rtp_callback) { | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
228 pdif = pbBufPtr(&s->pb) - s->ptr_lastgob; |
| 231 | 229 s->rtp_callback(s->ptr_lastgob, pdif, s->gob_number); |
| 230 } | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
231 s->ptr_lastgob = pbBufPtr(&s->pb); |
| 162 | 232 put_bits(&s->pb, 17, 1); /* GBSC */ |
| 231 | 233 s->gob_number = mb_line / s->gob_index; |
| 162 | 234 put_bits(&s->pb, 5, s->gob_number); /* GN */ |
| 231 | 235 put_bits(&s->pb, 2, s->pict_type == I_TYPE); /* GFID */ |
| 162 | 236 put_bits(&s->pb, 5, s->qscale); /* GQUANT */ |
| 231 | 237 //fprintf(stderr,"\nGOB: %2d size: %d", s->gob_number - 1, pdif); |
| 162 | 238 return pdif; |
| 239 } | |
| 240 } | |
| 241 return 0; | |
| 242 } | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
243 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
244 static inline int decide_ac_pred(MpegEncContext * s, DCTELEM block[6][64], int dir[6]) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
245 { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
246 int score0=0, score1=0; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
247 int i, n; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
248 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
249 for(n=0; n<6; n++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
250 INT16 *ac_val, *ac_val1; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
251 |
| 266 | 252 ac_val = s->ac_val[0][0] + s->block_index[n] * 16; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
253 ac_val1= ac_val; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
254 if(dir[n]){ |
| 266 | 255 ac_val-= s->block_wrap[n]*16; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
256 for(i=1; i<8; i++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
257 const int level= block[n][block_permute_op(i )]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
258 score0+= ABS(level); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
259 score1+= ABS(level - ac_val[i+8]); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
260 ac_val1[i ]= block[n][block_permute_op(i<<3)]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
261 ac_val1[i+8]= level; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
262 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
263 }else{ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
264 ac_val-= 16; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
265 for(i=1; i<8; i++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
266 const int level= block[n][block_permute_op(i<<3)]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
267 score0+= ABS(level); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
268 score1+= ABS(level - ac_val[i]); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
269 ac_val1[i ]= level; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
270 ac_val1[i+8]= block[n][block_permute_op(i )]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
271 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
272 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
273 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
274 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
275 return score0 > score1 ? 1 : 0; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
276 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
277 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
278 void mpeg4_encode_mb(MpegEncContext * s, |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
279 DCTELEM block[6][64], |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
280 int motion_x, int motion_y) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
281 { |
| 324 | 282 int cbpc, cbpy, i, pred_x, pred_y; |
| 286 | 283 int bits; |
| 453 | 284 PutBitContext * const pb2 = s->data_partitioning ? &s->pb2 : &s->pb; |
| 285 PutBitContext * const tex_pb = s->data_partitioning && s->pict_type!=B_TYPE ? &s->tex_pb : &s->pb; | |
| 286 PutBitContext * const dc_pb = s->data_partitioning && s->pict_type!=I_TYPE ? &s->pb2 : &s->pb; | |
| 287 const int interleaved_stats= (s->flags&CODEC_FLAG_PASS1) && !s->data_partitioning ? 1 : 0; | |
| 162 | 288 |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
289 // printf("**mb x=%d y=%d\n", s->mb_x, s->mb_y); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
290 if (!s->mb_intra) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
291 /* compute cbp */ |
| 324 | 292 int cbp = 0; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
293 for (i = 0; i < 6; i++) { |
| 324 | 294 if (s->block_last_index[i] >= 0) |
| 295 cbp |= 1 << (5 - i); | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
296 } |
| 324 | 297 |
| 298 if(s->pict_type==B_TYPE){ | |
| 299 static const int mb_type_table[8]= {-1, 2, 3, 1,-1,-1,-1, 0}; /* convert from mv_dir to type */ | |
| 300 int mb_type= mb_type_table[s->mv_dir]; | |
| 301 | |
| 302 if(s->mb_x==0){ | |
| 303 s->last_mv[0][0][0]= | |
| 304 s->last_mv[0][0][1]= | |
| 305 s->last_mv[1][0][0]= | |
| 306 s->last_mv[1][0][1]= 0; | |
| 307 } | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
308 |
| 324 | 309 /* nothing to do if this MB was skiped in the next P Frame */ |
| 310 if(s->mbskip_table[s->mb_y * s->mb_width + s->mb_x]){ | |
| 311 s->skip_count++; | |
| 312 s->mv[0][0][0]= | |
| 313 s->mv[0][0][1]= | |
| 314 s->mv[1][0][0]= | |
| 315 s->mv[1][0][1]= 0; | |
| 327 | 316 s->mv_dir= MV_DIR_FORWARD; //doesnt matter |
| 324 | 317 return; |
| 318 } | |
| 319 | |
| 320 if ((cbp | motion_x | motion_y | mb_type) ==0) { | |
| 321 /* direct MB with MV={0,0} */ | |
| 322 put_bits(&s->pb, 1, 1); /* mb not coded modb1=1 */ | |
| 453 | 323 |
| 324 if(interleaved_stats){ | |
| 325 s->misc_bits++; | |
| 326 s->last_bits++; | |
| 327 } | |
| 324 | 328 s->skip_count++; |
| 329 return; | |
| 330 } | |
| 331 put_bits(&s->pb, 1, 0); /* mb coded modb1=0 */ | |
| 332 put_bits(&s->pb, 1, cbp ? 0 : 1); /* modb2 */ //FIXME merge | |
| 333 put_bits(&s->pb, mb_type+1, 1); // this table is so simple that we dont need it :) | |
| 334 if(cbp) put_bits(&s->pb, 6, cbp); | |
| 335 | |
| 336 if(cbp && mb_type) | |
| 337 put_bits(&s->pb, 1, 0); /* no q-scale change */ | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
338 |
| 453 | 339 if(interleaved_stats){ |
| 340 bits= get_bit_count(&s->pb); | |
| 341 s->misc_bits+= bits - s->last_bits; | |
| 342 s->last_bits=bits; | |
| 343 } | |
| 295 | 344 |
| 324 | 345 switch(mb_type) |
| 346 { | |
| 347 case 0: /* direct */ | |
| 348 h263_encode_motion(s, motion_x, 1); | |
| 349 h263_encode_motion(s, motion_y, 1); | |
| 350 break; | |
| 351 case 1: /* bidir */ | |
| 352 h263_encode_motion(s, s->mv[0][0][0] - s->last_mv[0][0][0], s->f_code); | |
| 353 h263_encode_motion(s, s->mv[0][0][1] - s->last_mv[0][0][1], s->f_code); | |
| 354 h263_encode_motion(s, s->mv[1][0][0] - s->last_mv[1][0][0], s->b_code); | |
| 355 h263_encode_motion(s, s->mv[1][0][1] - s->last_mv[1][0][1], s->b_code); | |
| 356 s->last_mv[0][0][0]= s->mv[0][0][0]; | |
| 357 s->last_mv[0][0][1]= s->mv[0][0][1]; | |
| 358 s->last_mv[1][0][0]= s->mv[1][0][0]; | |
| 359 s->last_mv[1][0][1]= s->mv[1][0][1]; | |
| 360 break; | |
| 361 case 2: /* backward */ | |
| 362 h263_encode_motion(s, motion_x - s->last_mv[1][0][0], s->b_code); | |
| 363 h263_encode_motion(s, motion_y - s->last_mv[1][0][1], s->b_code); | |
| 364 s->last_mv[1][0][0]= motion_x; | |
| 365 s->last_mv[1][0][1]= motion_y; | |
| 366 break; | |
| 367 case 3: /* forward */ | |
| 368 h263_encode_motion(s, motion_x - s->last_mv[0][0][0], s->f_code); | |
| 369 h263_encode_motion(s, motion_y - s->last_mv[0][0][1], s->f_code); | |
| 370 s->last_mv[0][0][0]= motion_x; | |
| 371 s->last_mv[0][0][1]= motion_y; | |
| 372 break; | |
| 327 | 373 default: |
| 374 printf("unknown mb type\n"); | |
| 324 | 375 return; |
| 376 } | |
| 453 | 377 |
| 378 if(interleaved_stats){ | |
| 379 bits= get_bit_count(&s->pb); | |
| 380 s->mv_bits+= bits - s->last_bits; | |
| 381 s->last_bits=bits; | |
| 382 } | |
| 295 | 383 |
| 324 | 384 /* encode each block */ |
| 385 for (i = 0; i < 6; i++) { | |
| 453 | 386 mpeg4_encode_block(s, block[i], i, 0, zigzag_direct, NULL, &s->pb); |
| 324 | 387 } |
| 453 | 388 |
| 389 if(interleaved_stats){ | |
| 390 bits= get_bit_count(&s->pb); | |
| 391 s->p_tex_bits+= bits - s->last_bits; | |
| 392 s->last_bits=bits; | |
| 393 } | |
| 324 | 394 }else{ /* s->pict_type==B_TYPE */ |
| 395 if ((cbp | motion_x | motion_y) == 0 && s->mv_type==MV_TYPE_16X16) { | |
| 331 | 396 /* check if the B frames can skip it too, as we must skip it if we skip here |
| 397 why didnt they just compress the skip-mb bits instead of reusing them ?! */ | |
| 398 if(s->max_b_frames>0){ | |
| 399 int i; | |
|
364
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
400 int x,y, offset; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
401 uint8_t *p_pic; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
402 |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
403 x= s->mb_x*16; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
404 y= s->mb_y*16; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
405 if(x+16 > s->width) x= s->width-16; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
406 if(y+16 > s->height) y= s->height-16; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
407 |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
408 offset= x + y*s->linesize; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
409 p_pic= s->new_picture[0] + offset; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
410 |
| 331 | 411 s->mb_skiped=1; |
| 412 for(i=0; i<s->max_b_frames; i++){ | |
| 339 | 413 uint8_t *b_pic; |
| 414 int diff; | |
| 415 | |
| 416 if(s->coded_order[i+1].pict_type!=B_TYPE) break; | |
| 417 | |
| 418 b_pic= s->coded_order[i+1].picture[0] + offset; | |
| 419 diff= pix_abs16x16(p_pic, b_pic, s->linesize); | |
|
364
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
420 if(diff>s->qscale*70){ //FIXME check that 70 is optimal |
| 331 | 421 s->mb_skiped=0; |
| 422 break; | |
| 423 } | |
| 424 } | |
| 425 }else | |
| 426 s->mb_skiped=1; | |
| 427 | |
| 428 if(s->mb_skiped==1){ | |
| 429 /* skip macroblock */ | |
| 430 put_bits(&s->pb, 1, 1); | |
| 453 | 431 |
| 432 if(interleaved_stats){ | |
| 433 s->misc_bits++; | |
| 434 s->last_bits++; | |
| 435 } | |
| 331 | 436 s->skip_count++; |
| 437 return; | |
| 438 } | |
| 295 | 439 } |
|
364
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
440 |
| 324 | 441 put_bits(&s->pb, 1, 0); /* mb coded */ |
| 442 if(s->mv_type==MV_TYPE_16X16){ | |
| 443 cbpc = cbp & 3; | |
| 444 put_bits(&s->pb, | |
| 445 inter_MCBPC_bits[cbpc], | |
| 446 inter_MCBPC_code[cbpc]); | |
| 447 cbpy = cbp >> 2; | |
| 448 cbpy ^= 0xf; | |
| 453 | 449 put_bits(pb2, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); |
| 324 | 450 |
| 453 | 451 if(interleaved_stats){ |
| 452 bits= get_bit_count(&s->pb); | |
| 453 s->misc_bits+= bits - s->last_bits; | |
| 454 s->last_bits=bits; | |
| 455 } | |
| 324 | 456 |
| 457 /* motion vectors: 16x16 mode */ | |
| 458 h263_pred_motion(s, 0, &pred_x, &pred_y); | |
| 459 | |
| 460 h263_encode_motion(s, motion_x - pred_x, s->f_code); | |
| 461 h263_encode_motion(s, motion_y - pred_y, s->f_code); | |
| 462 }else{ | |
| 463 cbpc = (cbp & 3)+16; | |
| 464 put_bits(&s->pb, | |
| 465 inter_MCBPC_bits[cbpc], | |
| 466 inter_MCBPC_code[cbpc]); | |
| 467 cbpy = cbp >> 2; | |
| 468 cbpy ^= 0xf; | |
| 453 | 469 put_bits(pb2, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); |
| 470 | |
| 471 if(interleaved_stats){ | |
| 472 bits= get_bit_count(&s->pb); | |
| 473 s->misc_bits+= bits - s->last_bits; | |
| 474 s->last_bits=bits; | |
| 475 } | |
| 324 | 476 |
| 477 for(i=0; i<4; i++){ | |
| 478 /* motion vectors: 8x8 mode*/ | |
| 479 h263_pred_motion(s, i, &pred_x, &pred_y); | |
| 480 | |
| 481 h263_encode_motion(s, s->motion_val[ s->block_index[i] ][0] - pred_x, s->f_code); | |
| 482 h263_encode_motion(s, s->motion_val[ s->block_index[i] ][1] - pred_y, s->f_code); | |
| 483 } | |
| 484 } | |
| 453 | 485 |
| 486 if(interleaved_stats){ | |
| 487 bits= get_bit_count(&s->pb); | |
| 488 s->mv_bits+= bits - s->last_bits; | |
| 489 s->last_bits=bits; | |
| 490 } | |
| 324 | 491 |
| 492 /* encode each block */ | |
| 493 for (i = 0; i < 6; i++) { | |
| 453 | 494 mpeg4_encode_block(s, block[i], i, 0, zigzag_direct, NULL, tex_pb); |
| 324 | 495 } |
| 453 | 496 |
| 497 if(interleaved_stats){ | |
| 498 bits= get_bit_count(&s->pb); | |
| 499 s->p_tex_bits+= bits - s->last_bits; | |
| 500 s->last_bits=bits; | |
| 501 } | |
| 324 | 502 s->p_count++; |
| 295 | 503 } |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
504 } else { |
| 324 | 505 int cbp; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
506 int dc_diff[6]; //dc values with the dc prediction subtracted |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
507 int dir[6]; //prediction direction |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
508 int zigzag_last_index[6]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
509 UINT8 *scan_table[6]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
510 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
511 for(i=0; i<6; i++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
512 const int level= block[i][0]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
513 UINT16 *dc_ptr; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
514 |
| 498 | 515 dc_diff[i]= level - ff_mpeg4_pred_dc(s, i, &dc_ptr, &dir[i]); |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
516 if (i < 4) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
517 *dc_ptr = level * s->y_dc_scale; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
518 } else { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
519 *dc_ptr = level * s->c_dc_scale; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
520 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
521 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
522 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
523 s->ac_pred= decide_ac_pred(s, block, dir); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
524 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
525 if(s->ac_pred){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
526 for(i=0; i<6; i++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
527 UINT8 *st; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
528 int last_index; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
529 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
530 mpeg4_inv_pred_ac(s, block[i], i, dir[i]); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
531 if (dir[i]==0) st = ff_alternate_vertical_scan; /* left */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
532 else st = ff_alternate_horizontal_scan; /* top */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
533 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
534 for(last_index=63; last_index>=0; last_index--) //FIXME optimize |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
535 if(block[i][st[last_index]]) break; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
536 zigzag_last_index[i]= s->block_last_index[i]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
537 s->block_last_index[i]= last_index; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
538 scan_table[i]= st; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
539 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
540 }else{ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
541 for(i=0; i<6; i++) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
542 scan_table[i]= zigzag_direct; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
543 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
544 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
545 /* compute cbp */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
546 cbp = 0; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
547 for (i = 0; i < 6; i++) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
548 if (s->block_last_index[i] >= 1) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
549 cbp |= 1 << (5 - i); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
550 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
551 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
552 cbpc = cbp & 3; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
553 if (s->pict_type == I_TYPE) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
554 put_bits(&s->pb, |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
555 intra_MCBPC_bits[cbpc], |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
556 intra_MCBPC_code[cbpc]); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
557 } else { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
558 put_bits(&s->pb, 1, 0); /* mb coded */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
559 put_bits(&s->pb, |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
560 inter_MCBPC_bits[cbpc + 4], |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
561 inter_MCBPC_code[cbpc + 4]); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
562 } |
| 453 | 563 put_bits(pb2, 1, s->ac_pred); |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
564 cbpy = cbp >> 2; |
| 453 | 565 put_bits(pb2, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); |
| 566 | |
| 567 if(interleaved_stats){ | |
| 568 bits= get_bit_count(&s->pb); | |
| 569 s->misc_bits+= bits - s->last_bits; | |
| 570 s->last_bits=bits; | |
| 571 } | |
| 286 | 572 |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
573 /* encode each block */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
574 for (i = 0; i < 6; i++) { |
| 453 | 575 mpeg4_encode_block(s, block[i], i, dc_diff[i], scan_table[i], dc_pb, tex_pb); |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
576 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
577 |
| 453 | 578 if(interleaved_stats){ |
| 579 bits= get_bit_count(&s->pb); | |
| 580 s->i_tex_bits+= bits - s->last_bits; | |
| 581 s->last_bits=bits; | |
| 582 } | |
| 286 | 583 s->i_count++; |
| 584 | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
585 /* restore ac coeffs & last_index stuff if we messed them up with the prediction */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
586 if(s->ac_pred){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
587 for(i=0; i<6; i++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
588 int j; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
589 INT16 *ac_val; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
590 |
| 266 | 591 ac_val = s->ac_val[0][0] + s->block_index[i] * 16; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
592 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
593 if(dir[i]){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
594 for(j=1; j<8; j++) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
595 block[i][block_permute_op(j )]= ac_val[j+8]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
596 }else{ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
597 for(j=1; j<8; j++) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
598 block[i][block_permute_op(j<<3)]= ac_val[j ]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
599 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
600 s->block_last_index[i]= zigzag_last_index[i]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
601 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
602 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
603 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
604 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
605 |
| 0 | 606 void h263_encode_mb(MpegEncContext * s, |
| 607 DCTELEM block[6][64], | |
| 608 int motion_x, int motion_y) | |
| 609 { | |
| 610 int cbpc, cbpy, i, cbp, pred_x, pred_y; | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
611 INT16 pred_dc; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
612 INT16 rec_intradc[6]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
613 UINT16 *dc_ptr[6]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
614 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
615 //printf("**mb x=%d y=%d\n", s->mb_x, s->mb_y); |
| 324 | 616 if (!s->mb_intra) { |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
617 /* compute cbp */ |
| 324 | 618 cbp = 0; |
| 619 for (i = 0; i < 6; i++) { | |
| 620 if (s->block_last_index[i] >= 0) | |
| 621 cbp |= 1 << (5 - i); | |
| 622 } | |
| 623 if ((cbp | motion_x | motion_y) == 0) { | |
| 624 /* skip macroblock */ | |
| 625 put_bits(&s->pb, 1, 1); | |
| 626 return; | |
| 627 } | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
628 put_bits(&s->pb, 1, 0); /* mb coded */ |
| 324 | 629 cbpc = cbp & 3; |
| 630 put_bits(&s->pb, | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
631 inter_MCBPC_bits[cbpc], |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
632 inter_MCBPC_code[cbpc]); |
| 324 | 633 cbpy = cbp >> 2; |
| 634 cbpy ^= 0xf; | |
| 635 put_bits(&s->pb, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); | |
| 0 | 636 |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
637 /* motion vectors: 16x16 mode only now */ |
| 324 | 638 h263_pred_motion(s, 0, &pred_x, &pred_y); |
| 78 | 639 |
| 324 | 640 if (!s->umvplus) { |
| 641 h263_encode_motion(s, motion_x - pred_x, s->f_code); | |
| 642 h263_encode_motion(s, motion_y - pred_y, s->f_code); | |
| 643 } | |
| 644 else { | |
| 645 h263p_encode_umotion(s, motion_x - pred_x); | |
| 646 h263p_encode_umotion(s, motion_y - pred_y); | |
| 647 if (((motion_x - pred_x) == 1) && ((motion_y - pred_y) == 1)) | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
648 /* To prevent Start Code emulation */ |
| 324 | 649 put_bits(&s->pb,1,1); |
| 650 } | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
651 } else { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
652 int li = s->h263_aic ? 0 : 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
653 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
654 cbp = 0; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
655 for(i=0; i<6; i++) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
656 /* Predict DC */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
657 if (s->h263_aic && s->mb_intra) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
658 INT16 level = block[i][0]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
659 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
660 pred_dc = h263_pred_dc(s, i, &dc_ptr[i]); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
661 level -= pred_dc; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
662 /* Quant */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
663 if (level < 0) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
664 level = (level + (s->qscale >> 1))/(s->y_dc_scale); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
665 else |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
666 level = (level - (s->qscale >> 1))/(s->y_dc_scale); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
667 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
668 /* AIC can change CBP */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
669 if (level == 0 && s->block_last_index[i] == 0) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
670 s->block_last_index[i] = -1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
671 else if (level < -127) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
672 level = -127; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
673 else if (level > 127) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
674 level = 127; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
675 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
676 block[i][0] = level; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
677 /* Reconstruction */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
678 rec_intradc[i] = (s->y_dc_scale*level) + pred_dc; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
679 /* Oddify */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
680 rec_intradc[i] |= 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
681 //if ((rec_intradc[i] % 2) == 0) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
682 // rec_intradc[i]++; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
683 /* Clipping */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
684 if (rec_intradc[i] < 0) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
685 rec_intradc[i] = 0; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
686 else if (rec_intradc[i] > 2047) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
687 rec_intradc[i] = 2047; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
688 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
689 /* Update AC/DC tables */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
690 *dc_ptr[i] = rec_intradc[i]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
691 } |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
692 /* compute cbp */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
693 if (s->block_last_index[i] >= li) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
694 cbp |= 1 << (5 - i); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
695 } |
| 0 | 696 |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
697 cbpc = cbp & 3; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
698 if (s->pict_type == I_TYPE) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
699 put_bits(&s->pb, |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
700 intra_MCBPC_bits[cbpc], |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
701 intra_MCBPC_code[cbpc]); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
702 } else { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
703 put_bits(&s->pb, 1, 0); /* mb coded */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
704 put_bits(&s->pb, |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
705 inter_MCBPC_bits[cbpc + 4], |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
706 inter_MCBPC_code[cbpc + 4]); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
707 } |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
708 if (s->h263_aic) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
709 /* XXX: currently, we do not try to use ac prediction */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
710 put_bits(&s->pb, 1, 0); /* no AC prediction */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
711 } |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
712 cbpy = cbp >> 2; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
713 put_bits(&s->pb, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); |
| 0 | 714 } |
| 715 | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
716 for(i=0; i<6; i++) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
717 /* encode each block */ |
| 294 | 718 h263_encode_block(s, block[i], i); |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
719 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
720 /* Update INTRADC for decoding */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
721 if (s->h263_aic && s->mb_intra) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
722 block[i][0] = rec_intradc[i]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
723 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
724 } |
| 0 | 725 } |
| 726 } | |
| 727 | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
728 static int h263_pred_dc(MpegEncContext * s, int n, UINT16 **dc_val_ptr) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
729 { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
730 int x, y, wrap, a, c, pred_dc, scale; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
731 INT16 *dc_val, *ac_val; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
732 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
733 /* find prediction */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
734 if (n < 4) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
735 x = 2 * s->mb_x + 1 + (n & 1); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
736 y = 2 * s->mb_y + 1 + ((n & 2) >> 1); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
737 wrap = s->mb_width * 2 + 2; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
738 dc_val = s->dc_val[0]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
739 ac_val = s->ac_val[0][0]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
740 scale = s->y_dc_scale; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
741 } else { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
742 x = s->mb_x + 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
743 y = s->mb_y + 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
744 wrap = s->mb_width + 2; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
745 dc_val = s->dc_val[n - 4 + 1]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
746 ac_val = s->ac_val[n - 4 + 1][0]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
747 scale = s->c_dc_scale; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
748 } |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
749 /* B C |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
750 * A X |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
751 */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
752 a = dc_val[(x - 1) + (y) * wrap]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
753 c = dc_val[(x) + (y - 1) * wrap]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
754 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
755 /* No prediction outside GOB boundary */ |
| 453 | 756 if (s->first_slice_line && ((n < 2) || (n > 3))) |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
757 c = 1024; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
758 pred_dc = 1024; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
759 /* just DC prediction */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
760 if (a != 1024 && c != 1024) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
761 pred_dc = (a + c) >> 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
762 else if (a != 1024) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
763 pred_dc = a; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
764 else |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
765 pred_dc = c; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
766 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
767 /* we assume pred is positive */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
768 //pred_dc = (pred_dc + (scale >> 1)) / scale; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
769 *dc_val_ptr = &dc_val[x + y * wrap]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
770 return pred_dc; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
771 } |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
772 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
773 |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
774 void h263_pred_acdc(MpegEncContext * s, INT16 *block, int n) |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
775 { |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
776 int x, y, wrap, a, c, pred_dc, scale, i; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
777 INT16 *dc_val, *ac_val, *ac_val1; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
778 |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
779 /* find prediction */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
780 if (n < 4) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
781 x = 2 * s->mb_x + 1 + (n & 1); |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
782 y = 2 * s->mb_y + 1 + ((n & 2) >> 1); |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
783 wrap = s->mb_width * 2 + 2; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
784 dc_val = s->dc_val[0]; |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
785 ac_val = s->ac_val[0][0]; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
786 scale = s->y_dc_scale; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
787 } else { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
788 x = s->mb_x + 1; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
789 y = s->mb_y + 1; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
790 wrap = s->mb_width + 2; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
791 dc_val = s->dc_val[n - 4 + 1]; |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
792 ac_val = s->ac_val[n - 4 + 1][0]; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
793 scale = s->c_dc_scale; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
794 } |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
795 |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
796 ac_val += ((y) * wrap + (x)) * 16; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
797 ac_val1 = ac_val; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
798 |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
799 /* B C |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
800 * A X |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
801 */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
802 a = dc_val[(x - 1) + (y) * wrap]; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
803 c = dc_val[(x) + (y - 1) * wrap]; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
804 |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
805 /* No prediction outside GOB boundary */ |
| 453 | 806 if (s->first_slice_line && ((n < 2) || (n > 3))) |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
807 c = 1024; |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
808 pred_dc = 1024; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
809 if (s->ac_pred) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
810 if (s->h263_aic_dir) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
811 /* left prediction */ |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
812 if (a != 1024) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
813 ac_val -= 16; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
814 for(i=1;i<8;i++) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
815 block[block_permute_op(i*8)] += ac_val[i]; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
816 } |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
817 pred_dc = a; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
818 } |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
819 } else { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
820 /* top prediction */ |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
821 if (c != 1024) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
822 ac_val -= 16 * wrap; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
823 for(i=1;i<8;i++) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
824 block[block_permute_op(i)] += ac_val[i + 8]; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
825 } |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
826 pred_dc = c; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
827 } |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
828 } |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
829 } else { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
830 /* just DC prediction */ |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
831 if (a != 1024 && c != 1024) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
832 pred_dc = (a + c) >> 1; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
833 else if (a != 1024) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
834 pred_dc = a; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
835 else |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
836 pred_dc = c; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
837 } |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
838 |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
839 /* we assume pred is positive */ |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
840 block[0]=block[0]*scale + pred_dc; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
841 |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
842 if (block[0] < 0) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
843 block[0] = 0; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
844 else if (!(block[0] & 1)) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
845 block[0]++; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
846 |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
847 /* Update AC/DC tables */ |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
848 dc_val[(x) + (y) * wrap] = block[0]; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
849 |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
850 /* left copy */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
851 for(i=1;i<8;i++) |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
852 ac_val1[i] = block[block_permute_op(i * 8)]; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
853 /* top copy */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
854 for(i=1;i<8;i++) |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
855 ac_val1[8 + i] = block[block_permute_op(i)]; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
856 } |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
857 |
| 0 | 858 INT16 *h263_pred_motion(MpegEncContext * s, int block, |
| 859 int *px, int *py) | |
| 860 { | |
| 266 | 861 int xy, wrap; |
| 0 | 862 INT16 *A, *B, *C, *mot_val; |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
863 static const int off[4]= {2, 1, 1, -1}; |
| 0 | 864 |
| 266 | 865 wrap = s->block_wrap[0]; |
| 866 xy = s->block_index[block]; | |
| 0 | 867 |
| 245 | 868 mot_val = s->motion_val[xy]; |
| 0 | 869 |
| 453 | 870 A = s->motion_val[xy - 1]; |
| 871 /* special case for first (slice) line */ | |
| 872 if ((s->mb_y == 0 || s->first_slice_line) && block<3) { | |
| 873 // we cant just change some MVs to simulate that as we need them for the B frames (and ME) | |
| 874 // and if we ever support non rectangular objects than we need to do a few ifs here anyway :( | |
| 875 if(block==0){ //most common case | |
| 876 if(s->mb_x == s->resync_mb_x){ //rare | |
| 877 *px= *py = 0; | |
| 878 }else if(s->mb_x + 1 == s->resync_mb_x){ //rare | |
| 879 C = s->motion_val[xy + off[block] - wrap]; | |
| 880 if(s->mb_x==0){ | |
| 881 *px = C[0]; | |
| 882 *py = C[1]; | |
| 883 }else{ | |
| 884 *px = mid_pred(A[0], 0, C[0]); | |
| 885 *py = mid_pred(A[1], 0, C[1]); | |
| 886 } | |
| 887 }else{ | |
| 888 *px = A[0]; | |
| 889 *py = A[1]; | |
| 890 } | |
| 891 }else if(block==1){ | |
| 892 if(s->mb_x + 1 == s->resync_mb_x){ //rare | |
| 893 C = s->motion_val[xy + off[block] - wrap]; | |
| 894 *px = mid_pred(A[0], 0, C[0]); | |
| 895 *py = mid_pred(A[1], 0, C[1]); | |
| 896 }else{ | |
| 897 *px = A[0]; | |
| 898 *py = A[1]; | |
| 899 } | |
| 900 }else{ /* block==2*/ | |
| 901 B = s->motion_val[xy - wrap]; | |
| 902 C = s->motion_val[xy + off[block] - wrap]; | |
| 903 if(s->mb_x == s->resync_mb_x) //rare | |
| 904 A[0]=A[1]=0; | |
| 905 | |
| 906 *px = mid_pred(A[0], B[0], C[0]); | |
| 907 *py = mid_pred(A[1], B[1], C[1]); | |
| 908 } | |
| 0 | 909 } else { |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
910 B = s->motion_val[xy - wrap]; |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
911 C = s->motion_val[xy + off[block] - wrap]; |
| 0 | 912 *px = mid_pred(A[0], B[0], C[0]); |
| 913 *py = mid_pred(A[1], B[1], C[1]); | |
| 914 } | |
| 915 return mot_val; | |
| 916 } | |
| 917 | |
| 324 | 918 static void h263_encode_motion(MpegEncContext * s, int val, int f_code) |
| 0 | 919 { |
| 920 int range, l, m, bit_size, sign, code, bits; | |
| 921 | |
| 922 if (val == 0) { | |
| 923 /* zero vector */ | |
| 924 code = 0; | |
| 925 put_bits(&s->pb, mvtab[code][1], mvtab[code][0]); | |
| 926 } else { | |
| 324 | 927 bit_size = f_code - 1; |
| 0 | 928 range = 1 << bit_size; |
| 929 /* modulo encoding */ | |
| 930 l = range * 32; | |
| 931 m = 2 * l; | |
| 932 if (val < -l) { | |
| 933 val += m; | |
| 934 } else if (val >= l) { | |
| 935 val -= m; | |
| 936 } | |
| 937 | |
| 938 if (val >= 0) { | |
| 939 sign = 0; | |
| 940 } else { | |
| 941 val = -val; | |
| 942 sign = 1; | |
| 943 } | |
| 312 | 944 val--; |
| 945 code = (val >> bit_size) + 1; | |
| 946 bits = val & (range - 1); | |
| 0 | 947 |
| 948 put_bits(&s->pb, mvtab[code][1] + 1, (mvtab[code][0] << 1) | sign); | |
| 949 if (bit_size > 0) { | |
| 950 put_bits(&s->pb, bit_size, bits); | |
| 951 } | |
| 952 } | |
| 953 } | |
| 954 | |
| 78 | 955 /* Encode MV differences on H.263+ with Unrestricted MV mode */ |
| 956 static void h263p_encode_umotion(MpegEncContext * s, int val) | |
| 957 { | |
| 958 short sval = 0; | |
| 959 short i = 0; | |
| 960 short n_bits = 0; | |
| 961 short temp_val; | |
| 962 int code = 0; | |
| 963 int tcode; | |
| 964 | |
| 965 if ( val == 0) | |
| 966 put_bits(&s->pb, 1, 1); | |
| 967 else if (val == 1) | |
| 968 put_bits(&s->pb, 3, 0); | |
| 969 else if (val == -1) | |
| 970 put_bits(&s->pb, 3, 2); | |
| 971 else { | |
| 972 | |
| 973 sval = ((val < 0) ? (short)(-val):(short)val); | |
| 974 temp_val = sval; | |
| 975 | |
| 976 while (temp_val != 0) { | |
| 977 temp_val = temp_val >> 1; | |
| 978 n_bits++; | |
| 979 } | |
| 980 | |
| 981 i = n_bits - 1; | |
| 982 while (i > 0) { | |
| 983 tcode = (sval & (1 << (i-1))) >> (i-1); | |
| 984 tcode = (tcode << 1) | 1; | |
| 985 code = (code << 2) | tcode; | |
| 986 i--; | |
| 987 } | |
| 988 code = ((code << 1) | (val < 0)) << 1; | |
| 989 put_bits(&s->pb, (2*n_bits)+1, code); | |
| 990 //printf("\nVal = %d\tCode = %d", sval, code); | |
| 991 } | |
| 992 } | |
| 993 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
994 static void init_mv_penalty_and_fcode(MpegEncContext *s) |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
995 { |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
996 int f_code; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
997 int mv; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
998 for(f_code=1; f_code<=MAX_FCODE; f_code++){ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
999 for(mv=-MAX_MV; mv<=MAX_MV; mv++){ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1000 int len; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1001 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1002 if(mv==0) len= mvtab[0][1]; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1003 else{ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1004 int val, bit_size, range, code; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1005 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1006 bit_size = s->f_code - 1; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1007 range = 1 << bit_size; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1008 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1009 val=mv; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1010 if (val < 0) |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1011 val = -val; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1012 val--; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1013 code = (val >> bit_size) + 1; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1014 if(code<33){ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1015 len= mvtab[code][1] + 1 + bit_size; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1016 }else{ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1017 len= mvtab[32][1] + 2 + bit_size; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1018 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1019 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1020 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1021 mv_penalty[f_code][mv+MAX_MV]= len; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1022 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1023 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1024 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1025 for(f_code=MAX_FCODE; f_code>0; f_code--){ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1026 for(mv=-(16<<f_code); mv<(16<<f_code); mv++){ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1027 fcode_tab[mv+MAX_MV]= f_code; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1028 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1029 } |
| 287 | 1030 |
| 1031 for(mv=0; mv<MAX_MV*2+1; mv++){ | |
| 1032 umv_fcode_tab[mv]= 1; | |
| 1033 } | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1034 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1035 |
| 468 | 1036 static void init_uni_dc_tab(void) |
| 293 | 1037 { |
| 1038 int level, uni_code, uni_len; | |
| 1039 | |
| 312 | 1040 for(level=-256; level<256; level++){ |
| 293 | 1041 int size, v, l; |
| 1042 /* find number of bits */ | |
| 1043 size = 0; | |
| 1044 v = abs(level); | |
| 1045 while (v) { | |
| 1046 v >>= 1; | |
| 1047 size++; | |
| 1048 } | |
| 1049 | |
| 1050 if (level < 0) | |
| 1051 l= (-level) ^ ((1 << size) - 1); | |
| 1052 else | |
| 1053 l= level; | |
| 1054 | |
| 1055 /* luminance */ | |
| 1056 uni_code= DCtab_lum[size][0]; | |
| 1057 uni_len = DCtab_lum[size][1]; | |
| 1058 | |
| 1059 if (size > 0) { | |
| 1060 uni_code<<=size; uni_code|=l; | |
| 1061 uni_len+=size; | |
| 1062 if (size > 8){ | |
| 1063 uni_code<<=1; uni_code|=1; | |
| 1064 uni_len++; | |
| 1065 } | |
| 1066 } | |
| 1067 uni_DCtab_lum[level+256][0]= uni_code; | |
| 1068 uni_DCtab_lum[level+256][1]= uni_len; | |
| 1069 | |
| 1070 /* chrominance */ | |
| 1071 uni_code= DCtab_chrom[size][0]; | |
| 1072 uni_len = DCtab_chrom[size][1]; | |
| 1073 | |
| 1074 if (size > 0) { | |
| 1075 uni_code<<=size; uni_code|=l; | |
| 1076 uni_len+=size; | |
| 1077 if (size > 8){ | |
| 1078 uni_code<<=1; uni_code|=1; | |
| 1079 uni_len++; | |
| 1080 } | |
| 1081 } | |
| 1082 uni_DCtab_chrom[level+256][0]= uni_code; | |
| 1083 uni_DCtab_chrom[level+256][1]= uni_len; | |
| 1084 | |
| 1085 } | |
| 1086 } | |
| 1087 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1088 void h263_encode_init(MpegEncContext *s) |
| 0 | 1089 { |
| 1090 static int done = 0; | |
| 1091 | |
| 1092 if (!done) { | |
| 1093 done = 1; | |
| 293 | 1094 |
| 1095 init_uni_dc_tab(); | |
| 1096 | |
| 0 | 1097 init_rl(&rl_inter); |
| 1098 init_rl(&rl_intra); | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1099 init_rl(&rl_intra_aic); |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1100 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1101 init_mv_penalty_and_fcode(s); |
| 0 | 1102 } |
| 287 | 1103 s->mv_penalty= mv_penalty; //FIXME exact table for msmpeg4 & h263p |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1104 |
| 287 | 1105 // use fcodes >1 only for mpeg4 & h263 & h263p FIXME |
| 344 | 1106 switch(s->codec_id){ |
| 1107 case CODEC_ID_MPEG4: | |
| 1108 s->fcode_tab= fcode_tab; | |
| 1109 s->min_qcoeff= -2048; | |
| 1110 s->max_qcoeff= 2047; | |
| 1111 break; | |
| 1112 case CODEC_ID_H263P: | |
| 1113 s->fcode_tab= umv_fcode_tab; | |
| 1114 s->min_qcoeff= -128; | |
| 1115 s->max_qcoeff= 127; | |
| 1116 break; | |
| 498 | 1117 //Note for mpeg4 & h263 the dc-scale table will be set per frame as needed later |
| 344 | 1118 default: //nothing needed default table allready set in mpegvideo.c |
| 1119 s->min_qcoeff= -128; | |
| 1120 s->max_qcoeff= 127; | |
| 498 | 1121 s->y_dc_scale_table= |
| 1122 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; | |
| 344 | 1123 } |
| 1124 | |
| 599 | 1125 if(s->mpeg_quant){ |
| 1126 s->intra_quant_bias= 3<<(QUANT_BIAS_SHIFT-3); //(a + x*3/8)/x | |
| 1127 s->inter_quant_bias= 0; | |
| 1128 }else{ | |
| 1129 s->intra_quant_bias=0; | |
| 1130 s->inter_quant_bias=-(1<<(QUANT_BIAS_SHIFT-2)); //(a - x/4)/x | |
| 1131 } | |
| 0 | 1132 } |
| 1133 | |
| 1134 static void h263_encode_block(MpegEncContext * s, DCTELEM * block, int n) | |
| 1135 { | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1136 int level, run, last, i, j, last_index, last_non_zero, sign, slevel, code; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1137 RLTable *rl; |
| 0 | 1138 |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1139 rl = &rl_inter; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1140 if (s->mb_intra && !s->h263_aic) { |
| 231 | 1141 /* DC coef */ |
| 1142 level = block[0]; | |
| 0 | 1143 /* 255 cannot be represented, so we clamp */ |
| 1144 if (level > 254) { | |
| 1145 level = 254; | |
| 1146 block[0] = 254; | |
| 1147 } | |
| 231 | 1148 /* 0 cannot be represented also */ |
| 1149 else if (!level) { | |
| 1150 level = 1; | |
| 1151 block[0] = 1; | |
| 1152 } | |
| 1153 if (level == 128) | |
| 1154 put_bits(&s->pb, 8, 0xff); | |
| 1155 else | |
| 1156 put_bits(&s->pb, 8, level & 0xff); | |
| 1157 i = 1; | |
| 0 | 1158 } else { |
| 231 | 1159 i = 0; |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1160 if (s->h263_aic && s->mb_intra) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1161 rl = &rl_intra_aic; |
| 0 | 1162 } |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1163 |
| 0 | 1164 /* AC coefs */ |
| 1165 last_index = s->block_last_index[n]; | |
| 1166 last_non_zero = i - 1; | |
| 1167 for (; i <= last_index; i++) { | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1168 j = zigzag_direct[i]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1169 level = block[j]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1170 if (level) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1171 run = i - last_non_zero - 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1172 last = (i == last_index); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1173 sign = 0; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1174 slevel = level; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1175 if (level < 0) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1176 sign = 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1177 level = -level; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1178 } |
| 0 | 1179 code = get_rl_index(rl, last, run, level); |
| 1180 put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 1181 if (code == rl->n) { | |
| 1182 put_bits(&s->pb, 1, last); | |
| 1183 put_bits(&s->pb, 6, run); | |
| 1184 put_bits(&s->pb, 8, slevel & 0xff); | |
| 1185 } else { | |
| 1186 put_bits(&s->pb, 1, sign); | |
| 1187 } | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1188 last_non_zero = i; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1189 } |
| 0 | 1190 } |
| 1191 } | |
| 1192 | |
| 1193 /***************************************************/ | |
| 1194 | |
| 453 | 1195 void ff_mpeg4_stuffing(PutBitContext * pbc) |
| 262 | 1196 { |
| 1197 int length; | |
| 1198 put_bits(pbc, 1, 0); | |
| 1199 length= (-get_bit_count(pbc))&7; | |
| 453 | 1200 if(length) put_bits(pbc, length, (1<<length)-1); |
| 262 | 1201 } |
| 1202 | |
| 327 | 1203 /* must be called before writing the header */ |
| 1204 void ff_set_mpeg4_time(MpegEncContext * s, int picture_number){ | |
| 1205 int time_div, time_mod; | |
| 1206 | |
| 1207 if(s->pict_type==I_TYPE){ //we will encode a vol header | |
| 1208 s->time_increment_resolution= s->frame_rate/ff_gcd(s->frame_rate, FRAME_RATE_BASE); | |
| 1209 if(s->time_increment_resolution>=256*256) s->time_increment_resolution= 256*128; | |
| 1210 | |
| 1211 s->time_increment_bits = av_log2(s->time_increment_resolution - 1) + 1; | |
| 1212 } | |
| 1213 | |
| 429 | 1214 s->time= picture_number*(INT64)FRAME_RATE_BASE*s->time_increment_resolution/s->frame_rate; |
| 327 | 1215 time_div= s->time/s->time_increment_resolution; |
| 1216 time_mod= s->time%s->time_increment_resolution; | |
| 1217 | |
| 1218 if(s->pict_type==B_TYPE){ | |
| 1219 s->bp_time= s->last_non_b_time - s->time; | |
| 1220 }else{ | |
| 1221 s->last_time_base= s->time_base; | |
| 1222 s->time_base= time_div; | |
| 1223 s->pp_time= s->time - s->last_non_b_time; | |
| 1224 s->last_non_b_time= s->time; | |
| 1225 } | |
| 1226 } | |
| 1227 | |
| 263 | 1228 static void mpeg4_encode_vol_header(MpegEncContext * s) |
| 0 | 1229 { |
| 263 | 1230 int vo_ver_id=1; //must be 2 if we want GMC or q-pel |
| 322 | 1231 char buf[255]; |
| 336 | 1232 |
| 1233 s->vo_type= s->has_b_frames ? CORE_VO_TYPE : SIMPLE_VO_TYPE; | |
| 1234 | |
| 263 | 1235 put_bits(&s->pb, 16, 0); |
| 1236 put_bits(&s->pb, 16, 0x100); /* video obj */ | |
| 1237 put_bits(&s->pb, 16, 0); | |
| 1238 put_bits(&s->pb, 16, 0x120); /* video obj layer */ | |
| 1239 | |
| 1240 put_bits(&s->pb, 1, 0); /* random access vol */ | |
| 336 | 1241 put_bits(&s->pb, 8, s->vo_type); /* video obj type indication */ |
| 263 | 1242 put_bits(&s->pb, 1, 1); /* is obj layer id= yes */ |
| 1243 put_bits(&s->pb, 4, vo_ver_id); /* is obj layer ver id */ | |
| 1244 put_bits(&s->pb, 3, 1); /* is obj layer priority */ | |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1245 if(s->aspect_ratio_info) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1246 put_bits(&s->pb, 4, s->aspect_ratio_info);/* aspect ratio info */ |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1247 else |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1248 put_bits(&s->pb, 4, 1); /* aspect ratio info= sqare pixel */ |
| 336 | 1249 |
| 1250 if(s->low_delay){ | |
| 1251 put_bits(&s->pb, 1, 1); /* vol control parameters= yes */ | |
| 341 | 1252 put_bits(&s->pb, 2, 1); /* chroma format YUV 420/YV12 */ |
| 336 | 1253 put_bits(&s->pb, 1, s->low_delay); |
| 1254 put_bits(&s->pb, 1, 0); /* vbv parameters= no */ | |
| 1255 }else{ | |
| 1256 put_bits(&s->pb, 1, 0); /* vol control parameters= no */ | |
| 1257 } | |
| 1258 | |
| 263 | 1259 put_bits(&s->pb, 2, RECT_SHAPE); /* vol shape= rectangle */ |
| 1260 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 324 | 1261 |
| 1262 put_bits(&s->pb, 16, s->time_increment_resolution); | |
| 263 | 1263 if (s->time_increment_bits < 1) |
| 1264 s->time_increment_bits = 1; | |
| 1265 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1266 put_bits(&s->pb, 1, 0); /* fixed vop rate=no */ | |
| 1267 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1268 put_bits(&s->pb, 13, s->width); /* vol width */ | |
| 1269 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1270 put_bits(&s->pb, 13, s->height); /* vol height */ | |
| 1271 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1272 put_bits(&s->pb, 1, 0); /* interlace */ | |
| 1273 put_bits(&s->pb, 1, 1); /* obmc disable */ | |
| 1274 if (vo_ver_id == 1) { | |
| 1275 put_bits(&s->pb, 1, s->vol_sprite_usage=0); /* sprite enable */ | |
| 1276 }else{ /* vo_ver_id == 2 */ | |
| 1277 put_bits(&s->pb, 2, s->vol_sprite_usage=0); /* sprite enable */ | |
| 1278 } | |
| 1279 put_bits(&s->pb, 1, 0); /* not 8 bit */ | |
| 599 | 1280 put_bits(&s->pb, 1, s->mpeg_quant); /* quant type= (0=h263 style)*/ |
| 1281 if(s->mpeg_quant) put_bits(&s->pb, 2, 0); /* no custom matrixes */ | |
| 1282 | |
| 263 | 1283 if (vo_ver_id != 1) |
| 1284 put_bits(&s->pb, 1, s->quarter_sample=0); | |
| 1285 put_bits(&s->pb, 1, 1); /* complexity estimation disable */ | |
| 453 | 1286 s->resync_marker= s->rtp_mode; |
| 1287 put_bits(&s->pb, 1, s->resync_marker ? 0 : 1);/* resync marker disable */ | |
| 1288 put_bits(&s->pb, 1, s->data_partitioning ? 1 : 0); | |
| 1289 if(s->data_partitioning){ | |
| 1290 put_bits(&s->pb, 1, 0); /* no rvlc */ | |
| 1291 } | |
| 1292 | |
| 263 | 1293 if (vo_ver_id != 1){ |
| 1294 put_bits(&s->pb, 1, 0); /* newpred */ | |
| 1295 put_bits(&s->pb, 1, 0); /* reduced res vop */ | |
| 1296 } | |
| 1297 put_bits(&s->pb, 1, 0); /* scalability */ | |
| 1298 | |
| 453 | 1299 ff_mpeg4_stuffing(&s->pb); |
| 262 | 1300 put_bits(&s->pb, 16, 0); |
| 1301 put_bits(&s->pb, 16, 0x1B2); /* user_data */ | |
| 360 | 1302 sprintf(buf, "FFmpeg%sb%s", FFMPEG_VERSION, LIBAVCODEC_BUILD_STR); |
| 322 | 1303 put_string(&s->pb, buf); |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
1304 |
| 453 | 1305 ff_mpeg4_stuffing(&s->pb); |
| 263 | 1306 } |
| 1307 | |
| 1308 /* write mpeg4 VOP header */ | |
| 1309 void mpeg4_encode_picture_header(MpegEncContext * s, int picture_number) | |
| 1310 { | |
| 324 | 1311 int time_incr; |
| 1312 int time_div, time_mod; | |
| 1313 | |
| 453 | 1314 if(s->pict_type==I_TYPE){ |
| 1315 s->no_rounding=0; | |
| 1316 if(picture_number==0 || !s->strict_std_compliance) | |
| 1317 mpeg4_encode_vol_header(s); | |
| 1318 } | |
| 324 | 1319 |
| 1320 //printf("num:%d rate:%d base:%d\n", s->picture_number, s->frame_rate, FRAME_RATE_BASE); | |
| 1321 | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
1322 put_bits(&s->pb, 16, 0); /* vop header */ |
|
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
1323 put_bits(&s->pb, 16, 0x1B6); /* vop header */ |
| 0 | 1324 put_bits(&s->pb, 2, s->pict_type - 1); /* pict type: I = 0 , P = 1 */ |
| 324 | 1325 |
| 327 | 1326 time_div= s->time/s->time_increment_resolution; |
| 1327 time_mod= s->time%s->time_increment_resolution; | |
| 324 | 1328 time_incr= time_div - s->last_time_base; |
| 1329 while(time_incr--) | |
| 1330 put_bits(&s->pb, 1, 1); | |
| 1331 | |
| 0 | 1332 put_bits(&s->pb, 1, 0); |
| 1333 | |
| 1334 put_bits(&s->pb, 1, 1); /* marker */ | |
| 324 | 1335 put_bits(&s->pb, s->time_increment_bits, time_mod); /* time increment */ |
| 0 | 1336 put_bits(&s->pb, 1, 1); /* marker */ |
| 1337 put_bits(&s->pb, 1, 1); /* vop coded */ | |
| 263 | 1338 if ( s->pict_type == P_TYPE |
| 1339 || (s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE)) { | |
| 1340 s->no_rounding ^= 1; | |
| 0 | 1341 put_bits(&s->pb, 1, s->no_rounding); /* rounding type */ |
| 1342 } | |
| 1343 put_bits(&s->pb, 3, 0); /* intra dc VLC threshold */ | |
| 263 | 1344 //FIXME sprite stuff |
| 0 | 1345 |
| 1346 put_bits(&s->pb, 5, s->qscale); | |
| 1347 | |
| 1348 if (s->pict_type != I_TYPE) | |
| 1349 put_bits(&s->pb, 3, s->f_code); /* fcode_for */ | |
| 263 | 1350 if (s->pict_type == B_TYPE) |
| 1351 put_bits(&s->pb, 3, s->b_code); /* fcode_back */ | |
| 0 | 1352 // printf("****frame %d\n", picture_number); |
| 498 | 1353 |
| 1354 s->y_dc_scale_table= ff_mpeg4_y_dc_scale_table; //FIXME add short header support | |
| 1355 s->c_dc_scale_table= ff_mpeg4_c_dc_scale_table; | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1356 s->h_edge_pos= s->width; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1357 s->v_edge_pos= s->height; |
| 0 | 1358 } |
| 1359 | |
| 498 | 1360 static void h263_dc_scale(MpegEncContext * s) |
| 0 | 1361 { |
| 498 | 1362 s->y_dc_scale= s->y_dc_scale_table[ s->qscale ]; |
| 1363 s->c_dc_scale= s->c_dc_scale_table[ s->qscale ]; | |
| 0 | 1364 } |
| 1365 | |
| 498 | 1366 inline int ff_mpeg4_pred_dc(MpegEncContext * s, int n, UINT16 **dc_val_ptr, int *dir_ptr) |
| 0 | 1367 { |
| 266 | 1368 int a, b, c, wrap, pred, scale; |
| 0 | 1369 UINT16 *dc_val; |
| 469 | 1370 int dummy; |
| 0 | 1371 |
| 1372 /* find prediction */ | |
| 1373 if (n < 4) { | |
| 1374 scale = s->y_dc_scale; | |
| 1375 } else { | |
| 1376 scale = s->c_dc_scale; | |
| 1377 } | |
| 266 | 1378 wrap= s->block_wrap[n]; |
| 1379 dc_val = s->dc_val[0] + s->block_index[n]; | |
| 0 | 1380 |
| 1381 /* B C | |
| 1382 * A X | |
| 1383 */ | |
| 266 | 1384 a = dc_val[ - 1]; |
| 1385 b = dc_val[ - 1 - wrap]; | |
| 1386 c = dc_val[ - wrap]; | |
| 0 | 1387 |
| 1388 if (abs(a - b) < abs(b - c)) { | |
| 1389 pred = c; | |
| 1390 *dir_ptr = 1; /* top */ | |
| 1391 } else { | |
| 1392 pred = a; | |
| 1393 *dir_ptr = 0; /* left */ | |
| 1394 } | |
| 1395 /* we assume pred is positive */ | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1396 #ifdef ARCH_X86 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1397 asm volatile ( |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1398 "xorl %%edx, %%edx \n\t" |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1399 "mul %%ecx \n\t" |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1400 : "=d" (pred), "=a"(dummy) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1401 : "a" (pred + (scale >> 1)), "c" (inverse[scale]) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1402 ); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1403 #else |
| 0 | 1404 pred = (pred + (scale >> 1)) / scale; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1405 #endif |
| 0 | 1406 |
| 1407 /* prepare address for prediction update */ | |
| 266 | 1408 *dc_val_ptr = &dc_val[0]; |
| 0 | 1409 |
| 1410 return pred; | |
| 1411 } | |
| 1412 | |
|
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
162
diff
changeset
|
1413 void mpeg4_pred_ac(MpegEncContext * s, INT16 *block, int n, |
| 0 | 1414 int dir) |
| 1415 { | |
| 266 | 1416 int i; |
| 0 | 1417 INT16 *ac_val, *ac_val1; |
| 1418 | |
| 1419 /* find prediction */ | |
| 266 | 1420 ac_val = s->ac_val[0][0] + s->block_index[n] * 16; |
| 0 | 1421 ac_val1 = ac_val; |
| 1422 if (s->ac_pred) { | |
| 1423 if (dir == 0) { | |
| 575 | 1424 const int xy= s->mb_x-1 + s->mb_y*s->mb_width; |
| 0 | 1425 /* left prediction */ |
| 1426 ac_val -= 16; | |
| 575 | 1427 |
| 1428 if(s->mb_x==0 || s->qscale == s->qscale_table[xy] || n==1 || n==3){ | |
| 1429 /* same qscale */ | |
| 1430 for(i=1;i<8;i++) { | |
| 1431 block[block_permute_op(i*8)] += ac_val[i]; | |
| 1432 } | |
| 1433 }else{ | |
| 1434 /* different qscale, we must rescale */ | |
| 1435 for(i=1;i<8;i++) { | |
| 1436 block[block_permute_op(i*8)] += ROUNDED_DIV(ac_val[i]*s->qscale_table[xy], s->qscale); | |
| 1437 } | |
| 0 | 1438 } |
| 1439 } else { | |
| 575 | 1440 const int xy= s->mb_x + s->mb_y*s->mb_width - s->mb_width; |
| 0 | 1441 /* top prediction */ |
| 266 | 1442 ac_val -= 16 * s->block_wrap[n]; |
| 575 | 1443 |
| 1444 if(s->mb_y==0 || s->qscale == s->qscale_table[xy] || n==2 || n==3){ | |
| 1445 /* same qscale */ | |
| 1446 for(i=1;i<8;i++) { | |
| 1447 block[block_permute_op(i)] += ac_val[i + 8]; | |
| 1448 } | |
| 1449 }else{ | |
| 1450 /* different qscale, we must rescale */ | |
| 1451 for(i=1;i<8;i++) { | |
| 1452 block[block_permute_op(i)] += ROUNDED_DIV(ac_val[i + 8]*s->qscale_table[xy], s->qscale); | |
| 1453 } | |
| 0 | 1454 } |
| 1455 } | |
| 1456 } | |
| 1457 /* left copy */ | |
| 1458 for(i=1;i<8;i++) | |
|
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
162
diff
changeset
|
1459 ac_val1[i] = block[block_permute_op(i * 8)]; |
| 591 | 1460 |
| 0 | 1461 /* top copy */ |
| 1462 for(i=1;i<8;i++) | |
|
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
162
diff
changeset
|
1463 ac_val1[8 + i] = block[block_permute_op(i)]; |
| 591 | 1464 |
| 0 | 1465 } |
| 1466 | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1467 static void mpeg4_inv_pred_ac(MpegEncContext * s, INT16 *block, int n, |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1468 int dir) |
| 0 | 1469 { |
| 266 | 1470 int i; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1471 INT16 *ac_val; |
| 0 | 1472 |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1473 /* find prediction */ |
| 266 | 1474 ac_val = s->ac_val[0][0] + s->block_index[n] * 16; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1475 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1476 if (dir == 0) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1477 /* left prediction */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1478 ac_val -= 16; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1479 for(i=1;i<8;i++) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1480 block[block_permute_op(i*8)] -= ac_val[i]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1481 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1482 } else { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1483 /* top prediction */ |
| 266 | 1484 ac_val -= 16 * s->block_wrap[n]; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1485 for(i=1;i<8;i++) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1486 block[block_permute_op(i)] -= ac_val[i + 8]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1487 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1488 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1489 } |
| 0 | 1490 |
| 453 | 1491 static inline void mpeg4_encode_dc(PutBitContext * s, int level, int n) |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1492 { |
| 293 | 1493 #if 1 |
| 453 | 1494 // if(level<-255 || level>255) printf("dc overflow\n"); |
| 293 | 1495 level+=256; |
| 1496 if (n < 4) { | |
| 1497 /* luminance */ | |
| 453 | 1498 put_bits(s, uni_DCtab_lum[level][1], uni_DCtab_lum[level][0]); |
| 293 | 1499 } else { |
| 1500 /* chrominance */ | |
| 453 | 1501 put_bits(s, uni_DCtab_chrom[level][1], uni_DCtab_chrom[level][0]); |
| 293 | 1502 } |
| 1503 #else | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1504 int size, v; |
| 0 | 1505 /* find number of bits */ |
| 1506 size = 0; | |
| 1507 v = abs(level); | |
| 1508 while (v) { | |
| 1509 v >>= 1; | |
| 1510 size++; | |
| 1511 } | |
| 1512 | |
| 1513 if (n < 4) { | |
| 1514 /* luminance */ | |
| 1515 put_bits(&s->pb, DCtab_lum[size][1], DCtab_lum[size][0]); | |
| 1516 } else { | |
| 1517 /* chrominance */ | |
| 1518 put_bits(&s->pb, DCtab_chrom[size][1], DCtab_chrom[size][0]); | |
| 1519 } | |
| 1520 | |
| 1521 /* encode remaining bits */ | |
| 1522 if (size > 0) { | |
| 1523 if (level < 0) | |
| 1524 level = (-level) ^ ((1 << size) - 1); | |
| 1525 put_bits(&s->pb, size, level); | |
| 1526 if (size > 8) | |
| 1527 put_bits(&s->pb, 1, 1); | |
| 1528 } | |
| 293 | 1529 #endif |
| 0 | 1530 } |
| 1531 | |
| 453 | 1532 static void mpeg4_encode_block(MpegEncContext * s, DCTELEM * block, int n, int intra_dc, |
| 1533 UINT8 *scan_table, PutBitContext *dc_pb, PutBitContext *ac_pb) | |
| 0 | 1534 { |
| 1535 int level, run, last, i, j, last_index, last_non_zero, sign, slevel; | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1536 int code; |
| 0 | 1537 const RLTable *rl; |
| 1538 | |
| 1539 if (s->mb_intra) { | |
| 1540 /* mpeg4 based DC predictor */ | |
| 453 | 1541 mpeg4_encode_dc(dc_pb, intra_dc, n); |
| 0 | 1542 i = 1; |
| 1543 rl = &rl_intra; | |
| 1544 } else { | |
| 1545 i = 0; | |
| 1546 rl = &rl_inter; | |
| 1547 } | |
| 1548 | |
| 1549 /* AC coefs */ | |
| 1550 last_index = s->block_last_index[n]; | |
| 1551 last_non_zero = i - 1; | |
| 1552 for (; i <= last_index; i++) { | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1553 j = scan_table[i]; |
| 0 | 1554 level = block[j]; |
| 1555 if (level) { | |
| 1556 run = i - last_non_zero - 1; | |
| 1557 last = (i == last_index); | |
| 1558 sign = 0; | |
| 1559 slevel = level; | |
| 1560 if (level < 0) { | |
| 1561 sign = 1; | |
| 1562 level = -level; | |
| 1563 } | |
| 1564 code = get_rl_index(rl, last, run, level); | |
| 453 | 1565 put_bits(ac_pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); |
| 0 | 1566 if (code == rl->n) { |
| 1567 int level1, run1; | |
| 1568 level1 = level - rl->max_level[last][run]; | |
| 1569 if (level1 < 1) | |
| 1570 goto esc2; | |
| 1571 code = get_rl_index(rl, last, run, level1); | |
| 1572 if (code == rl->n) { | |
| 1573 esc2: | |
| 453 | 1574 put_bits(ac_pb, 1, 1); |
| 0 | 1575 if (level > MAX_LEVEL) |
| 1576 goto esc3; | |
| 1577 run1 = run - rl->max_run[last][level] - 1; | |
| 1578 if (run1 < 0) | |
| 1579 goto esc3; | |
| 1580 code = get_rl_index(rl, last, run1, level); | |
| 1581 if (code == rl->n) { | |
| 1582 esc3: | |
| 1583 /* third escape */ | |
| 453 | 1584 put_bits(ac_pb, 1, 1); |
| 1585 put_bits(ac_pb, 1, last); | |
| 1586 put_bits(ac_pb, 6, run); | |
| 1587 put_bits(ac_pb, 1, 1); | |
| 1588 put_bits(ac_pb, 12, slevel & 0xfff); | |
| 1589 put_bits(ac_pb, 1, 1); | |
| 0 | 1590 } else { |
| 1591 /* second escape */ | |
| 453 | 1592 put_bits(ac_pb, 1, 0); |
| 1593 put_bits(ac_pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 1594 put_bits(ac_pb, 1, sign); | |
| 0 | 1595 } |
| 1596 } else { | |
| 1597 /* first escape */ | |
| 453 | 1598 put_bits(ac_pb, 1, 0); |
| 1599 put_bits(ac_pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 1600 put_bits(ac_pb, 1, sign); | |
| 0 | 1601 } |
| 1602 } else { | |
| 453 | 1603 put_bits(ac_pb, 1, sign); |
| 0 | 1604 } |
| 1605 last_non_zero = i; | |
| 1606 } | |
| 1607 } | |
| 1608 } | |
| 1609 | |
| 1610 | |
| 1611 | |
| 1612 /***********************************************/ | |
| 1613 /* decoding */ | |
| 1614 | |
| 1615 static VLC intra_MCBPC_vlc; | |
| 1616 static VLC inter_MCBPC_vlc; | |
| 1617 static VLC cbpy_vlc; | |
| 1618 static VLC mv_vlc; | |
| 1619 static VLC dc_lum, dc_chrom; | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1620 static VLC sprite_trajectory; |
| 262 | 1621 static VLC mb_type_b_vlc; |
| 0 | 1622 |
| 1623 void init_rl(RLTable *rl) | |
| 1624 { | |
| 1625 INT8 max_level[MAX_RUN+1], max_run[MAX_LEVEL+1]; | |
| 1626 UINT8 index_run[MAX_RUN+1]; | |
| 1627 int last, run, level, start, end, i; | |
| 1628 | |
| 1629 /* compute max_level[], max_run[] and index_run[] */ | |
| 1630 for(last=0;last<2;last++) { | |
| 1631 if (last == 0) { | |
| 1632 start = 0; | |
| 1633 end = rl->last; | |
| 1634 } else { | |
| 1635 start = rl->last; | |
| 1636 end = rl->n; | |
| 1637 } | |
| 1638 | |
| 1639 memset(max_level, 0, MAX_RUN + 1); | |
| 1640 memset(max_run, 0, MAX_LEVEL + 1); | |
| 1641 memset(index_run, rl->n, MAX_RUN + 1); | |
| 1642 for(i=start;i<end;i++) { | |
| 1643 run = rl->table_run[i]; | |
| 1644 level = rl->table_level[i]; | |
| 1645 if (index_run[run] == rl->n) | |
| 1646 index_run[run] = i; | |
| 1647 if (level > max_level[run]) | |
| 1648 max_level[run] = level; | |
| 1649 if (run > max_run[level]) | |
| 1650 max_run[level] = run; | |
| 1651 } | |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
365
diff
changeset
|
1652 rl->max_level[last] = av_malloc(MAX_RUN + 1); |
| 0 | 1653 memcpy(rl->max_level[last], max_level, MAX_RUN + 1); |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
365
diff
changeset
|
1654 rl->max_run[last] = av_malloc(MAX_LEVEL + 1); |
| 0 | 1655 memcpy(rl->max_run[last], max_run, MAX_LEVEL + 1); |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
365
diff
changeset
|
1656 rl->index_run[last] = av_malloc(MAX_RUN + 1); |
| 0 | 1657 memcpy(rl->index_run[last], index_run, MAX_RUN + 1); |
| 1658 } | |
| 1659 } | |
| 1660 | |
| 1661 void init_vlc_rl(RLTable *rl) | |
| 1662 { | |
| 542 | 1663 int i, q; |
| 1664 | |
| 0 | 1665 init_vlc(&rl->vlc, 9, rl->n + 1, |
| 1666 &rl->table_vlc[0][1], 4, 2, | |
| 1667 &rl->table_vlc[0][0], 4, 2); | |
| 542 | 1668 |
| 1669 | |
| 1670 for(q=0; q<32; q++){ | |
| 1671 int qmul= q*2; | |
| 1672 int qadd= (q-1)|1; | |
| 1673 | |
| 1674 if(q==0){ | |
| 1675 qmul=1; | |
| 1676 qadd=0; | |
| 1677 } | |
| 1678 | |
| 1679 rl->rl_vlc[q]= av_malloc(rl->vlc.table_size*sizeof(RL_VLC_ELEM)); | |
| 1680 for(i=0; i<rl->vlc.table_size; i++){ | |
| 1681 int code= rl->vlc.table[i][0]; | |
| 1682 int len = rl->vlc.table[i][1]; | |
| 1683 int level, run; | |
| 1684 | |
| 1685 if(len==0){ // illegal code | |
| 563 | 1686 run= 66; |
| 542 | 1687 level= MAX_LEVEL; |
| 1688 }else if(len<0){ //more bits needed | |
| 1689 run= 0; | |
| 1690 level= code; | |
| 1691 }else{ | |
| 1692 if(code==rl->n){ //esc | |
| 563 | 1693 run= 66; |
| 542 | 1694 level= 0; |
| 1695 }else{ | |
| 1696 run= rl->table_run [code] + 1; | |
| 1697 level= rl->table_level[code] * qmul + qadd; | |
| 1698 if(code >= rl->last) run+=192; | |
| 1699 } | |
| 1700 } | |
| 1701 rl->rl_vlc[q][i].len= len; | |
| 1702 rl->rl_vlc[q][i].level= level; | |
| 1703 rl->rl_vlc[q][i].run= run; | |
| 1704 } | |
| 1705 } | |
| 0 | 1706 } |
| 1707 | |
| 1708 /* init vlcs */ | |
| 1709 | |
| 1710 /* XXX: find a better solution to handle static init */ | |
| 1711 void h263_decode_init_vlc(MpegEncContext *s) | |
| 1712 { | |
| 1713 static int done = 0; | |
| 1714 | |
| 1715 if (!done) { | |
| 1716 done = 1; | |
| 1717 | |
| 544 | 1718 init_vlc(&intra_MCBPC_vlc, INTRA_MCBPC_VLC_BITS, 8, |
| 0 | 1719 intra_MCBPC_bits, 1, 1, |
| 1720 intra_MCBPC_code, 1, 1); | |
| 544 | 1721 init_vlc(&inter_MCBPC_vlc, INTER_MCBPC_VLC_BITS, 25, |
| 0 | 1722 inter_MCBPC_bits, 1, 1, |
| 1723 inter_MCBPC_code, 1, 1); | |
| 544 | 1724 init_vlc(&cbpy_vlc, CBPY_VLC_BITS, 16, |
| 0 | 1725 &cbpy_tab[0][1], 2, 1, |
| 1726 &cbpy_tab[0][0], 2, 1); | |
| 544 | 1727 init_vlc(&mv_vlc, MV_VLC_BITS, 33, |
| 0 | 1728 &mvtab[0][1], 2, 1, |
| 1729 &mvtab[0][0], 2, 1); | |
| 1730 init_rl(&rl_inter); | |
| 1731 init_rl(&rl_intra); | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
1732 init_rl(&rl_intra_aic); |
| 0 | 1733 init_vlc_rl(&rl_inter); |
| 1734 init_vlc_rl(&rl_intra); | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
1735 init_vlc_rl(&rl_intra_aic); |
| 549 | 1736 init_vlc(&dc_lum, DC_VLC_BITS, 10 /* 13 */, |
| 0 | 1737 &DCtab_lum[0][1], 2, 1, |
| 1738 &DCtab_lum[0][0], 2, 1); | |
| 549 | 1739 init_vlc(&dc_chrom, DC_VLC_BITS, 10 /* 13 */, |
| 0 | 1740 &DCtab_chrom[0][1], 2, 1, |
| 1741 &DCtab_chrom[0][0], 2, 1); | |
| 544 | 1742 init_vlc(&sprite_trajectory, SPRITE_TRAJ_VLC_BITS, 15, |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1743 &sprite_trajectory_tab[0][1], 4, 2, |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1744 &sprite_trajectory_tab[0][0], 4, 2); |
| 544 | 1745 init_vlc(&mb_type_b_vlc, MB_TYPE_B_VLC_BITS, 4, |
| 262 | 1746 &mb_type_b_tab[0][1], 2, 1, |
| 1747 &mb_type_b_tab[0][0], 2, 1); | |
| 0 | 1748 } |
| 1749 } | |
| 1750 | |
| 162 | 1751 int h263_decode_gob_header(MpegEncContext *s) |
| 1752 { | |
| 1753 unsigned int val, gfid; | |
| 1754 | |
| 1755 /* Check for GOB Start Code */ | |
| 1756 val = show_bits(&s->gb, 16); | |
| 1757 if (val == 0) { | |
| 1758 /* We have a GBSC probably with GSTUFF */ | |
| 1759 skip_bits(&s->gb, 16); /* Drop the zeros */ | |
| 1760 while (get_bits1(&s->gb) == 0); /* Seek the '1' bit */ | |
| 1761 #ifdef DEBUG | |
| 1762 fprintf(stderr,"\nGOB Start Code at MB %d\n", (s->mb_y * s->mb_width) + s->mb_x); | |
| 1763 #endif | |
| 1764 s->gob_number = get_bits(&s->gb, 5); /* GN */ | |
| 1765 gfid = get_bits(&s->gb, 2); /* GFID */ | |
| 1766 s->qscale = get_bits(&s->gb, 5); /* GQUANT */ | |
| 1767 #ifdef DEBUG | |
|
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
1768 fprintf(stderr, "\nGN: %u GFID: %u Quant: %u\n", s->gob_number, gfid, s->qscale); |
| 162 | 1769 #endif |
| 1770 return 1; | |
| 1771 } | |
| 1772 return 0; | |
| 1773 | |
| 1774 } | |
| 1775 | |
| 290 | 1776 static inline void memsetw(short *tab, int val, int n) |
| 1777 { | |
| 1778 int i; | |
| 1779 for(i=0;i<n;i++) | |
| 1780 tab[i] = val; | |
| 1781 } | |
| 1782 | |
| 453 | 1783 void ff_mpeg4_init_partitions(MpegEncContext *s) |
| 1784 { | |
| 1785 init_put_bits(&s->tex_pb, s->tex_pb_buffer, PB_BUFFER_SIZE, NULL, NULL); | |
| 1786 init_put_bits(&s->pb2 , s->pb2_buffer , PB_BUFFER_SIZE, NULL, NULL); | |
| 1787 } | |
| 1788 | |
| 1789 void ff_mpeg4_merge_partitions(MpegEncContext *s) | |
| 290 | 1790 { |
| 453 | 1791 const int pb2_len = get_bit_count(&s->pb2 ); |
| 1792 const int tex_pb_len= get_bit_count(&s->tex_pb); | |
| 1793 const int bits= get_bit_count(&s->pb); | |
| 1794 | |
| 1795 if(s->pict_type==I_TYPE){ | |
| 1796 put_bits(&s->pb, 19, DC_MARKER); | |
| 1797 s->misc_bits+=19 + pb2_len + bits - s->last_bits; | |
| 1798 s->i_tex_bits+= tex_pb_len; | |
| 1799 }else{ | |
| 1800 put_bits(&s->pb, 17, MOTION_MARKER); | |
| 1801 s->misc_bits+=17 + pb2_len;; | |
| 1802 s->mv_bits+= bits - s->last_bits; | |
| 1803 s->p_tex_bits+= tex_pb_len; | |
| 1804 } | |
| 1805 | |
| 1806 flush_put_bits(&s->pb2); | |
| 1807 flush_put_bits(&s->tex_pb); | |
| 1808 | |
| 1809 ff_copy_bits(&s->pb, s->pb2_buffer , pb2_len); | |
| 1810 ff_copy_bits(&s->pb, s->tex_pb_buffer, tex_pb_len); | |
| 1811 s->last_bits= get_bit_count(&s->pb); | |
| 1812 } | |
| 1813 | |
| 1814 void ff_mpeg4_encode_video_packet_header(MpegEncContext *s) | |
| 1815 { | |
| 1816 int mb_num_bits= av_log2(s->mb_num - 1) + 1; | |
| 1817 | |
| 1818 ff_mpeg4_stuffing(&s->pb); | |
| 1819 if(s->pict_type==I_TYPE) | |
| 1820 put_bits(&s->pb, 16, 0); | |
| 1821 else if(s->pict_type==B_TYPE) | |
| 1822 put_bits(&s->pb, MAX(MAX(s->f_code, s->b_code)+15, 17), 0); | |
| 1823 else /* S/P_TYPE */ | |
| 1824 put_bits(&s->pb, s->f_code+15, 0); | |
| 1825 put_bits(&s->pb, 1, 1); | |
| 1826 | |
| 1827 put_bits(&s->pb, mb_num_bits, s->mb_x + s->mb_y*s->mb_width); | |
| 1828 put_bits(&s->pb, 5, s->qscale); | |
| 1829 put_bits(&s->pb, 1, 0); /* no HEC */ | |
| 1830 } | |
| 1831 | |
| 1832 /** | |
| 1833 * decodes the next video packet and sets s->next_qscale | |
| 1834 * returns mb_num of the next packet or <0 if something went wrong | |
| 1835 */ | |
| 1836 static int decode_video_packet_header(MpegEncContext *s, GetBitContext *gb) | |
| 1837 { | |
| 1838 int bits; | |
| 290 | 1839 int mb_num_bits= av_log2(s->mb_num - 1) + 1; |
| 1840 int header_extension=0, mb_num; | |
| 453 | 1841 //printf("%X\n", show_bits(&gb, 24)); |
| 1842 //printf("parse_video_packet_header\n"); | |
| 1843 // if(show_aligned_bits(gb, 1, 16) != 0) return -1; | |
| 1844 | |
| 1845 /* is there enough space left for a video packet + header */ | |
| 1846 if( get_bits_count(gb) > gb->size*8-20) return -1; | |
| 1847 | |
| 290 | 1848 //printf("resync at %d %d\n", s->mb_x, s->mb_y); |
| 453 | 1849 // skip_bits(gb, 1); |
| 1850 // align_get_bits(gb); | |
| 1851 if(get_bits(gb, 16)!=0){ | |
| 1852 printf("internal error while decoding video packet header\n"); | |
| 1853 } | |
| 1854 | |
| 1855 //printf("%X\n", show_bits(gb, 24)); | |
| 1856 bits=0; | |
| 1857 while(!get_bits1(gb) && bits<30) bits++; | |
| 1858 if((s->pict_type == P_TYPE || s->pict_type == S_TYPE) && bits != s->f_code-1){ | |
| 1859 printf("marker does not match f_code (is: %d should be: %d pos: %d end %d x: %d y: %d)\n", | |
| 1860 bits+1, s->f_code, get_bits_count(gb), gb->size*8, s->mb_x, s->mb_y); | |
| 1861 return -1; | |
| 1862 }else if(s->pict_type == I_TYPE && bits != 0){ | |
| 1863 printf("marker too long\n"); | |
| 1864 return -1; | |
| 1865 }else if(s->pict_type == B_TYPE && bits != MAX(MAX(s->f_code, s->b_code)-1, 1)){ | |
| 1866 printf("marker does not match f/b_code\n"); | |
| 1867 return -1; | |
| 1868 } | |
| 1869 //printf("%X\n", show_bits(gb, 24)); | |
| 1870 | |
| 1871 if(s->shape != RECT_SHAPE){ | |
| 1872 header_extension= get_bits1(gb); | |
| 1873 //FIXME more stuff here | |
| 1874 } | |
| 1875 | |
| 1876 mb_num= get_bits(gb, mb_num_bits); | |
| 1877 if(mb_num < s->mb_x + s->mb_y*s->mb_width || mb_num>=s->mb_num){ | |
| 1878 fprintf(stderr, "illegal mb_num in video packet (%d %d) \n", mb_num, s->mb_x + s->mb_y*s->mb_width); | |
| 1879 return -1; | |
| 1880 } | |
| 1881 | |
| 1882 if(s->shape != BIN_ONLY_SHAPE){ | |
| 1883 s->next_resync_qscale= get_bits(gb, 5); | |
| 1884 if(s->next_resync_qscale==0) | |
| 1885 s->next_resync_qscale= s->qscale; | |
| 1886 if(s->next_resync_qscale==0){ | |
| 1887 fprintf(stderr, "qscale==0\n"); | |
| 290 | 1888 return -1; |
| 1889 } | |
| 1890 } | |
| 1891 | |
| 1892 if(s->shape == RECT_SHAPE){ | |
| 453 | 1893 header_extension= get_bits1(gb); |
| 290 | 1894 } |
| 1895 if(header_extension){ | |
| 453 | 1896 int time_increment; |
| 290 | 1897 int time_incr=0; |
| 453 | 1898 printf("header extension not supported\n"); |
| 1899 return -1; | |
| 1900 | |
| 1901 while (get_bits1(gb) != 0) | |
| 290 | 1902 time_incr++; |
| 1903 | |
| 453 | 1904 check_marker(gb, "before time_increment in video packed header"); |
| 1905 time_increment= get_bits(gb, s->time_increment_bits); | |
| 290 | 1906 if(s->pict_type!=B_TYPE){ |
| 324 | 1907 s->last_time_base= s->time_base; |
| 290 | 1908 s->time_base+= time_incr; |
| 324 | 1909 s->time= s->time_base*s->time_increment_resolution + time_increment; |
| 1910 s->pp_time= s->time - s->last_non_b_time; | |
| 1911 s->last_non_b_time= s->time; | |
| 290 | 1912 }else{ |
| 324 | 1913 s->time= (s->last_time_base + time_incr)*s->time_increment_resolution + time_increment; |
| 1914 s->bp_time= s->last_non_b_time - s->time; | |
| 290 | 1915 } |
| 453 | 1916 check_marker(gb, "before vop_coding_type in video packed header"); |
| 290 | 1917 |
| 453 | 1918 skip_bits(gb, 2); /* vop coding type */ |
| 290 | 1919 //FIXME not rect stuff here |
| 1920 | |
| 1921 if(s->shape != BIN_ONLY_SHAPE){ | |
| 453 | 1922 skip_bits(gb, 3); /* intra dc vlc threshold */ |
| 290 | 1923 |
| 1924 if(s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE && s->num_sprite_warping_points){ | |
| 1925 mpeg4_decode_sprite_trajectory(s); | |
| 1926 } | |
| 1927 | |
| 1928 //FIXME reduced res stuff here | |
| 1929 | |
| 1930 if (s->pict_type != I_TYPE) { | |
| 453 | 1931 s->f_code = get_bits(gb, 3); /* fcode_for */ |
| 290 | 1932 if(s->f_code==0){ |
| 1933 printf("Error, video packet header damaged or not MPEG4 header (f_code=0)\n"); | |
| 1934 return -1; // makes no sense to continue, as the MV decoding will break very quickly | |
| 1935 } | |
| 1936 } | |
| 1937 if (s->pict_type == B_TYPE) { | |
| 453 | 1938 s->b_code = get_bits(gb, 3); |
| 290 | 1939 } |
| 1940 } | |
| 1941 } | |
| 1942 //FIXME new-pred stuff | |
| 453 | 1943 |
| 1944 //printf("parse ok %d %d %d %d\n", mb_num, s->mb_x + s->mb_y*s->mb_width, get_bits_count(gb), get_bits_count(&s->gb)); | |
| 1945 | |
| 1946 return mb_num; | |
| 1947 } | |
| 1948 | |
| 1949 void ff_mpeg4_clean_buffers(MpegEncContext *s) | |
| 1950 { | |
| 1951 int c_wrap, c_xy, l_wrap, l_xy; | |
| 290 | 1952 |
| 1953 l_wrap= s->block_wrap[0]; | |
| 453 | 1954 l_xy= s->mb_y*l_wrap*2 + s->mb_x*2; |
| 290 | 1955 c_wrap= s->block_wrap[4]; |
| 453 | 1956 c_xy= s->mb_y*c_wrap + s->mb_x; |
| 290 | 1957 |
| 1958 /* clean DC */ | |
| 453 | 1959 memsetw(s->dc_val[0] + l_xy, 1024, l_wrap*2+1); |
| 1960 memsetw(s->dc_val[1] + c_xy, 1024, c_wrap+1); | |
| 1961 memsetw(s->dc_val[2] + c_xy, 1024, c_wrap+1); | |
| 290 | 1962 |
| 1963 /* clean AC */ | |
| 453 | 1964 memset(s->ac_val[0] + l_xy, 0, (l_wrap*2+1)*16*sizeof(INT16)); |
| 1965 memset(s->ac_val[1] + c_xy, 0, (c_wrap +1)*16*sizeof(INT16)); | |
| 1966 memset(s->ac_val[2] + c_xy, 0, (c_wrap +1)*16*sizeof(INT16)); | |
| 290 | 1967 |
| 1968 /* clean MV */ | |
| 453 | 1969 // we cant clear the MVs as they might be needed by a b frame |
| 1970 // memset(s->motion_val + l_xy, 0, (l_wrap*2+1)*2*sizeof(INT16)); | |
| 290 | 1971 // memset(s->motion_val, 0, 2*sizeof(INT16)*(2 + s->mb_width*2)*(2 + s->mb_height*2)); |
| 453 | 1972 s->last_mv[0][0][0]= |
| 1973 s->last_mv[0][0][1]= | |
| 1974 s->last_mv[1][0][0]= | |
| 1975 s->last_mv[1][0][1]= 0; | |
| 1976 } | |
| 1977 | |
| 1978 /* searches for the next resync marker clears ac,dc,mc, and sets s->next_resync_gb, s->mb_num_left */ | |
| 1979 int ff_mpeg4_resync(MpegEncContext *s) | |
| 1980 { | |
| 1981 GetBitContext gb; | |
| 1982 | |
| 1983 /* search & parse next resync marker */ | |
| 1984 | |
| 1985 gb= s->next_resync_gb; | |
| 1986 align_get_bits(&gb); | |
| 1987 //printf("mpeg4_resync %d next:%d \n", get_bits_count(&gb), get_bits_count(&s->next_resync_gb)); | |
| 1988 for(;;) { | |
| 1989 int v= show_bits(&gb, 24); | |
| 1990 if( get_bits_count(&gb) >= gb.size*8-24 || v == 1 /* start-code */){ | |
| 1991 s->mb_num_left= s->mb_num - s->mb_x - s->mb_y*s->mb_width; | |
| 1992 //printf("mpeg4_resync end\n"); | |
| 1993 s->gb= s->next_resync_gb; //continue at the next resync marker | |
| 1994 return -1; | |
| 1995 }else if(v>>8 == 0){ | |
| 1996 int next; | |
| 1997 s->next_resync_pos= get_bits_count(&gb); | |
| 1998 | |
| 1999 next= decode_video_packet_header(s, &gb); | |
| 2000 if(next >= 0){ | |
| 2001 s->mb_num_left= next - s->mb_x - s->mb_y*s->mb_width; | |
| 2002 break; | |
| 2003 } | |
| 2004 | |
| 2005 align_get_bits(&gb); | |
| 2006 } | |
| 2007 skip_bits(&gb, 8); | |
| 2008 } | |
| 2009 s->next_resync_gb=gb; | |
| 2010 | |
| 2011 return 0; | |
| 2012 } | |
| 2013 | |
| 2014 static inline void init_block_index(MpegEncContext *s) | |
| 2015 { | |
| 2016 s->block_index[0]= s->block_wrap[0]*(s->mb_y*2 + 1) - 1 + s->mb_x*2; | |
| 2017 s->block_index[1]= s->block_wrap[0]*(s->mb_y*2 + 1) + s->mb_x*2; | |
| 2018 s->block_index[2]= s->block_wrap[0]*(s->mb_y*2 + 2) - 1 + s->mb_x*2; | |
| 2019 s->block_index[3]= s->block_wrap[0]*(s->mb_y*2 + 2) + s->mb_x*2; | |
| 2020 s->block_index[4]= s->block_wrap[4]*(s->mb_y + 1) + s->block_wrap[0]*(s->mb_height*2 + 2) + s->mb_x; | |
| 2021 s->block_index[5]= s->block_wrap[4]*(s->mb_y + 1 + s->mb_height + 2) + s->block_wrap[0]*(s->mb_height*2 + 2) + s->mb_x; | |
| 2022 } | |
| 2023 | |
| 2024 static inline void update_block_index(MpegEncContext *s) | |
| 2025 { | |
| 2026 s->block_index[0]+=2; | |
| 2027 s->block_index[1]+=2; | |
| 2028 s->block_index[2]+=2; | |
| 2029 s->block_index[3]+=2; | |
| 2030 s->block_index[4]++; | |
| 2031 s->block_index[5]++; | |
| 2032 } | |
| 2033 | |
| 2034 /** | |
| 2035 * decodes the first & second partition | |
| 2036 * returns error type or 0 if no error | |
| 2037 */ | |
| 2038 int ff_mpeg4_decode_partitions(MpegEncContext *s) | |
| 2039 { | |
| 2040 static const INT8 quant_tab[4] = { -1, -2, 1, 2 }; | |
| 2041 int mb_num; | |
| 2042 | |
| 2043 /* decode first partition */ | |
| 2044 mb_num=0; | |
| 290 | 2045 s->first_slice_line=1; |
| 453 | 2046 s->mb_x= s->resync_mb_x; |
| 2047 for(s->mb_y= s->resync_mb_y; mb_num < s->mb_num_left; s->mb_y++){ | |
| 2048 init_block_index(s); | |
| 2049 for(; mb_num < s->mb_num_left && s->mb_x<s->mb_width; s->mb_x++){ | |
| 2050 const int xy= s->mb_x + s->mb_y*s->mb_width; | |
| 2051 int cbpc; | |
| 2052 int dir=0; | |
| 2053 | |
| 2054 mb_num++; | |
| 2055 update_block_index(s); | |
| 2056 if(s->mb_x == s->resync_mb_x && s->mb_y == s->resync_mb_y+1) | |
| 2057 s->first_slice_line=0; | |
| 2058 | |
| 2059 if(s->mb_x==0) PRINT_MB_TYPE("\n"); | |
| 2060 | |
| 2061 if(s->pict_type==I_TYPE){ | |
| 2062 int i; | |
| 2063 | |
| 2064 PRINT_MB_TYPE("I"); | |
| 544 | 2065 cbpc = get_vlc2(&s->gb, intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 1); |
| 453 | 2066 if (cbpc < 0){ |
| 2067 fprintf(stderr, "cbpc corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2068 return DECODING_DESYNC; | |
| 2069 } | |
| 2070 s->cbp_table[xy]= cbpc & 3; | |
| 2071 s->mb_type[xy]= MB_TYPE_INTRA; | |
| 2072 s->mb_intra = 1; | |
| 2073 | |
| 2074 if(cbpc & 4) { | |
| 2075 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2076 if (s->qscale < 1) | |
| 2077 s->qscale = 1; | |
| 2078 else if (s->qscale > 31) | |
| 2079 s->qscale = 31; | |
| 2080 h263_dc_scale(s); | |
| 2081 } | |
| 2082 s->qscale_table[xy]= s->qscale; | |
| 2083 | |
| 2084 s->mbintra_table[xy]= 1; | |
| 2085 for(i=0; i<6; i++){ | |
| 2086 int dc_pred_dir; | |
| 2087 int dc= mpeg4_decode_dc(s, i, &dc_pred_dir); | |
| 2088 if(dc < 0){ | |
| 2089 fprintf(stderr, "DC corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2090 return DECODING_DESYNC; | |
| 2091 } | |
| 2092 dir<<=1; | |
| 2093 if(dc_pred_dir) dir|=1; | |
| 2094 } | |
| 2095 s->pred_dir_table[xy]= dir; | |
| 2096 }else{ /* P/S_TYPE */ | |
| 2097 int mx, my, pred_x, pred_y; | |
| 2098 INT16 * const mot_val= s->motion_val[s->block_index[0]]; | |
| 2099 const int stride= s->block_wrap[0]*2; | |
| 2100 | |
| 2101 if(get_bits1(&s->gb)){ | |
| 2102 /* skip mb */ | |
| 2103 s->mb_type[xy]= MB_TYPE_SKIPED; | |
| 2104 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE){ | |
| 2105 const int a= s->sprite_warping_accuracy; | |
| 2106 PRINT_MB_TYPE("G"); | |
| 2107 if(s->divx_version==500 && s->divx_build==413){ | |
| 2108 mx = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
| 2109 my = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
| 2110 }else{ | |
| 2111 mx = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2112 my = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2113 s->mb_type[xy]= MB_TYPE_GMC | MB_TYPE_SKIPED; | |
| 2114 } | |
| 2115 }else{ | |
| 2116 PRINT_MB_TYPE("S"); | |
| 2117 mx = 0; | |
| 2118 my = 0; | |
| 2119 } | |
| 2120 mot_val[0 ]= mot_val[2 ]= | |
| 2121 mot_val[0+stride]= mot_val[2+stride]= mx; | |
| 2122 mot_val[1 ]= mot_val[3 ]= | |
| 2123 mot_val[1+stride]= mot_val[3+stride]= my; | |
| 2124 | |
| 2125 if(s->mbintra_table[xy]) | |
| 2126 ff_clean_intra_table_entries(s); | |
| 2127 | |
| 2128 continue; | |
| 2129 } | |
| 544 | 2130 cbpc = get_vlc2(&s->gb, inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); |
| 453 | 2131 if (cbpc < 0){ |
| 2132 fprintf(stderr, "cbpc corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2133 return DECODING_DESYNC; | |
| 2134 } | |
| 2135 if (cbpc > 20) | |
| 2136 cbpc+=3; | |
| 2137 else if (cbpc == 20) | |
| 2138 fprintf(stderr, "Stuffing !"); | |
| 2139 s->cbp_table[xy]= cbpc&(8+3); //8 is dquant | |
| 2140 | |
| 2141 s->mb_intra = ((cbpc & 4) != 0); | |
| 2142 | |
| 2143 if(s->mb_intra){ | |
| 2144 PRINT_MB_TYPE("I"); | |
| 2145 s->mbintra_table[xy]= 1; | |
| 2146 s->mb_type[xy]= MB_TYPE_INTRA; | |
| 2147 mot_val[0 ]= mot_val[2 ]= | |
| 2148 mot_val[0+stride]= mot_val[2+stride]= 0; | |
| 2149 mot_val[1 ]= mot_val[3 ]= | |
| 2150 mot_val[1+stride]= mot_val[3+stride]= 0; | |
| 2151 }else{ | |
| 2152 if(s->mbintra_table[xy]) | |
| 2153 ff_clean_intra_table_entries(s); | |
| 2154 | |
| 2155 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE && (cbpc & 16) == 0) | |
| 2156 s->mcsel= get_bits1(&s->gb); | |
| 2157 else s->mcsel= 0; | |
| 2158 | |
| 2159 if ((cbpc & 16) == 0) { | |
| 2160 PRINT_MB_TYPE("P"); | |
| 2161 /* 16x16 motion prediction */ | |
| 2162 s->mb_type[xy]= MB_TYPE_INTER; | |
| 2163 | |
| 2164 h263_pred_motion(s, 0, &pred_x, &pred_y); | |
| 2165 if(!s->mcsel) | |
| 2166 mx = h263_decode_motion(s, pred_x, s->f_code); | |
| 2167 else { | |
| 2168 const int a= s->sprite_warping_accuracy; | |
| 2169 if(s->divx_version==500 && s->divx_build==413){ | |
| 2170 mx = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
| 2171 }else{ | |
| 2172 mx = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2173 } | |
| 2174 } | |
| 2175 if (mx >= 0xffff) | |
| 2176 return DECODING_DESYNC; | |
| 2177 | |
| 2178 if(!s->mcsel) | |
| 2179 my = h263_decode_motion(s, pred_y, s->f_code); | |
| 2180 else{ | |
| 2181 const int a= s->sprite_warping_accuracy; | |
| 2182 if(s->divx_version==500 && s->divx_build==413){ | |
| 2183 my = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
| 2184 }else{ | |
| 2185 my = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2186 } | |
| 2187 } | |
| 2188 if (my >= 0xffff) | |
| 2189 return DECODING_DESYNC; | |
| 2190 mot_val[0 ]= mot_val[2 ] = | |
| 2191 mot_val[0+stride]= mot_val[2+stride]= mx; | |
| 2192 mot_val[1 ]= mot_val[3 ]= | |
| 2193 mot_val[1+stride]= mot_val[3+stride]= my; | |
| 2194 } else { | |
| 2195 int i; | |
| 2196 PRINT_MB_TYPE("4"); | |
| 2197 s->mb_type[xy]= MB_TYPE_INTER4V; | |
| 2198 for(i=0;i<4;i++) { | |
| 2199 INT16 *mot_val= h263_pred_motion(s, i, &pred_x, &pred_y); | |
| 2200 mx = h263_decode_motion(s, pred_x, s->f_code); | |
| 2201 if (mx >= 0xffff) | |
| 2202 return DECODING_DESYNC; | |
| 2203 | |
| 2204 my = h263_decode_motion(s, pred_y, s->f_code); | |
| 2205 if (my >= 0xffff) | |
| 2206 return DECODING_DESYNC; | |
| 2207 mot_val[0] = mx; | |
| 2208 mot_val[1] = my; | |
| 2209 } | |
| 2210 } | |
| 2211 } | |
| 2212 } | |
| 2213 } | |
| 2214 s->mb_x= 0; | |
| 2215 } | |
| 2216 | |
| 2217 if (s->pict_type==I_TYPE && get_bits(&s->gb, 19)!=DC_MARKER ) s->decoding_error= DECODING_DESYNC; | |
| 2218 else if(s->pict_type!=I_TYPE && get_bits(&s->gb, 17)!=MOTION_MARKER) s->decoding_error= DECODING_DESYNC; | |
| 2219 if(s->decoding_error== DECODING_DESYNC){ | |
| 2220 fprintf(stderr, "marker missing after first partition at %d %d\n", s->mb_x, s->mb_y); | |
| 2221 return DECODING_DESYNC; | |
| 2222 } | |
| 2223 | |
| 2224 /* decode second partition */ | |
| 2225 mb_num=0; | |
| 2226 s->mb_x= s->resync_mb_x; | |
| 2227 for(s->mb_y= s->resync_mb_y; mb_num < s->mb_num_left; s->mb_y++){ | |
| 2228 init_block_index(s); | |
| 2229 for(; mb_num < s->mb_num_left && s->mb_x<s->mb_width; s->mb_x++){ | |
| 2230 const int xy= s->mb_x + s->mb_y*s->mb_width; | |
| 2231 | |
| 2232 mb_num++; | |
| 2233 update_block_index(s); | |
| 2234 | |
| 2235 if(s->pict_type==I_TYPE){ | |
| 2236 int ac_pred= get_bits1(&s->gb); | |
| 544 | 2237 int cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2238 if(cbpy<0){ |
| 2239 fprintf(stderr, "cbpy corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2240 return DECODING_AC_LOST; | |
| 2241 } | |
| 2242 | |
| 2243 s->cbp_table[xy]|= cbpy<<2; | |
| 2244 s->pred_dir_table[xy]|= ac_pred<<7; | |
| 2245 }else{ /* P || S_TYPE */ | |
| 2246 if(s->mb_type[xy]&MB_TYPE_INTRA){ | |
| 2247 int dir=0,i; | |
| 2248 int ac_pred = get_bits1(&s->gb); | |
| 544 | 2249 int cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2250 |
| 2251 if(cbpy<0){ | |
| 2252 fprintf(stderr, "I cbpy corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2253 return DECODING_ACDC_LOST; | |
| 2254 } | |
| 2255 | |
| 2256 if(s->cbp_table[xy] & 8) { | |
| 2257 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2258 if (s->qscale < 1) | |
| 2259 s->qscale = 1; | |
| 2260 else if (s->qscale > 31) | |
| 2261 s->qscale = 31; | |
| 2262 h263_dc_scale(s); | |
| 2263 } | |
| 2264 s->qscale_table[xy]= s->qscale; | |
| 2265 | |
| 2266 for(i=0; i<6; i++){ | |
| 2267 int dc_pred_dir; | |
| 2268 int dc= mpeg4_decode_dc(s, i, &dc_pred_dir); | |
| 2269 if(dc < 0){ | |
| 2270 fprintf(stderr, "DC corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2271 return DECODING_ACDC_LOST; | |
| 2272 } | |
| 2273 dir<<=1; | |
| 2274 if(dc_pred_dir) dir|=1; | |
| 2275 } | |
| 2276 s->cbp_table[xy]&= 3; //remove dquant | |
| 2277 s->cbp_table[xy]|= cbpy<<2; | |
| 2278 s->pred_dir_table[xy]= dir | (ac_pred<<7); | |
| 2279 }else if(s->mb_type[xy]&MB_TYPE_SKIPED){ | |
| 2280 s->qscale_table[xy]= s->qscale; | |
| 2281 s->cbp_table[xy]= 0; | |
| 2282 }else{ | |
| 544 | 2283 int cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2284 |
| 2285 if(cbpy<0){ | |
| 2286 fprintf(stderr, "P cbpy corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2287 return DECODING_ACDC_LOST; | |
| 2288 } | |
| 2289 | |
| 2290 if(s->cbp_table[xy] & 8) { | |
| 2291 //fprintf(stderr, "dquant\n"); | |
| 2292 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2293 if (s->qscale < 1) | |
| 2294 s->qscale = 1; | |
| 2295 else if (s->qscale > 31) | |
| 2296 s->qscale = 31; | |
| 2297 h263_dc_scale(s); | |
| 2298 } | |
| 2299 s->qscale_table[xy]= s->qscale; | |
| 2300 | |
| 2301 s->cbp_table[xy]&= 3; //remove dquant | |
| 2302 s->cbp_table[xy]|= (cbpy^0xf)<<2; | |
| 2303 } | |
| 2304 } | |
| 2305 } | |
| 2306 s->mb_x= 0; | |
| 2307 } | |
| 2308 | |
| 2309 | |
| 2310 return 0; | |
| 2311 } | |
| 2312 | |
| 2313 static int mpeg4_decode_partitioned_mb(MpegEncContext *s, | |
| 2314 DCTELEM block[6][64]) | |
| 2315 { | |
| 2316 int cbp, mb_type; | |
| 2317 const int xy= s->mb_x + s->mb_y*s->mb_width; | |
| 2318 | |
| 2319 if(s->mb_x==s->resync_mb_x && s->mb_y==s->resync_mb_y){ //Note resync_mb_{x,y}==0 at the start | |
| 2320 int i; | |
| 2321 int block_index_backup[6]; | |
| 2322 int qscale= s->qscale; | |
| 2323 | |
| 2324 for(i=0; i<6; i++) block_index_backup[i]= s->block_index[i]; | |
| 2325 | |
| 2326 s->decoding_error= ff_mpeg4_decode_partitions(s); | |
| 2327 | |
| 2328 for(i=0; i<6; i++) s->block_index[i]= block_index_backup[i]; | |
| 2329 s->first_slice_line=1; | |
| 2330 s->mb_x= s->resync_mb_x; | |
| 2331 s->mb_y= s->resync_mb_y; | |
| 2332 s->qscale= qscale; | |
| 2333 h263_dc_scale(s); | |
| 2334 | |
| 2335 if(s->decoding_error==DECODING_DESYNC) return -1; | |
| 2336 } | |
| 2337 | |
| 2338 mb_type= s->mb_type[xy]; | |
| 2339 if(s->decoding_error) | |
| 2340 cbp=0; | |
| 2341 else | |
| 2342 cbp = s->cbp_table[xy]; | |
| 2343 | |
| 2344 if(s->decoding_error!=DECODING_ACDC_LOST && s->qscale_table[xy] != s->qscale){ | |
| 2345 s->qscale= s->qscale_table[xy]; | |
| 2346 h263_dc_scale(s); | |
| 2347 } | |
| 2348 | |
| 2349 if (s->pict_type == P_TYPE || s->pict_type==S_TYPE) { | |
| 2350 int i; | |
| 2351 for(i=0; i<4; i++){ | |
| 2352 s->mv[0][i][0] = s->motion_val[ s->block_index[i] ][0]; | |
| 2353 s->mv[0][i][1] = s->motion_val[ s->block_index[i] ][1]; | |
| 2354 } | |
| 2355 s->mb_intra = mb_type&MB_TYPE_INTRA; | |
| 2356 | |
| 2357 if (mb_type&MB_TYPE_SKIPED) { | |
| 2358 /* skip mb */ | |
| 2359 for(i=0;i<6;i++) | |
| 2360 s->block_last_index[i] = -1; | |
| 2361 s->mv_dir = MV_DIR_FORWARD; | |
| 2362 s->mv_type = MV_TYPE_16X16; | |
| 2363 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE){ | |
| 2364 s->mcsel=1; | |
| 2365 s->mb_skiped = 0; | |
| 2366 }else{ | |
| 2367 s->mcsel=0; | |
| 2368 s->mb_skiped = 1; | |
| 2369 } | |
| 2370 return 0; | |
| 2371 }else if(s->mb_intra && s->decoding_error!=DECODING_ACDC_LOST){ | |
| 2372 s->ac_pred = s->pred_dir_table[xy]>>7; | |
| 2373 | |
| 2374 /* decode each block */ | |
| 2375 for (i = 0; i < 6; i++) { | |
| 575 | 2376 int ret= mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 1); |
| 453 | 2377 if(ret==DECODING_AC_LOST){ |
| 2378 fprintf(stderr, "texture corrupted at %d %d (trying to continue with mc/dc only)\n", s->mb_x, s->mb_y); | |
| 2379 s->decoding_error=DECODING_AC_LOST; | |
| 2380 cbp=0; | |
| 2381 }else if(ret==DECODING_ACDC_LOST){ | |
| 2382 fprintf(stderr, "dc corrupted at %d %d (trying to continue with mc only)\n", s->mb_x, s->mb_y); | |
| 2383 s->decoding_error=DECODING_ACDC_LOST; | |
| 2384 break; | |
| 2385 } | |
| 2386 } | |
| 2387 }else if(!s->mb_intra){ | |
| 2388 // s->mcsel= 0; //FIXME do we need to init that | |
| 2389 | |
| 2390 s->mv_dir = MV_DIR_FORWARD; | |
| 2391 if (mb_type&MB_TYPE_INTER4V) { | |
| 2392 s->mv_type = MV_TYPE_8X8; | |
| 2393 } else { | |
| 2394 s->mv_type = MV_TYPE_16X16; | |
| 2395 } | |
| 2396 if(s->decoding_error==0 && cbp){ | |
| 2397 /* decode each block */ | |
| 2398 for (i = 0; i < 6; i++) { | |
| 575 | 2399 int ret= mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 0); |
| 453 | 2400 if(ret==DECODING_AC_LOST){ |
| 2401 fprintf(stderr, "texture corrupted at %d %d (trying to continue with mc/dc only)\n", s->mb_x, s->mb_y); | |
| 2402 s->decoding_error=DECODING_AC_LOST; | |
| 2403 break; | |
| 2404 } | |
| 2405 } | |
| 2406 } | |
| 2407 } | |
| 2408 } else { /* I-Frame */ | |
| 2409 int i; | |
| 2410 s->mb_intra = 1; | |
| 2411 s->ac_pred = s->pred_dir_table[xy]>>7; | |
| 2412 | |
| 2413 /* decode each block */ | |
| 2414 for (i = 0; i < 6; i++) { | |
| 575 | 2415 int ret= mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 1); |
| 453 | 2416 if(ret==DECODING_AC_LOST){ |
| 2417 fprintf(stderr, "texture corrupted at %d %d (trying to continue with dc only)\n", s->mb_x, s->mb_y); | |
| 2418 s->decoding_error=DECODING_AC_LOST; | |
| 2419 cbp=0; | |
| 2420 }else if(ret==DECODING_ACDC_LOST){ | |
| 2421 fprintf(stderr, "dc corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2422 return -1; | |
| 2423 } | |
| 2424 } | |
| 2425 } | |
| 290 | 2426 |
| 2427 return 0; | |
| 2428 } | |
| 2429 | |
| 453 | 2430 |
| 0 | 2431 int h263_decode_mb(MpegEncContext *s, |
| 2432 DCTELEM block[6][64]) | |
| 2433 { | |
| 2434 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; | |
| 2435 INT16 *mot_val; | |
| 110 | 2436 static INT8 quant_tab[4] = { -1, -2, 1, 2 }; |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2437 |
| 523 | 2438 if(s->mb_x==0) PRINT_MB_TYPE("\n"); |
| 359 | 2439 |
| 290 | 2440 if(s->resync_marker){ |
| 453 | 2441 if(s->resync_mb_x == s->mb_x && s->resync_mb_y+1 == s->mb_y){ |
| 290 | 2442 s->first_slice_line=0; |
| 2443 } | |
| 2444 } | |
| 2445 | |
| 453 | 2446 if(s->data_partitioning && s->pict_type!=B_TYPE) |
| 2447 return mpeg4_decode_partitioned_mb(s, block); | |
| 2448 | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2449 if (s->pict_type == P_TYPE || s->pict_type==S_TYPE) { |
| 21 | 2450 if (get_bits1(&s->gb)) { |
| 0 | 2451 /* skip mb */ |
| 2452 s->mb_intra = 0; | |
| 2453 for(i=0;i<6;i++) | |
| 2454 s->block_last_index[i] = -1; | |
| 2455 s->mv_dir = MV_DIR_FORWARD; | |
| 2456 s->mv_type = MV_TYPE_16X16; | |
| 255 | 2457 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE){ |
| 2458 const int a= s->sprite_warping_accuracy; | |
| 2459 // int l = (1 << (s->f_code - 1)) * 32; | |
| 359 | 2460 PRINT_MB_TYPE("G"); |
| 255 | 2461 s->mcsel=1; |
| 301 | 2462 if(s->divx_version==500 && s->divx_build==413){ |
| 2463 s->mv[0][0][0] = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
| 2464 s->mv[0][0][1] = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
| 2465 }else{ | |
| 2466 s->mv[0][0][0] = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2467 s->mv[0][0][1] = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2468 } | |
| 255 | 2469 /* if (s->mv[0][0][0] < -l) s->mv[0][0][0]= -l; |
| 2470 else if (s->mv[0][0][0] >= l) s->mv[0][0][0]= l-1; | |
| 2471 if (s->mv[0][0][1] < -l) s->mv[0][0][1]= -l; | |
| 2472 else if (s->mv[0][0][1] >= l) s->mv[0][0][1]= l-1;*/ | |
| 2473 | |
| 2474 s->mb_skiped = 0; | |
| 2475 }else{ | |
| 359 | 2476 PRINT_MB_TYPE("S"); |
| 255 | 2477 s->mcsel=0; |
| 2478 s->mv[0][0][0] = 0; | |
| 2479 s->mv[0][0][1] = 0; | |
| 2480 s->mb_skiped = 1; | |
| 2481 } | |
| 0 | 2482 return 0; |
| 2483 } | |
| 544 | 2484 cbpc = get_vlc2(&s->gb, inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); |
| 144 | 2485 //fprintf(stderr, "\tCBPC: %d", cbpc); |
| 0 | 2486 if (cbpc < 0) |
| 2487 return -1; | |
| 161 | 2488 if (cbpc > 20) |
| 2489 cbpc+=3; | |
| 2490 else if (cbpc == 20) | |
| 2491 fprintf(stderr, "Stuffing !"); | |
| 144 | 2492 |
| 0 | 2493 dquant = cbpc & 8; |
| 2494 s->mb_intra = ((cbpc & 4) != 0); | |
| 262 | 2495 if (s->mb_intra) goto intra; |
| 2496 | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2497 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE && (cbpc & 16) == 0) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2498 s->mcsel= get_bits1(&s->gb); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2499 else s->mcsel= 0; |
| 544 | 2500 cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 0 | 2501 cbp = (cbpc & 3) | ((cbpy ^ 0xf) << 2); |
| 2502 if (dquant) { | |
| 2503 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2504 if (s->qscale < 1) | |
| 2505 s->qscale = 1; | |
| 2506 else if (s->qscale > 31) | |
| 2507 s->qscale = 31; | |
| 290 | 2508 h263_dc_scale(s); |
| 0 | 2509 } |
| 2510 s->mv_dir = MV_DIR_FORWARD; | |
| 2511 if ((cbpc & 16) == 0) { | |
| 359 | 2512 PRINT_MB_TYPE("P"); |
| 0 | 2513 /* 16x16 motion prediction */ |
| 2514 s->mv_type = MV_TYPE_16X16; | |
| 2515 h263_pred_motion(s, 0, &pred_x, &pred_y); | |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
2516 if (s->umvplus_dec) |
| 78 | 2517 mx = h263p_decode_umotion(s, pred_x); |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2518 else if(!s->mcsel) |
| 262 | 2519 mx = h263_decode_motion(s, pred_x, s->f_code); |
| 255 | 2520 else { |
| 2521 const int a= s->sprite_warping_accuracy; | |
| 2522 // int l = (1 << (s->f_code - 1)) * 32; | |
| 301 | 2523 if(s->divx_version==500 && s->divx_build==413){ |
| 2524 mx = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
| 2525 }else{ | |
| 2526 mx = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2527 } | |
| 2528 // if (mx < -l) mx= -l, printf("C"); | |
| 2529 // else if (mx >= l) mx= l-1, printf("C"); | |
| 255 | 2530 } |
| 0 | 2531 if (mx >= 0xffff) |
| 2532 return -1; | |
| 78 | 2533 |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
2534 if (s->umvplus_dec) |
| 78 | 2535 my = h263p_decode_umotion(s, pred_y); |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2536 else if(!s->mcsel) |
| 262 | 2537 my = h263_decode_motion(s, pred_y, s->f_code); |
| 255 | 2538 else{ |
| 2539 const int a= s->sprite_warping_accuracy; | |
| 2540 // int l = (1 << (s->f_code - 1)) * 32; | |
| 301 | 2541 if(s->divx_version==500 && s->divx_build==413){ |
| 2542 my = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
| 2543 }else{ | |
| 2544 my = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2545 } | |
| 2546 // if (my < -l) my= -l, printf("C"); | |
| 2547 // else if (my >= l) my= l-1, printf("C"); | |
| 255 | 2548 } |
| 0 | 2549 if (my >= 0xffff) |
| 2550 return -1; | |
| 2551 s->mv[0][0][0] = mx; | |
| 2552 s->mv[0][0][1] = my; | |
|
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
2553 /*fprintf(stderr, "\n MB %d", (s->mb_y * s->mb_width) + s->mb_x); |
|
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
2554 fprintf(stderr, "\n\tmvx: %d\t\tpredx: %d", mx, pred_x); |
|
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
2555 fprintf(stderr, "\n\tmvy: %d\t\tpredy: %d", my, pred_y);*/ |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
2556 if (s->umvplus_dec && (mx - pred_x) == 1 && (my - pred_y) == 1) |
| 78 | 2557 skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */ |
| 2558 | |
| 0 | 2559 } else { |
| 359 | 2560 PRINT_MB_TYPE("4"); |
| 0 | 2561 s->mv_type = MV_TYPE_8X8; |
| 2562 for(i=0;i<4;i++) { | |
| 2563 mot_val = h263_pred_motion(s, i, &pred_x, &pred_y); | |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
2564 if (s->umvplus_dec) |
| 78 | 2565 mx = h263p_decode_umotion(s, pred_x); |
| 2566 else | |
| 262 | 2567 mx = h263_decode_motion(s, pred_x, s->f_code); |
| 0 | 2568 if (mx >= 0xffff) |
| 2569 return -1; | |
| 78 | 2570 |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
2571 if (s->umvplus_dec) |
| 78 | 2572 my = h263p_decode_umotion(s, pred_y); |
| 2573 else | |
| 262 | 2574 my = h263_decode_motion(s, pred_y, s->f_code); |
| 0 | 2575 if (my >= 0xffff) |
| 2576 return -1; | |
| 2577 s->mv[0][i][0] = mx; | |
| 2578 s->mv[0][i][1] = my; | |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
2579 if (s->umvplus_dec && (mx - pred_x) == 1 && (my - pred_y) == 1) |
| 78 | 2580 skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */ |
| 0 | 2581 mot_val[0] = mx; |
| 2582 mot_val[1] = my; | |
| 2583 } | |
| 2584 } | |
| 262 | 2585 } else if(s->pict_type==B_TYPE) { |
| 2586 int modb1; // first bit of modb | |
| 2587 int modb2; // second bit of modb | |
| 2588 int mb_type; | |
| 324 | 2589 uint16_t time_pp; |
| 2590 uint16_t time_pb; | |
| 262 | 2591 int xy; |
| 2592 | |
| 2593 s->mb_intra = 0; //B-frames never contain intra blocks | |
| 2594 s->mcsel=0; // ... true gmc blocks | |
| 2595 | |
| 2596 if(s->mb_x==0){ | |
| 2597 s->last_mv[0][0][0]= | |
| 2598 s->last_mv[0][0][1]= | |
| 2599 s->last_mv[1][0][0]= | |
| 2600 s->last_mv[1][0][1]= 0; | |
| 2601 } | |
| 2602 | |
| 2603 /* if we skipped it in the future P Frame than skip it now too */ | |
| 2604 s->mb_skiped= s->mbskip_table[s->mb_y * s->mb_width + s->mb_x]; // Note, skiptab=0 if last was GMC | |
| 2605 | |
| 2606 if(s->mb_skiped){ | |
| 2607 /* skip mb */ | |
| 2608 for(i=0;i<6;i++) | |
| 2609 s->block_last_index[i] = -1; | |
| 2610 | |
| 2611 s->mv_dir = MV_DIR_FORWARD; | |
| 2612 s->mv_type = MV_TYPE_16X16; | |
| 2613 s->mv[0][0][0] = 0; | |
| 2614 s->mv[0][0][1] = 0; | |
| 2615 s->mv[1][0][0] = 0; | |
| 2616 s->mv[1][0][1] = 0; | |
| 291 | 2617 //FIXME is this correct? |
| 2618 /* s->last_mv[0][0][0]= | |
| 2619 s->last_mv[0][0][1]=0;*/ | |
| 523 | 2620 PRINT_MB_TYPE("s"); |
| 262 | 2621 return 0; |
| 2622 } | |
| 2623 | |
| 2624 modb1= get_bits1(&s->gb); | |
| 2625 if(modb1==0){ | |
| 2626 modb2= get_bits1(&s->gb); | |
| 544 | 2627 mb_type= get_vlc2(&s->gb, mb_type_b_vlc.table, MB_TYPE_B_VLC_BITS, 1); |
| 262 | 2628 if(modb2==0) cbp= get_bits(&s->gb, 6); |
| 2629 else cbp=0; | |
| 2630 if (mb_type && cbp) { | |
| 2631 if(get_bits1(&s->gb)){ | |
| 2632 s->qscale +=get_bits1(&s->gb)*4 - 2; | |
| 2633 if (s->qscale < 1) | |
| 2634 s->qscale = 1; | |
| 2635 else if (s->qscale > 31) | |
| 2636 s->qscale = 31; | |
| 290 | 2637 h263_dc_scale(s); |
| 262 | 2638 } |
| 2639 } | |
| 2640 }else{ | |
| 2641 mb_type=4; //like 0 but no vectors coded | |
| 2642 cbp=0; | |
| 2643 } | |
| 2644 s->mv_type = MV_TYPE_16X16; // we'll switch to 8x8 only if the last P frame had 8x8 for this MB and mb_type=0 here | |
| 2645 mx=my=0; //for case 4, we could put this to the mb_type=4 but than gcc compains about uninitalized mx/my | |
| 2646 switch(mb_type) | |
| 2647 { | |
| 324 | 2648 case 0: /* direct */ |
| 262 | 2649 mx = h263_decode_motion(s, 0, 1); |
| 2650 my = h263_decode_motion(s, 0, 1); | |
| 324 | 2651 case 4: /* direct with mx=my=0 */ |
| 262 | 2652 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD | MV_DIRECT; |
| 266 | 2653 xy= s->block_index[0]; |
| 324 | 2654 time_pp= s->pp_time; |
| 2655 time_pb= time_pp - s->bp_time; | |
| 262 | 2656 //if(time_pp>3000 )printf("%d %d ", time_pp, time_pb); |
| 2657 //FIXME avoid divides | |
| 2658 s->mv[0][0][0] = s->motion_val[xy][0]*time_pb/time_pp + mx; | |
| 2659 s->mv[0][0][1] = s->motion_val[xy][1]*time_pb/time_pp + my; | |
| 2660 s->mv[1][0][0] = mx ? s->mv[0][0][0] - s->motion_val[xy][0] | |
| 2661 : s->motion_val[xy][0]*(time_pb - time_pp)/time_pp + mx; | |
| 2662 s->mv[1][0][1] = my ? s->mv[0][0][1] - s->motion_val[xy][1] | |
| 2663 : s->motion_val[xy][1]*(time_pb - time_pp)/time_pp + my; | |
| 598 | 2664 if(s->non_b_mv4_table[xy]){ |
| 2665 int i; | |
| 2666 s->mv_type = MV_TYPE_8X8; | |
| 2667 for(i=1; i<4; i++){ | |
| 2668 xy= s->block_index[i]; | |
| 2669 s->mv[0][i][0] = s->motion_val[xy][0]*time_pb/time_pp + mx; | |
| 2670 s->mv[0][i][1] = s->motion_val[xy][1]*time_pb/time_pp + my; | |
| 2671 s->mv[1][i][0] = mx ? s->mv[0][i][0] - s->motion_val[xy][0] | |
| 2672 : s->motion_val[xy][0]*(time_pb - time_pp)/time_pp + mx; | |
| 2673 s->mv[1][i][1] = my ? s->mv[0][i][1] - s->motion_val[xy][1] | |
| 2674 : s->motion_val[xy][1]*(time_pb - time_pp)/time_pp + my; | |
| 2675 } | |
| 2676 PRINT_MB_TYPE("4"); | |
| 2677 }else{ | |
| 2678 PRINT_MB_TYPE(mb_type==4 ? "D" : "S"); | |
| 2679 } | |
| 262 | 2680 /* s->mv[0][0][0] = |
| 2681 s->mv[0][0][1] = | |
| 2682 s->mv[1][0][0] = | |
| 2683 s->mv[1][0][1] = 1000;*/ | |
| 2684 break; | |
| 2685 case 1: | |
| 2686 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD; | |
| 2687 mx = h263_decode_motion(s, s->last_mv[0][0][0], s->f_code); | |
| 2688 my = h263_decode_motion(s, s->last_mv[0][0][1], s->f_code); | |
| 2689 s->last_mv[0][0][0]= s->mv[0][0][0] = mx; | |
| 2690 s->last_mv[0][0][1]= s->mv[0][0][1] = my; | |
| 2691 | |
| 2692 mx = h263_decode_motion(s, s->last_mv[1][0][0], s->b_code); | |
| 2693 my = h263_decode_motion(s, s->last_mv[1][0][1], s->b_code); | |
| 2694 s->last_mv[1][0][0]= s->mv[1][0][0] = mx; | |
| 2695 s->last_mv[1][0][1]= s->mv[1][0][1] = my; | |
| 359 | 2696 PRINT_MB_TYPE("i"); |
| 262 | 2697 break; |
| 2698 case 2: | |
| 2699 s->mv_dir = MV_DIR_BACKWARD; | |
| 2700 mx = h263_decode_motion(s, s->last_mv[1][0][0], s->b_code); | |
| 2701 my = h263_decode_motion(s, s->last_mv[1][0][1], s->b_code); | |
| 2702 s->last_mv[1][0][0]= s->mv[1][0][0] = mx; | |
| 2703 s->last_mv[1][0][1]= s->mv[1][0][1] = my; | |
| 359 | 2704 PRINT_MB_TYPE("B"); |
| 262 | 2705 break; |
| 2706 case 3: | |
| 2707 s->mv_dir = MV_DIR_FORWARD; | |
| 2708 mx = h263_decode_motion(s, s->last_mv[0][0][0], s->f_code); | |
| 2709 my = h263_decode_motion(s, s->last_mv[0][0][1], s->f_code); | |
| 2710 s->last_mv[0][0][0]= s->mv[0][0][0] = mx; | |
| 2711 s->last_mv[0][0][1]= s->mv[0][0][1] = my; | |
| 359 | 2712 PRINT_MB_TYPE("F"); |
| 262 | 2713 break; |
|
364
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
2714 default: |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
2715 printf("illegal MB_type\n"); |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
2716 return -1; |
| 262 | 2717 } |
| 2718 } else { /* I-Frame */ | |
| 544 | 2719 cbpc = get_vlc2(&s->gb, intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 1); |
| 262 | 2720 if (cbpc < 0) |
| 2721 return -1; | |
| 2722 dquant = cbpc & 4; | |
| 2723 s->mb_intra = 1; | |
| 2724 intra: | |
| 0 | 2725 s->ac_pred = 0; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2726 if (s->h263_pred || s->h263_aic) { |
| 21 | 2727 s->ac_pred = get_bits1(&s->gb); |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2728 if (s->ac_pred && s->h263_aic) |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2729 s->h263_aic_dir = get_bits1(&s->gb); |
| 0 | 2730 } |
| 591 | 2731 PRINT_MB_TYPE(s->ac_pred ? "A" : "I"); |
| 2732 | |
| 544 | 2733 cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2734 if(cbpy<0) return -1; |
| 0 | 2735 cbp = (cbpc & 3) | (cbpy << 2); |
| 2736 if (dquant) { | |
| 2737 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2738 if (s->qscale < 1) | |
| 2739 s->qscale = 1; | |
| 2740 else if (s->qscale > 31) | |
| 2741 s->qscale = 31; | |
| 290 | 2742 h263_dc_scale(s); |
| 0 | 2743 } |
| 575 | 2744 |
| 2745 /* decode each block */ | |
| 2746 if (s->h263_pred) { | |
| 2747 for (i = 0; i < 6; i++) { | |
| 2748 if (mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 1) < 0) | |
| 2749 return -1; | |
| 2750 } | |
| 2751 } else { | |
| 2752 for (i = 0; i < 6; i++) { | |
| 2753 if (h263_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1) < 0) | |
| 2754 return -1; | |
| 2755 } | |
| 2756 } | |
| 2757 return 0; | |
| 0 | 2758 } |
| 2759 | |
| 2760 /* decode each block */ | |
| 2761 if (s->h263_pred) { | |
| 575 | 2762 for (i = 0; i < 6; i++) { |
| 2763 if (mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 0) < 0) | |
| 0 | 2764 return -1; |
| 575 | 2765 } |
| 0 | 2766 } else { |
| 575 | 2767 for (i = 0; i < 6; i++) { |
| 2768 if (h263_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1) < 0) | |
| 0 | 2769 return -1; |
| 575 | 2770 } |
| 0 | 2771 } |
| 2772 return 0; | |
| 2773 } | |
| 2774 | |
| 262 | 2775 static int h263_decode_motion(MpegEncContext * s, int pred, int f_code) |
| 0 | 2776 { |
| 2777 int code, val, sign, shift, l, m; | |
| 2778 | |
| 544 | 2779 code = get_vlc2(&s->gb, mv_vlc.table, MV_VLC_BITS, 2); |
| 0 | 2780 if (code < 0) |
| 2781 return 0xffff; | |
| 2782 | |
| 2783 if (code == 0) | |
| 2784 return pred; | |
| 21 | 2785 sign = get_bits1(&s->gb); |
| 262 | 2786 shift = f_code - 1; |
| 0 | 2787 val = (code - 1) << shift; |
| 2788 if (shift > 0) | |
| 2789 val |= get_bits(&s->gb, shift); | |
| 2790 val++; | |
| 2791 if (sign) | |
| 2792 val = -val; | |
| 2793 val += pred; | |
| 475 | 2794 |
| 0 | 2795 /* modulo decoding */ |
| 2796 if (!s->h263_long_vectors) { | |
| 262 | 2797 l = (1 << (f_code - 1)) * 32; |
| 0 | 2798 m = 2 * l; |
| 2799 if (val < -l) { | |
| 2800 val += m; | |
| 2801 } else if (val >= l) { | |
| 2802 val -= m; | |
| 2803 } | |
| 2804 } else { | |
| 2805 /* horrible h263 long vector mode */ | |
| 2806 if (pred < -31 && val < -63) | |
| 2807 val += 64; | |
| 2808 if (pred > 32 && val > 63) | |
| 2809 val -= 64; | |
|
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
2810 |
| 0 | 2811 } |
| 2812 return val; | |
| 2813 } | |
| 2814 | |
| 78 | 2815 /* Decodes RVLC of H.263+ UMV */ |
| 2816 static int h263p_decode_umotion(MpegEncContext * s, int pred) | |
| 2817 { | |
| 2818 int code = 0, sign; | |
| 2819 | |
| 2820 if (get_bits1(&s->gb)) /* Motion difference = 0 */ | |
| 2821 return pred; | |
| 2822 | |
| 2823 code = 2 + get_bits1(&s->gb); | |
| 2824 | |
| 2825 while (get_bits1(&s->gb)) | |
| 2826 { | |
| 2827 code <<= 1; | |
| 2828 code += get_bits1(&s->gb); | |
| 2829 } | |
| 2830 sign = code & 1; | |
| 2831 code >>= 1; | |
| 2832 | |
| 2833 code = (sign) ? (pred - code) : (pred + code); | |
| 2834 #ifdef DEBUG | |
| 2835 fprintf(stderr,"H.263+ UMV Motion = %d\n", code); | |
| 2836 #endif | |
| 2837 return code; | |
| 2838 | |
| 2839 } | |
| 2840 | |
| 0 | 2841 static int h263_decode_block(MpegEncContext * s, DCTELEM * block, |
| 2842 int n, int coded) | |
| 2843 { | |
| 2844 int code, level, i, j, last, run; | |
| 2845 RLTable *rl = &rl_inter; | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2846 const UINT8 *scan_table; |
| 0 | 2847 |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2848 scan_table = zigzag_direct; |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2849 if (s->h263_aic && s->mb_intra) { |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2850 rl = &rl_intra_aic; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2851 i = 0; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2852 if (s->ac_pred) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2853 if (s->h263_aic_dir) |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2854 scan_table = ff_alternate_vertical_scan; /* left */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2855 else |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2856 scan_table = ff_alternate_horizontal_scan; /* top */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2857 } |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2858 } else if (s->mb_intra) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2859 /* DC coef */ |
| 0 | 2860 if (s->h263_rv10 && s->rv10_version == 3 && s->pict_type == I_TYPE) { |
| 2861 int component, diff; | |
| 2862 component = (n <= 3 ? 0 : n - 4 + 1); | |
| 2863 level = s->last_dc[component]; | |
| 2864 if (s->rv10_first_dc_coded[component]) { | |
| 2865 diff = rv_decode_dc(s, n); | |
| 2866 if (diff == 0xffff) | |
| 2867 return -1; | |
| 2868 level += diff; | |
| 2869 level = level & 0xff; /* handle wrap round */ | |
| 2870 s->last_dc[component] = level; | |
| 2871 } else { | |
| 2872 s->rv10_first_dc_coded[component] = 1; | |
| 2873 } | |
| 2874 } else { | |
| 2875 level = get_bits(&s->gb, 8); | |
| 2876 if (level == 255) | |
| 2877 level = 128; | |
| 2878 } | |
| 2879 block[0] = level; | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2880 i = 1; |
| 0 | 2881 } else { |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2882 i = 0; |
| 0 | 2883 } |
| 2884 if (!coded) { | |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2885 if (s->mb_intra && s->h263_aic) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2886 goto not_coded; |
| 0 | 2887 s->block_last_index[n] = i - 1; |
| 2888 return 0; | |
| 2889 } | |
| 2890 | |
| 2891 for(;;) { | |
| 544 | 2892 code = get_vlc2(&s->gb, rl->vlc.table, TEX_VLC_BITS, 2); |
| 0 | 2893 if (code < 0) |
| 2894 return -1; | |
| 2895 if (code == rl->n) { | |
| 2896 /* escape */ | |
| 21 | 2897 last = get_bits1(&s->gb); |
| 0 | 2898 run = get_bits(&s->gb, 6); |
| 2899 level = (INT8)get_bits(&s->gb, 8); | |
| 2900 if (s->h263_rv10 && level == -128) { | |
| 2901 /* XXX: should patch encoder too */ | |
| 2902 level = get_bits(&s->gb, 12); | |
| 617 | 2903 level= (level + ((-1)<<11)) ^ ((-1)<<11); //sign extension |
| 0 | 2904 } |
| 2905 } else { | |
| 2906 run = rl->table_run[code]; | |
| 2907 level = rl->table_level[code]; | |
| 2908 last = code >= rl->last; | |
| 21 | 2909 if (get_bits1(&s->gb)) |
| 0 | 2910 level = -level; |
| 2911 } | |
| 2912 i += run; | |
| 2913 if (i >= 64) | |
| 2914 return -1; | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2915 j = scan_table[i]; |
| 0 | 2916 block[j] = level; |
| 2917 if (last) | |
| 2918 break; | |
| 2919 i++; | |
| 2920 } | |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2921 not_coded: |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2922 if (s->mb_intra && s->h263_aic) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2923 h263_pred_acdc(s, block, n); |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
2924 i = 63; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2925 } |
| 0 | 2926 s->block_last_index[n] = i; |
| 2927 return 0; | |
| 2928 } | |
| 2929 | |
| 453 | 2930 static inline int mpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr) |
| 0 | 2931 { |
| 2932 int level, pred, code; | |
| 2933 UINT16 *dc_val; | |
| 2934 | |
| 2935 if (n < 4) | |
| 544 | 2936 code = get_vlc2(&s->gb, dc_lum.table, DC_VLC_BITS, 1); |
| 0 | 2937 else |
| 544 | 2938 code = get_vlc2(&s->gb, dc_chrom.table, DC_VLC_BITS, 1); |
| 453 | 2939 if (code < 0 || code > 9 /* && s->nbit<9 */){ |
| 2940 fprintf(stderr, "illegal dc vlc\n"); | |
| 0 | 2941 return -1; |
| 453 | 2942 } |
| 0 | 2943 if (code == 0) { |
| 2944 level = 0; | |
| 2945 } else { | |
| 2946 level = get_bits(&s->gb, code); | |
| 2947 if ((level >> (code - 1)) == 0) /* if MSB not set it is negative*/ | |
| 2948 level = - (level ^ ((1 << code) - 1)); | |
| 453 | 2949 if (code > 8){ |
| 2950 if(get_bits1(&s->gb)==0){ /* marker */ | |
| 2951 fprintf(stderr, "dc marker bit missing\n"); | |
| 2952 return -1; | |
| 2953 } | |
| 2954 } | |
| 0 | 2955 } |
| 2956 | |
| 498 | 2957 pred = ff_mpeg4_pred_dc(s, n, &dc_val, dir_ptr); |
| 0 | 2958 level += pred; |
| 2959 if (level < 0) | |
| 2960 level = 0; | |
| 2961 if (n < 4) { | |
| 2962 *dc_val = level * s->y_dc_scale; | |
| 2963 } else { | |
| 2964 *dc_val = level * s->c_dc_scale; | |
| 2965 } | |
| 2966 return level; | |
| 2967 } | |
| 2968 | |
| 453 | 2969 /** |
| 2970 * decode a block | |
| 2971 * returns 0 if everything went ok | |
| 2972 * returns DECODING_AC_LOST if an error was detected during AC decoding | |
| 2973 * returns DECODING_ACDC_LOST if an error was detected during DC decoding | |
| 2974 */ | |
| 2975 static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block, | |
| 575 | 2976 int n, int coded, int intra) |
| 0 | 2977 { |
| 549 | 2978 int level, i, last, run; |
| 0 | 2979 int dc_pred_dir; |
| 575 | 2980 RLTable * rl; |
| 2981 RL_VLC_ELEM * rl_vlc; | |
| 2982 const UINT8 * scan_table; | |
| 549 | 2983 int qmul, qadd; |
| 0 | 2984 |
| 575 | 2985 if(intra) { |
| 0 | 2986 /* DC coef */ |
| 453 | 2987 if(s->data_partitioning && s->pict_type!=B_TYPE){ |
| 2988 level = s->dc_val[0][ s->block_index[n] ]; | |
| 2989 if(n<4) level= (level + (s->y_dc_scale>>1))/s->y_dc_scale; //FIXME optimizs | |
| 2990 else level= (level + (s->c_dc_scale>>1))/s->c_dc_scale; | |
| 2991 dc_pred_dir= (s->pred_dir_table[s->mb_x + s->mb_y*s->mb_width]<<n)&32; | |
| 2992 }else{ | |
| 2993 level = mpeg4_decode_dc(s, n, &dc_pred_dir); | |
| 2994 if (level < 0) | |
| 2995 return DECODING_ACDC_LOST; | |
| 2996 } | |
| 0 | 2997 block[0] = level; |
| 549 | 2998 i = 0; |
| 0 | 2999 if (!coded) |
| 3000 goto not_coded; | |
| 3001 rl = &rl_intra; | |
| 549 | 3002 rl_vlc = rl_intra.rl_vlc[0]; |
| 0 | 3003 if (s->ac_pred) { |
| 3004 if (dc_pred_dir == 0) | |
| 3005 scan_table = ff_alternate_vertical_scan; /* left */ | |
| 3006 else | |
| 3007 scan_table = ff_alternate_horizontal_scan; /* top */ | |
| 3008 } else { | |
| 3009 scan_table = zigzag_direct; | |
| 3010 } | |
| 549 | 3011 qmul=1; |
| 3012 qadd=0; | |
| 0 | 3013 } else { |
| 549 | 3014 i = -1; |
| 0 | 3015 if (!coded) { |
| 549 | 3016 s->block_last_index[n] = i; |
| 0 | 3017 return 0; |
| 3018 } | |
| 3019 rl = &rl_inter; | |
| 3020 scan_table = zigzag_direct; | |
| 591 | 3021 if(s->mpeg_quant){ |
| 3022 qmul=1; | |
| 3023 qadd=0; | |
| 3024 rl_vlc = rl_inter.rl_vlc[0]; | |
| 3025 }else{ | |
| 3026 qmul = s->qscale << 1; | |
| 3027 qadd = (s->qscale - 1) | 1; | |
| 3028 rl_vlc = rl_inter.rl_vlc[s->qscale]; | |
| 3029 } | |
| 0 | 3030 } |
| 549 | 3031 { |
| 3032 OPEN_READER(re, &s->gb); | |
| 0 | 3033 for(;;) { |
| 549 | 3034 UPDATE_CACHE(re, &s->gb); |
| 3035 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 3036 if (level==0) { | |
| 3037 int cache; | |
| 3038 cache= GET_CACHE(re, &s->gb); | |
| 0 | 3039 /* escape */ |
| 549 | 3040 if (cache&0x80000000) { |
| 3041 if (cache&0x40000000) { | |
| 0 | 3042 /* third escape */ |
| 549 | 3043 SKIP_CACHE(re, &s->gb, 2); |
| 3044 last= SHOW_UBITS(re, &s->gb, 1); SKIP_CACHE(re, &s->gb, 1); | |
| 3045 run= SHOW_UBITS(re, &s->gb, 6); LAST_SKIP_CACHE(re, &s->gb, 6); | |
| 3046 SKIP_COUNTER(re, &s->gb, 2+1+6); | |
| 3047 UPDATE_CACHE(re, &s->gb); | |
| 3048 | |
| 3049 if(SHOW_UBITS(re, &s->gb, 1)==0){ | |
| 453 | 3050 fprintf(stderr, "1. marker bit missing in 3. esc\n"); |
| 3051 return DECODING_AC_LOST; | |
| 549 | 3052 }; SKIP_CACHE(re, &s->gb, 1); |
| 3053 | |
| 3054 level= SHOW_SBITS(re, &s->gb, 12); SKIP_CACHE(re, &s->gb, 12); | |
| 3055 | |
| 3056 if(SHOW_UBITS(re, &s->gb, 1)==0){ | |
| 453 | 3057 fprintf(stderr, "2. marker bit missing in 3. esc\n"); |
| 3058 return DECODING_AC_LOST; | |
| 549 | 3059 }; LAST_SKIP_CACHE(re, &s->gb, 1); |
| 3060 | |
| 3061 SKIP_COUNTER(re, &s->gb, 1+12+1); | |
| 3062 | |
| 597 | 3063 if(level*s->qscale>1024 || level*s->qscale<-1024){ |
| 3064 fprintf(stderr, "|level| overflow in 3. esc, qp=%d\n", s->qscale); | |
| 453 | 3065 return DECODING_AC_LOST; |
| 3066 } | |
| 3067 #if 1 | |
| 3068 { | |
| 3069 const int abs_level= ABS(level); | |
| 3070 if(abs_level<=MAX_LEVEL && run<=MAX_RUN && s->error_resilience>=0){ | |
| 498 | 3071 const int run1= run - rl->max_run[last][abs_level] - 1; |
| 453 | 3072 if(abs_level <= rl->max_level[last][run]){ |
| 3073 fprintf(stderr, "illegal 3. esc, vlc encoding possible\n"); | |
| 3074 return DECODING_AC_LOST; | |
| 3075 } | |
| 3076 if(abs_level <= rl->max_level[last][run]*2){ | |
| 3077 fprintf(stderr, "illegal 3. esc, esc 1 encoding possible\n"); | |
| 3078 return DECODING_AC_LOST; | |
| 3079 } | |
| 475 | 3080 if(run1 >= 0 && abs_level <= rl->max_level[last][run1]){ |
| 453 | 3081 fprintf(stderr, "illegal 3. esc, esc 2 encoding possible\n"); |
| 3082 return DECODING_AC_LOST; | |
| 3083 } | |
| 3084 } | |
| 3085 } | |
| 3086 #endif | |
| 549 | 3087 if (level>0) level= level * qmul + qadd; |
| 3088 else level= level * qmul - qadd; | |
| 3089 | |
| 3090 i+= run + 1; | |
| 3091 if(last) i+=192; | |
| 0 | 3092 } else { |
| 3093 /* second escape */ | |
| 549 | 3094 #if MIN_CACHE_BITS < 20 |
| 3095 LAST_SKIP_BITS(re, &s->gb, 2); | |
| 3096 UPDATE_CACHE(re, &s->gb); | |
| 3097 #else | |
| 3098 SKIP_BITS(re, &s->gb, 2); | |
| 3099 #endif | |
| 3100 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 3101 i+= run + rl->max_run[run>>7][level/qmul] +1; //FIXME opt indexing | |
| 3102 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 3103 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 0 | 3104 } |
| 3105 } else { | |
| 3106 /* first escape */ | |
| 549 | 3107 #if MIN_CACHE_BITS < 19 |
| 3108 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 3109 UPDATE_CACHE(re, &s->gb); | |
| 3110 #else | |
| 3111 SKIP_BITS(re, &s->gb, 1); | |
| 3112 #endif | |
| 3113 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 3114 i+= run; | |
| 3115 level = level + rl->max_level[run>>7][(run-1)&63] * qmul;//FIXME opt indexing | |
| 3116 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 3117 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 0 | 3118 } |
| 3119 } else { | |
| 549 | 3120 i+= run; |
| 3121 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 3122 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 0 | 3123 } |
| 549 | 3124 if (i > 62){ |
| 3125 i-= 192; | |
| 3126 if(i&(~63)){ | |
| 3127 fprintf(stderr, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y); | |
| 3128 return DECODING_AC_LOST; | |
| 3129 } | |
| 3130 | |
| 3131 block[scan_table[i]] = level; | |
| 0 | 3132 break; |
| 549 | 3133 } |
| 3134 | |
| 3135 block[scan_table[i]] = level; | |
| 0 | 3136 } |
| 549 | 3137 CLOSE_READER(re, &s->gb); |
| 3138 } | |
| 0 | 3139 not_coded: |
| 3140 if (s->mb_intra) { | |
| 3141 mpeg4_pred_ac(s, block, n, dc_pred_dir); | |
| 3142 if (s->ac_pred) { | |
| 549 | 3143 i = 63; /* XXX: not optimal */ |
| 0 | 3144 } |
| 3145 } | |
| 549 | 3146 s->block_last_index[n] = i; |
| 0 | 3147 return 0; |
| 3148 } | |
| 3149 | |
| 3150 /* most is hardcoded. should extend to handle all h263 streams */ | |
| 3151 int h263_decode_picture_header(MpegEncContext *s) | |
| 3152 { | |
| 3153 int format, width, height; | |
| 3154 | |
| 355 | 3155 /* picture start code */ |
| 3156 if (get_bits(&s->gb, 22) != 0x20) { | |
| 3157 fprintf(stderr, "Bad picture start code\n"); | |
| 0 | 3158 return -1; |
| 355 | 3159 } |
| 3160 /* temporal reference */ | |
| 231 | 3161 s->picture_number = get_bits(&s->gb, 8); /* picture timestamp */ |
| 355 | 3162 |
| 3163 /* PTYPE starts here */ | |
| 3164 if (get_bits1(&s->gb) != 1) { | |
| 3165 /* marker */ | |
| 3166 fprintf(stderr, "Bad marker\n"); | |
| 3167 return -1; | |
| 3168 } | |
| 3169 if (get_bits1(&s->gb) != 0) { | |
| 3170 fprintf(stderr, "Bad H263 id\n"); | |
| 0 | 3171 return -1; /* h263 id */ |
| 355 | 3172 } |
| 21 | 3173 skip_bits1(&s->gb); /* split screen off */ |
| 3174 skip_bits1(&s->gb); /* camera off */ | |
| 3175 skip_bits1(&s->gb); /* freeze picture release off */ | |
| 0 | 3176 |
|
155
3c3449bce692
- Bug fix on MV prediction for MPEG4 caused by new H.263 GOB code.
pulento
parents:
154
diff
changeset
|
3177 /* Reset GOB number */ |
|
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
3178 s->gob_number = 0; |
|
155
3c3449bce692
- Bug fix on MV prediction for MPEG4 caused by new H.263 GOB code.
pulento
parents:
154
diff
changeset
|
3179 |
| 0 | 3180 format = get_bits(&s->gb, 3); |
| 355 | 3181 /* |
| 3182 0 forbidden | |
| 3183 1 sub-QCIF | |
| 3184 10 QCIF | |
| 3185 7 extended PTYPE (PLUSPTYPE) | |
| 3186 */ | |
| 0 | 3187 |
| 161 | 3188 if (format != 7 && format != 6) { |
| 0 | 3189 s->h263_plus = 0; |
| 3190 /* H.263v1 */ | |
| 3191 width = h263_format[format][0]; | |
| 3192 height = h263_format[format][1]; | |
| 3193 if (!width) | |
| 3194 return -1; | |
| 161 | 3195 |
| 3196 s->width = width; | |
| 3197 s->height = height; | |
| 21 | 3198 s->pict_type = I_TYPE + get_bits1(&s->gb); |
| 0 | 3199 |
| 21 | 3200 s->unrestricted_mv = get_bits1(&s->gb); |
| 0 | 3201 s->h263_long_vectors = s->unrestricted_mv; |
| 3202 | |
| 355 | 3203 if (get_bits1(&s->gb) != 0) { |
| 3204 fprintf(stderr, "H263 SAC not supported\n"); | |
| 0 | 3205 return -1; /* SAC: off */ |
| 355 | 3206 } |
| 161 | 3207 if (get_bits1(&s->gb) != 0) { |
| 3208 s->mv_type = MV_TYPE_8X8; /* Advanced prediction mode */ | |
| 3209 } | |
| 3210 | |
| 355 | 3211 if (get_bits1(&s->gb) != 0) { |
| 3212 fprintf(stderr, "H263 PB frame not supported\n"); | |
| 0 | 3213 return -1; /* not PB frame */ |
| 355 | 3214 } |
| 0 | 3215 s->qscale = get_bits(&s->gb, 5); |
| 21 | 3216 skip_bits1(&s->gb); /* Continuous Presence Multipoint mode: off */ |
| 0 | 3217 } else { |
| 161 | 3218 int ufep; |
| 3219 | |
| 0 | 3220 /* H.263v2 */ |
| 161 | 3221 s->h263_plus = 1; |
| 3222 ufep = get_bits(&s->gb, 3); /* Update Full Extended PTYPE */ | |
| 355 | 3223 |
| 3224 /* ufep other than 0 and 1 are reserved */ | |
| 161 | 3225 if (ufep == 1) { |
| 3226 /* OPPTYPE */ | |
| 3227 format = get_bits(&s->gb, 3); | |
| 355 | 3228 dprintf("ufep=1, format: %d\n", format); |
| 161 | 3229 skip_bits(&s->gb,1); /* Custom PCF */ |
| 3230 s->umvplus_dec = get_bits(&s->gb, 1); /* Unrestricted Motion Vector */ | |
| 3231 skip_bits1(&s->gb); /* Syntax-based Arithmetic Coding (SAC) */ | |
| 3232 if (get_bits1(&s->gb) != 0) { | |
| 3233 s->mv_type = MV_TYPE_8X8; /* Advanced prediction mode */ | |
| 3234 } | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3235 if (get_bits1(&s->gb) != 0) { /* Advanced Intra Coding (AIC) */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3236 s->h263_aic = 1; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3237 } |
| 355 | 3238 |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3239 skip_bits(&s->gb, 7); |
| 355 | 3240 /* these are the 7 bits: (in order of appearence */ |
| 3241 /* Deblocking Filter */ | |
| 3242 /* Slice Structured */ | |
| 3243 /* Reference Picture Selection */ | |
| 3244 /* Independent Segment Decoding */ | |
| 3245 /* Alternative Inter VLC */ | |
| 3246 /* Modified Quantization */ | |
| 3247 /* Prevent start code emulation */ | |
| 3248 | |
| 161 | 3249 skip_bits(&s->gb, 3); /* Reserved */ |
| 355 | 3250 } else if (ufep != 0) { |
| 3251 fprintf(stderr, "Bad UFEP type (%d)\n", ufep); | |
| 0 | 3252 return -1; |
| 355 | 3253 } |
| 161 | 3254 |
| 78 | 3255 /* MPPTYPE */ |
| 355 | 3256 s->pict_type = get_bits(&s->gb, 3) + I_TYPE; |
| 3257 dprintf("pict_type: %d\n", s->pict_type); | |
| 0 | 3258 if (s->pict_type != I_TYPE && |
| 3259 s->pict_type != P_TYPE) | |
| 3260 return -1; | |
|
250
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
3261 skip_bits(&s->gb, 2); |
|
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
3262 s->no_rounding = get_bits1(&s->gb); |
| 355 | 3263 dprintf("RTYPE: %d\n", s->no_rounding); |
|
250
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
3264 skip_bits(&s->gb, 4); |
| 78 | 3265 |
| 3266 /* Get the picture dimensions */ | |
| 161 | 3267 if (ufep) { |
| 3268 if (format == 6) { | |
| 3269 /* Custom Picture Format (CPFMT) */ | |
| 355 | 3270 s->aspect_ratio_info = get_bits(&s->gb, 4); |
| 3271 dprintf("aspect: %d\n", s->aspect_ratio_info); | |
| 3272 /* aspect ratios: | |
| 3273 0 - forbidden | |
| 3274 1 - 1:1 | |
| 3275 2 - 12:11 (CIF 4:3) | |
| 3276 3 - 10:11 (525-type 4:3) | |
| 3277 4 - 16:11 (CIF 16:9) | |
| 3278 5 - 40:33 (525-type 16:9) | |
| 3279 6-14 - reserved | |
| 3280 */ | |
| 161 | 3281 width = (get_bits(&s->gb, 9) + 1) * 4; |
| 3282 skip_bits1(&s->gb); | |
| 3283 height = get_bits(&s->gb, 9) * 4; | |
| 355 | 3284 dprintf("\nH.263+ Custom picture: %dx%d\n",width,height); |
| 3285 if (s->aspect_ratio_info == EXTENDED_PAR) { | |
| 3286 /* aspected dimensions */ | |
| 3287 skip_bits(&s->gb, 8); /* width */ | |
| 3288 skip_bits(&s->gb, 8); /* height */ | |
| 3289 } | |
| 3290 } else { | |
| 161 | 3291 width = h263_format[format][0]; |
| 3292 height = h263_format[format][1]; | |
| 3293 } | |
| 3294 if ((width == 0) || (height == 0)) | |
| 3295 return -1; | |
| 3296 s->width = width; | |
| 3297 s->height = height; | |
| 3298 if (s->umvplus_dec) { | |
| 3299 skip_bits1(&s->gb); /* Unlimited Unrestricted Motion Vectors Indicator (UUI) */ | |
| 3300 } | |
| 78 | 3301 } |
| 3302 | |
| 0 | 3303 s->qscale = get_bits(&s->gb, 5); |
| 3304 } | |
| 3305 /* PEI */ | |
| 21 | 3306 while (get_bits1(&s->gb) != 0) { |
| 3307 skip_bits(&s->gb, 8); | |
| 0 | 3308 } |
| 3309 s->f_code = 1; | |
| 498 | 3310 |
| 3311 if(s->h263_aic){ | |
| 3312 s->y_dc_scale_table= | |
| 3313 s->c_dc_scale_table= h263_aic_dc_scale_table; | |
| 3314 }else{ | |
| 3315 s->y_dc_scale_table= | |
| 3316 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; | |
| 3317 } | |
| 3318 | |
| 0 | 3319 return 0; |
| 3320 } | |
| 3321 | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3322 static void mpeg4_decode_sprite_trajectory(MpegEncContext * s) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3323 { |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3324 int i; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3325 int a= 2<<s->sprite_warping_accuracy; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3326 int rho= 3-s->sprite_warping_accuracy; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3327 int r=16/a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3328 const int vop_ref[4][2]= {{0,0}, {s->width,0}, {0, s->height}, {s->width, s->height}}; // only true for rectangle shapes |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3329 int d[4][2]={{0,0}, {0,0}, {0,0}, {0,0}}; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3330 int sprite_ref[4][2]; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3331 int virtual_ref[2][2]; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3332 int w2, h2; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3333 int alpha=0, beta=0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3334 int w= s->width; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3335 int h= s->height; |
| 255 | 3336 //printf("SP %d\n", s->sprite_warping_accuracy); |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3337 for(i=0; i<s->num_sprite_warping_points; i++){ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3338 int length; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3339 int x=0, y=0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3340 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3341 length= get_vlc(&s->gb, &sprite_trajectory); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3342 if(length){ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3343 x= get_bits(&s->gb, length); |
| 255 | 3344 //printf("lx %d %d\n", length, x); |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3345 if ((x >> (length - 1)) == 0) /* if MSB not set it is negative*/ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3346 x = - (x ^ ((1 << length) - 1)); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3347 } |
| 255 | 3348 if(!(s->divx_version==500 && s->divx_build==413)) skip_bits1(&s->gb); /* marker bit */ |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3349 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3350 length= get_vlc(&s->gb, &sprite_trajectory); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3351 if(length){ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3352 y=get_bits(&s->gb, length); |
| 255 | 3353 //printf("ly %d %d\n", length, y); |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3354 if ((y >> (length - 1)) == 0) /* if MSB not set it is negative*/ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3355 y = - (y ^ ((1 << length) - 1)); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3356 } |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3357 skip_bits1(&s->gb); /* marker bit */ |
| 255 | 3358 //printf("%d %d %d %d\n", x, y, i, s->sprite_warping_accuracy); |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3359 //if(i>0 && (x!=0 || y!=0)) printf("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\n"); |
| 255 | 3360 //x=y=0; |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3361 d[i][0]= x; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3362 d[i][1]= y; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3363 } |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3364 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3365 while((1<<alpha)<w) alpha++; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3366 while((1<<beta )<h) beta++; // there seems to be a typo in the mpeg4 std for the definition of w' and h' |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3367 w2= 1<<alpha; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3368 h2= 1<<beta; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3369 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3370 // Note, the 4th point isnt used for GMC |
| 262 | 3371 if(s->divx_version==500 && s->divx_build==413){ |
| 3372 sprite_ref[0][0]= a*vop_ref[0][0] + d[0][0]; | |
| 3373 sprite_ref[0][1]= a*vop_ref[0][1] + d[0][1]; | |
| 3374 sprite_ref[1][0]= a*vop_ref[1][0] + d[0][0] + d[1][0]; | |
| 3375 sprite_ref[1][1]= a*vop_ref[1][1] + d[0][1] + d[1][1]; | |
| 3376 sprite_ref[2][0]= a*vop_ref[2][0] + d[0][0] + d[2][0]; | |
| 3377 sprite_ref[2][1]= a*vop_ref[2][1] + d[0][1] + d[2][1]; | |
| 3378 } else { | |
| 3379 sprite_ref[0][0]= (a>>1)*(2*vop_ref[0][0] + d[0][0]); | |
| 3380 sprite_ref[0][1]= (a>>1)*(2*vop_ref[0][1] + d[0][1]); | |
| 3381 sprite_ref[1][0]= (a>>1)*(2*vop_ref[1][0] + d[0][0] + d[1][0]); | |
| 3382 sprite_ref[1][1]= (a>>1)*(2*vop_ref[1][1] + d[0][1] + d[1][1]); | |
| 3383 sprite_ref[2][0]= (a>>1)*(2*vop_ref[2][0] + d[0][0] + d[2][0]); | |
| 3384 sprite_ref[2][1]= (a>>1)*(2*vop_ref[2][1] + d[0][1] + d[2][1]); | |
| 3385 } | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3386 /* sprite_ref[3][0]= (a>>1)*(2*vop_ref[3][0] + d[0][0] + d[1][0] + d[2][0] + d[3][0]); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3387 sprite_ref[3][1]= (a>>1)*(2*vop_ref[3][1] + d[0][1] + d[1][1] + d[2][1] + d[3][1]); */ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3388 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3389 // this is mostly identical to the mpeg4 std (and is totally unreadable because of that ...) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3390 // perhaps it should be reordered to be more readable ... |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3391 // the idea behind this virtual_ref mess is to be able to use shifts later per pixel instead of divides |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3392 // so the distance between points is converted from w&h based to w2&h2 based which are of the 2^x form |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3393 virtual_ref[0][0]= 16*(vop_ref[0][0] + w2) |
| 359 | 3394 + ROUNDED_DIV(((w - w2)*(r*sprite_ref[0][0] - 16*vop_ref[0][0]) + w2*(r*sprite_ref[1][0] - 16*vop_ref[1][0])),w); |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3395 virtual_ref[0][1]= 16*vop_ref[0][1] |
| 359 | 3396 + ROUNDED_DIV(((w - w2)*(r*sprite_ref[0][1] - 16*vop_ref[0][1]) + w2*(r*sprite_ref[1][1] - 16*vop_ref[1][1])),w); |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3397 virtual_ref[1][0]= 16*vop_ref[0][0] |
| 359 | 3398 + ROUNDED_DIV(((h - h2)*(r*sprite_ref[0][0] - 16*vop_ref[0][0]) + h2*(r*sprite_ref[2][0] - 16*vop_ref[2][0])),h); |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3399 virtual_ref[1][1]= 16*(vop_ref[0][1] + h2) |
| 359 | 3400 + ROUNDED_DIV(((h - h2)*(r*sprite_ref[0][1] - 16*vop_ref[0][1]) + h2*(r*sprite_ref[2][1] - 16*vop_ref[2][1])),h); |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3401 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3402 switch(s->num_sprite_warping_points) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3403 { |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3404 case 0: |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3405 s->sprite_offset[0][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3406 s->sprite_offset[0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3407 s->sprite_offset[1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3408 s->sprite_offset[1][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3409 s->sprite_delta[0][0][0]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3410 s->sprite_delta[0][0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3411 s->sprite_delta[0][1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3412 s->sprite_delta[0][1][1]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3413 s->sprite_delta[1][0][0]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3414 s->sprite_delta[1][0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3415 s->sprite_delta[1][1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3416 s->sprite_delta[1][1][1]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3417 s->sprite_shift[0][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3418 s->sprite_shift[0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3419 s->sprite_shift[1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3420 s->sprite_shift[1][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3421 break; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3422 case 1: //GMC only |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3423 s->sprite_offset[0][0]= sprite_ref[0][0] - a*vop_ref[0][0]; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3424 s->sprite_offset[0][1]= sprite_ref[0][1] - a*vop_ref[0][1]; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3425 s->sprite_offset[1][0]= ((sprite_ref[0][0]>>1)|(sprite_ref[0][0]&1)) - a*(vop_ref[0][0]/2); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3426 s->sprite_offset[1][1]= ((sprite_ref[0][1]>>1)|(sprite_ref[0][1]&1)) - a*(vop_ref[0][1]/2); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3427 s->sprite_delta[0][0][0]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3428 s->sprite_delta[0][0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3429 s->sprite_delta[0][1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3430 s->sprite_delta[0][1][1]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3431 s->sprite_delta[1][0][0]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3432 s->sprite_delta[1][0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3433 s->sprite_delta[1][1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3434 s->sprite_delta[1][1][1]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3435 s->sprite_shift[0][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3436 s->sprite_shift[0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3437 s->sprite_shift[1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3438 s->sprite_shift[1][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3439 break; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3440 case 2: |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3441 case 3: //FIXME |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3442 s->sprite_offset[0][0]= (sprite_ref[0][0]<<(alpha+rho)) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3443 + ((-r*sprite_ref[0][0] + virtual_ref[0][0])*(-vop_ref[0][0]) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3444 +( r*sprite_ref[0][1] - virtual_ref[0][1])*(-vop_ref[0][1])); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3445 s->sprite_offset[0][1]= (sprite_ref[0][1]<<(alpha+rho)) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3446 + ((-r*sprite_ref[0][1] + virtual_ref[0][1])*(-vop_ref[0][0]) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3447 +(-r*sprite_ref[0][0] + virtual_ref[0][0])*(-vop_ref[0][1])); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3448 s->sprite_offset[1][0]= ((-r*sprite_ref[0][0] + virtual_ref[0][0])*(-2*vop_ref[0][0] + 1) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3449 +( r*sprite_ref[0][1] - virtual_ref[0][1])*(-2*vop_ref[0][1] + 1) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3450 +2*w2*r*sprite_ref[0][0] - 16*w2); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3451 s->sprite_offset[1][1]= ((-r*sprite_ref[0][1] + virtual_ref[0][1])*(-2*vop_ref[0][0] + 1) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3452 +(-r*sprite_ref[0][0] + virtual_ref[0][0])*(-2*vop_ref[0][1] + 1) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3453 +2*w2*r*sprite_ref[0][1] - 16*w2); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3454 s->sprite_delta[0][0][0]= (-r*sprite_ref[0][0] + virtual_ref[0][0]); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3455 s->sprite_delta[0][0][1]= ( r*sprite_ref[0][1] - virtual_ref[0][1]); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3456 s->sprite_delta[0][1][0]= (-r*sprite_ref[0][1] + virtual_ref[0][1]); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3457 s->sprite_delta[0][1][1]= (-r*sprite_ref[0][0] + virtual_ref[0][0]); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3458 s->sprite_delta[1][0][0]= 4*(-r*sprite_ref[0][0] + virtual_ref[0][0]); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3459 s->sprite_delta[1][0][1]= 4*( r*sprite_ref[0][1] - virtual_ref[0][1]); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3460 s->sprite_delta[1][1][0]= 4*(-r*sprite_ref[0][1] + virtual_ref[0][1]); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3461 s->sprite_delta[1][1][1]= 4*(-r*sprite_ref[0][0] + virtual_ref[0][0]); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3462 s->sprite_shift[0][0]= alpha+rho; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3463 s->sprite_shift[0][1]= alpha+rho; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3464 s->sprite_shift[1][0]= alpha+rho+2; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3465 s->sprite_shift[1][1]= alpha+rho+2; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3466 break; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3467 // case 3: |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3468 break; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3469 } |
| 255 | 3470 /*printf("%d %d\n", s->sprite_delta[0][0][0], a<<s->sprite_shift[0][0]); |
| 3471 printf("%d %d\n", s->sprite_delta[0][0][1], 0); | |
| 3472 printf("%d %d\n", s->sprite_delta[0][1][0], 0); | |
| 3473 printf("%d %d\n", s->sprite_delta[0][1][1], a<<s->sprite_shift[0][1]); | |
| 3474 printf("%d %d\n", s->sprite_delta[1][0][0], a<<s->sprite_shift[1][0]); | |
| 3475 printf("%d %d\n", s->sprite_delta[1][0][1], 0); | |
| 3476 printf("%d %d\n", s->sprite_delta[1][1][0], 0); | |
| 3477 printf("%d %d\n", s->sprite_delta[1][1][1], a<<s->sprite_shift[1][1]);*/ | |
| 3478 /* try to simplify the situation */ | |
| 3479 if( s->sprite_delta[0][0][0] == a<<s->sprite_shift[0][0] | |
| 3480 && s->sprite_delta[0][0][1] == 0 | |
| 3481 && s->sprite_delta[0][1][0] == 0 | |
| 3482 && s->sprite_delta[0][1][1] == a<<s->sprite_shift[0][1] | |
| 3483 && s->sprite_delta[1][0][0] == a<<s->sprite_shift[1][0] | |
| 3484 && s->sprite_delta[1][0][1] == 0 | |
| 3485 && s->sprite_delta[1][1][0] == 0 | |
| 3486 && s->sprite_delta[1][1][1] == a<<s->sprite_shift[1][1]) | |
| 3487 { | |
| 3488 s->sprite_offset[0][0]>>=s->sprite_shift[0][0]; | |
| 3489 s->sprite_offset[0][1]>>=s->sprite_shift[0][1]; | |
| 3490 s->sprite_offset[1][0]>>=s->sprite_shift[1][0]; | |
| 3491 s->sprite_offset[1][1]>>=s->sprite_shift[1][1]; | |
| 3492 s->sprite_delta[0][0][0]= a; | |
| 3493 s->sprite_delta[0][0][1]= 0; | |
| 3494 s->sprite_delta[0][1][0]= 0; | |
| 3495 s->sprite_delta[0][1][1]= a; | |
| 3496 s->sprite_delta[1][0][0]= a; | |
| 3497 s->sprite_delta[1][0][1]= 0; | |
| 3498 s->sprite_delta[1][1][0]= 0; | |
| 3499 s->sprite_delta[1][1][1]= a; | |
| 3500 s->sprite_shift[0][0]= 0; | |
| 3501 s->sprite_shift[0][1]= 0; | |
| 3502 s->sprite_shift[1][0]= 0; | |
| 3503 s->sprite_shift[1][1]= 0; | |
| 3504 s->real_sprite_warping_points=1; | |
| 3505 } | |
| 3506 else | |
| 3507 s->real_sprite_warping_points= s->num_sprite_warping_points; | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3508 |
| 301 | 3509 //printf("%d %d %d %d\n", d[0][0], d[0][1], s->sprite_offset[0][0], s->sprite_offset[0][1]); |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3510 } |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3511 |
| 0 | 3512 /* decode mpeg4 VOP header */ |
| 3513 int mpeg4_decode_picture_header(MpegEncContext * s) | |
| 3514 { | |
| 3515 int time_incr, startcode, state, v; | |
| 324 | 3516 int time_increment; |
| 0 | 3517 |
| 3518 redo: | |
| 3519 /* search next start code */ | |
| 3520 align_get_bits(&s->gb); | |
| 3521 state = 0xff; | |
| 3522 for(;;) { | |
| 3523 v = get_bits(&s->gb, 8); | |
| 3524 if (state == 0x000001) { | |
| 3525 state = ((state << 8) | v) & 0xffffff; | |
| 3526 startcode = state; | |
| 3527 break; | |
| 3528 } | |
| 3529 state = ((state << 8) | v) & 0xffffff; | |
| 278 | 3530 if( get_bits_count(&s->gb) > s->gb.size*8-32){ |
| 333 | 3531 if(s->gb.size>50){ |
| 3532 printf("no VOP startcode found, frame size was=%d\n", s->gb.size); | |
| 3533 return -1; | |
| 3534 }else{ | |
| 3535 printf("frame skip\n"); | |
| 3536 return FRAME_SKIPED; | |
| 3537 } | |
| 263 | 3538 } |
| 0 | 3539 } |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3540 //printf("startcode %X %d\n", startcode, get_bits_count(&s->gb)); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3541 if (startcode == 0x120) { // Video Object Layer |
| 262 | 3542 int width, height, vo_ver_id; |
| 0 | 3543 |
| 3544 /* vol header */ | |
| 21 | 3545 skip_bits(&s->gb, 1); /* random access */ |
| 336 | 3546 s->vo_type= get_bits(&s->gb, 8); |
| 63 | 3547 if (get_bits1(&s->gb) != 0) { /* is_ol_id */ |
| 3548 vo_ver_id = get_bits(&s->gb, 4); /* vo_ver_id */ | |
| 3549 skip_bits(&s->gb, 3); /* vo_priority */ | |
| 3550 } else { | |
| 3551 vo_ver_id = 1; | |
| 3552 } | |
| 341 | 3553 //printf("vo type:%d\n",s->vo_type); |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3554 s->aspect_ratio_info= get_bits(&s->gb, 4); |
| 355 | 3555 if(s->aspect_ratio_info == EXTENDED_PAR){ |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3556 skip_bits(&s->gb, 8); //par_width |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3557 skip_bits(&s->gb, 8); // par_height |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3558 } |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
3559 |
|
365
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3560 if ((s->vol_control_parameters=get_bits1(&s->gb))) { /* vol control parameter */ |
| 336 | 3561 int chroma_format= get_bits(&s->gb, 2); |
| 3562 if(chroma_format!=1){ | |
| 3563 printf("illegal chroma format\n"); | |
| 3564 } | |
| 3565 s->low_delay= get_bits1(&s->gb); | |
| 3566 if(get_bits1(&s->gb)){ /* vbv parameters */ | |
| 3567 printf("vbv parameters not supported\n"); | |
| 3568 return -1; | |
| 3569 } | |
| 3570 }else{ | |
| 564 | 3571 // set low delay flag only once so the smart? low delay detection wont be overriden |
| 3572 if(s->picture_number==0) | |
| 3573 s->low_delay=0; | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3574 } |
| 336 | 3575 |
| 63 | 3576 s->shape = get_bits(&s->gb, 2); /* vol shape */ |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3577 if(s->shape != RECT_SHAPE) printf("only rectangular vol supported\n"); |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3578 if(s->shape == GRAY_SHAPE && vo_ver_id != 1){ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3579 printf("Gray shape not supported\n"); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3580 skip_bits(&s->gb, 4); //video_object_layer_shape_extension |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3581 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3582 |
| 21 | 3583 skip_bits1(&s->gb); /* marker */ |
| 0 | 3584 |
| 262 | 3585 s->time_increment_resolution = get_bits(&s->gb, 16); |
| 3586 s->time_increment_bits = av_log2(s->time_increment_resolution - 1) + 1; | |
| 63 | 3587 if (s->time_increment_bits < 1) |
| 3588 s->time_increment_bits = 1; | |
| 21 | 3589 skip_bits1(&s->gb); /* marker */ |
| 0 | 3590 |
| 63 | 3591 if (get_bits1(&s->gb) != 0) { /* fixed_vop_rate */ |
| 3592 skip_bits(&s->gb, s->time_increment_bits); | |
| 3593 } | |
| 0 | 3594 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3595 if (s->shape != BIN_ONLY_SHAPE) { |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3596 if (s->shape == RECT_SHAPE) { |
| 63 | 3597 skip_bits1(&s->gb); /* marker */ |
| 3598 width = get_bits(&s->gb, 13); | |
| 3599 skip_bits1(&s->gb); /* marker */ | |
| 3600 height = get_bits(&s->gb, 13); | |
| 3601 skip_bits1(&s->gb); /* marker */ | |
|
274
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
272
diff
changeset
|
3602 if(width && height){ /* they should be non zero but who knows ... */ |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
272
diff
changeset
|
3603 s->width = width; |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
272
diff
changeset
|
3604 s->height = height; |
| 331 | 3605 // printf("width/height: %d %d\n", width, height); |
|
274
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
272
diff
changeset
|
3606 } |
| 63 | 3607 } |
| 3608 | |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3609 if(get_bits1(&s->gb)) printf("interlaced not supported\n"); /* interlaced */ |
| 453 | 3610 if(!get_bits1(&s->gb)) printf("OBMC not supported (very likely buggy encoder)\n"); /* OBMC Disable */ |
| 63 | 3611 if (vo_ver_id == 1) { |
| 3612 s->vol_sprite_usage = get_bits1(&s->gb); /* vol_sprite_usage */ | |
| 3613 } else { | |
| 3614 s->vol_sprite_usage = get_bits(&s->gb, 2); /* vol_sprite_usage */ | |
| 3615 } | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3616 if(s->vol_sprite_usage==STATIC_SPRITE) printf("Static Sprites not supported\n"); |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3617 if(s->vol_sprite_usage==STATIC_SPRITE || s->vol_sprite_usage==GMC_SPRITE){ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3618 if(s->vol_sprite_usage==STATIC_SPRITE){ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3619 s->sprite_width = get_bits(&s->gb, 13); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3620 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3621 s->sprite_height= get_bits(&s->gb, 13); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3622 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3623 s->sprite_left = get_bits(&s->gb, 13); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3624 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3625 s->sprite_top = get_bits(&s->gb, 13); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3626 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3627 } |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3628 s->num_sprite_warping_points= get_bits(&s->gb, 6); |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3629 s->sprite_warping_accuracy = get_bits(&s->gb, 2); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3630 s->sprite_brightness_change= get_bits1(&s->gb); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3631 if(s->vol_sprite_usage==STATIC_SPRITE) |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3632 s->low_latency_sprite= get_bits1(&s->gb); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3633 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3634 // FIXME sadct disable bit if verid!=1 && shape not rect |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3635 |
| 63 | 3636 if (get_bits1(&s->gb) == 1) { /* not_8_bit */ |
| 3637 s->quant_precision = get_bits(&s->gb, 4); /* quant_precision */ | |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3638 if(get_bits(&s->gb, 4)!=8) printf("N-bit not supported\n"); /* bits_per_pixel */ |
| 290 | 3639 if(s->quant_precision!=5) printf("quant precission %d\n", s->quant_precision); |
| 63 | 3640 } else { |
| 3641 s->quant_precision = 5; | |
| 3642 } | |
| 3643 | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3644 // FIXME a bunch of grayscale shape things |
| 312 | 3645 |
| 591 | 3646 if((s->mpeg_quant=get_bits1(&s->gb))){ /* vol_quant_type */ |
| 312 | 3647 int i, j, v; |
| 591 | 3648 |
| 312 | 3649 /* load default matrixes */ |
| 3650 for(i=0; i<64; i++){ | |
| 3651 v= ff_mpeg4_default_intra_matrix[i]; | |
| 3652 s->intra_matrix[i]= v; | |
| 3653 s->chroma_intra_matrix[i]= v; | |
| 3654 | |
| 3655 v= ff_mpeg4_default_non_intra_matrix[i]; | |
| 344 | 3656 s->inter_matrix[i]= v; |
| 3657 s->chroma_inter_matrix[i]= v; | |
| 312 | 3658 } |
| 3659 | |
| 3660 /* load custom intra matrix */ | |
| 3661 if(get_bits1(&s->gb)){ | |
| 3662 for(i=0; i<64; i++){ | |
| 3663 v= get_bits(&s->gb, 8); | |
| 3664 if(v==0) break; | |
| 3665 | |
| 3666 j= zigzag_direct[i]; | |
| 3667 s->intra_matrix[j]= v; | |
| 3668 s->chroma_intra_matrix[j]= v; | |
| 3669 } | |
| 3670 } | |
| 3671 | |
| 3672 /* load custom non intra matrix */ | |
| 3673 if(get_bits1(&s->gb)){ | |
| 3674 for(i=0; i<64; i++){ | |
| 3675 v= get_bits(&s->gb, 8); | |
| 3676 if(v==0) break; | |
| 3677 | |
| 3678 j= zigzag_direct[i]; | |
| 344 | 3679 s->inter_matrix[j]= v; |
| 3680 s->chroma_inter_matrix[j]= v; | |
| 312 | 3681 } |
| 3682 | |
| 3683 /* replicate last value */ | |
| 3684 for(; i<64; i++){ | |
| 3685 j= zigzag_direct[i]; | |
| 344 | 3686 s->inter_matrix[j]= v; |
| 3687 s->chroma_inter_matrix[j]= v; | |
| 312 | 3688 } |
| 3689 } | |
| 3690 | |
| 3691 // FIXME a bunch of grayscale shape things | |
| 591 | 3692 } |
| 312 | 3693 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3694 if(vo_ver_id != 1) |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3695 s->quarter_sample= get_bits1(&s->gb); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3696 else s->quarter_sample=0; |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3697 |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3698 if(!get_bits1(&s->gb)) printf("Complexity estimation not supported\n"); |
| 290 | 3699 |
| 3700 s->resync_marker= !get_bits1(&s->gb); /* resync_marker_disabled */ | |
| 3701 | |
| 453 | 3702 s->data_partitioning= get_bits1(&s->gb); |
| 3703 if(s->data_partitioning){ | |
| 3704 s->rvlc= get_bits1(&s->gb); | |
| 3705 if(s->rvlc){ | |
| 3706 printf("reversible vlc not supported\n"); | |
| 3707 } | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3708 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3709 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3710 if(vo_ver_id != 1) { |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3711 s->new_pred= get_bits1(&s->gb); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3712 if(s->new_pred){ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3713 printf("new pred not supported\n"); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3714 skip_bits(&s->gb, 2); /* requested upstream message type */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3715 skip_bits1(&s->gb); /* newpred segment type */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3716 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3717 s->reduced_res_vop= get_bits1(&s->gb); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3718 if(s->reduced_res_vop) printf("reduced resolution VOP not supported\n"); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3719 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3720 else{ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3721 s->new_pred=0; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3722 s->reduced_res_vop= 0; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3723 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3724 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3725 s->scalability= get_bits1(&s->gb); |
| 575 | 3726 if(s->workaround_bugs==1) s->scalability=0; |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3727 if (s->scalability) { |
| 575 | 3728 int dummy= s->hierachy_type= get_bits1(&s->gb); |
| 3729 int ref_layer_id= get_bits(&s->gb, 4); | |
| 3730 int ref_layer_sampling_dir= get_bits1(&s->gb); | |
| 3731 int h_sampling_factor_n= get_bits(&s->gb, 5); | |
| 3732 int h_sampling_factor_m= get_bits(&s->gb, 5); | |
| 3733 int v_sampling_factor_n= get_bits(&s->gb, 5); | |
| 3734 int v_sampling_factor_m= get_bits(&s->gb, 5); | |
| 3735 s->enhancement_type= get_bits1(&s->gb); | |
| 3736 // bin shape stuff FIXME | |
| 285 | 3737 printf("scalability not supported\n"); |
| 63 | 3738 } |
| 3739 } | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3740 //printf("end Data %X %d\n", show_bits(&s->gb, 32), get_bits_count(&s->gb)&0x7); |
| 0 | 3741 goto redo; |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3742 } else if (startcode == 0x1b2) { //userdata |
| 255 | 3743 char buf[256]; |
| 3744 int i; | |
| 3745 int e; | |
| 3746 int ver, build; | |
| 3747 | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3748 //printf("user Data %X\n", show_bits(&s->gb, 32)); |
| 255 | 3749 buf[0]= show_bits(&s->gb, 8); |
| 3750 for(i=1; i<256; i++){ | |
| 3751 buf[i]= show_bits(&s->gb, 16)&0xFF; | |
| 3752 if(buf[i]==0) break; | |
| 3753 skip_bits(&s->gb, 8); | |
| 3754 } | |
| 3755 buf[255]=0; | |
| 3756 e=sscanf(buf, "DivX%dBuild%d", &ver, &build); | |
| 333 | 3757 if(e!=2) |
| 3758 e=sscanf(buf, "DivX%db%d", &ver, &build); | |
| 255 | 3759 if(e==2){ |
| 3760 s->divx_version= ver; | |
| 3761 s->divx_build= build; | |
| 3762 if(s->picture_number==0){ | |
| 3763 printf("This file was encoded with DivX%d Build%d\n", ver, build); | |
| 333 | 3764 if(ver==500 && build==413){ |
| 255 | 3765 printf("WARNING: this version of DivX is not MPEG4 compatible, trying to workaround these bugs...\n"); |
| 333 | 3766 #if 0 |
| 255 | 3767 }else{ |
| 3768 printf("hmm, i havnt seen that version of divx yet, lets assume they fixed these bugs ...\n" | |
| 3769 "using mpeg4 decoder, if it fails contact the developers (of ffmpeg)\n"); | |
| 498 | 3770 #endif |
| 255 | 3771 } |
| 3772 } | |
| 3773 } | |
| 3774 //printf("User Data: %s\n", buf); | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3775 goto redo; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3776 } else if (startcode != 0x1b6) { //VOP |
| 0 | 3777 goto redo; |
| 3778 } | |
| 3779 | |
| 355 | 3780 s->pict_type = get_bits(&s->gb, 2) + I_TYPE; /* pict type: I = 0 , P = 1 */ |
| 453 | 3781 //if(s->pict_type!=I_TYPE) return FRAME_SKIPED; |
|
365
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3782 if(s->pict_type==B_TYPE && s->low_delay && s->vol_control_parameters==0){ |
|
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3783 printf("low_delay flag set, but shouldnt, clearing it\n"); |
|
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3784 s->low_delay=0; |
|
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3785 } |
| 324 | 3786 // printf("pic: %d, qpel:%d\n", s->pict_type, s->quarter_sample); |
| 262 | 3787 time_incr=0; |
| 21 | 3788 while (get_bits1(&s->gb) != 0) |
| 0 | 3789 time_incr++; |
| 3790 | |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3791 check_marker(&s->gb, "before time_increment"); |
| 324 | 3792 time_increment= get_bits(&s->gb, s->time_increment_bits); |
| 3793 //printf(" type:%d incr:%d increment:%d\n", s->pict_type, time_incr, time_increment); | |
| 262 | 3794 if(s->pict_type!=B_TYPE){ |
| 324 | 3795 s->last_time_base= s->time_base; |
| 262 | 3796 s->time_base+= time_incr; |
| 324 | 3797 s->time= s->time_base*s->time_increment_resolution + time_increment; |
| 3798 s->pp_time= s->time - s->last_non_b_time; | |
| 3799 s->last_non_b_time= s->time; | |
| 262 | 3800 }else{ |
| 324 | 3801 s->time= (s->last_time_base + time_incr)*s->time_increment_resolution + time_increment; |
| 3802 s->bp_time= s->last_non_b_time - s->time; | |
| 335 | 3803 if(s->pp_time <=s->bp_time){ |
| 3804 // printf("messed up order, seeking?, skiping current b frame\n"); | |
| 3805 return FRAME_SKIPED; | |
| 3806 } | |
| 262 | 3807 } |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3808 |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3809 if(check_marker(&s->gb, "before vop_coded")==0 && s->picture_number==0){ |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3810 printf("hmm, seems the headers arnt complete, trying to guess time_increment_bits\n"); |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3811 for(s->time_increment_bits++ ;s->time_increment_bits<16; s->time_increment_bits++){ |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3812 if(get_bits1(&s->gb)) break; |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3813 } |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3814 printf("my guess is %d bits ;)\n",s->time_increment_bits); |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3815 } |
| 0 | 3816 /* vop coded */ |
| 21 | 3817 if (get_bits1(&s->gb) != 1) |
| 63 | 3818 goto redo; |
| 262 | 3819 //printf("time %d %d %d || %d %d %d\n", s->time_increment_bits, s->time_increment, s->time_base, |
| 3820 //s->time, s->last_non_b_time[0], s->last_non_b_time[1]); | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3821 if (s->shape != BIN_ONLY_SHAPE && ( s->pict_type == P_TYPE |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3822 || (s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE))) { |
| 0 | 3823 /* rounding type for motion estimation */ |
| 21 | 3824 s->no_rounding = get_bits1(&s->gb); |
| 63 | 3825 } else { |
| 3826 s->no_rounding = 0; | |
| 0 | 3827 } |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3828 //FIXME reduced res stuff |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3829 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3830 if (s->shape != RECT_SHAPE) { |
| 63 | 3831 if (s->vol_sprite_usage != 1 || s->pict_type != I_TYPE) { |
| 3832 int width, height, hor_spat_ref, ver_spat_ref; | |
| 3833 | |
| 3834 width = get_bits(&s->gb, 13); | |
| 3835 skip_bits1(&s->gb); /* marker */ | |
| 3836 height = get_bits(&s->gb, 13); | |
| 3837 skip_bits1(&s->gb); /* marker */ | |
| 3838 hor_spat_ref = get_bits(&s->gb, 13); /* hor_spat_ref */ | |
| 3839 skip_bits1(&s->gb); /* marker */ | |
| 3840 ver_spat_ref = get_bits(&s->gb, 13); /* ver_spat_ref */ | |
| 3841 } | |
| 3842 skip_bits1(&s->gb); /* change_CR_disable */ | |
| 3843 | |
| 3844 if (get_bits1(&s->gb) != 0) { | |
| 3845 skip_bits(&s->gb, 8); /* constant_alpha_value */ | |
| 3846 } | |
| 3847 } | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3848 //FIXME complexity estimation stuff |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3849 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3850 if (s->shape != BIN_ONLY_SHAPE) { |
| 290 | 3851 int t; |
| 3852 t=get_bits(&s->gb, 3); /* intra dc VLC threshold */ | |
| 3853 //printf("threshold %d\n", t); | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3854 //FIXME interlaced specific bits |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3855 } |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3856 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3857 if(s->pict_type == S_TYPE && (s->vol_sprite_usage==STATIC_SPRITE || s->vol_sprite_usage==GMC_SPRITE)){ |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3858 if(s->num_sprite_warping_points){ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3859 mpeg4_decode_sprite_trajectory(s); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3860 } |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3861 if(s->sprite_brightness_change) printf("sprite_brightness_change not supported\n"); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3862 if(s->vol_sprite_usage==STATIC_SPRITE) printf("static sprite not supported\n"); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3863 } |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3864 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3865 if (s->shape != BIN_ONLY_SHAPE) { |
| 63 | 3866 /* note: we do not use quant_precision to avoid problem if no |
| 3867 MPEG4 vol header as it is found on some old opendivx | |
| 3868 movies */ | |
| 3869 s->qscale = get_bits(&s->gb, 5); | |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3870 if(s->qscale==0){ |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3871 printf("Error, header damaged or not MPEG4 header (qscale=0)\n"); |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3872 return -1; // makes no sense to continue, as there is nothing left from the image then |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3873 } |
| 63 | 3874 |
| 3875 if (s->pict_type != I_TYPE) { | |
| 3876 s->f_code = get_bits(&s->gb, 3); /* fcode_for */ | |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3877 if(s->f_code==0){ |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3878 printf("Error, header damaged or not MPEG4 header (f_code=0)\n"); |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3879 return -1; // makes no sense to continue, as the MV decoding will break very quickly |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3880 } |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3881 }else |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3882 s->f_code=1; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3883 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3884 if (s->pict_type == B_TYPE) { |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3885 s->b_code = get_bits(&s->gb, 3); |
| 262 | 3886 //printf("b-code %d\n", s->b_code); |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3887 }else |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3888 s->b_code=1; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3889 |
| 331 | 3890 //printf("quant:%d fcode:%d bcode:%d type:%d\n", s->qscale, s->f_code, s->b_code, s->pict_type); |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3891 if(!s->scalability){ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3892 if (s->shape!=RECT_SHAPE && s->pict_type!=I_TYPE) { |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3893 skip_bits1(&s->gb); // vop shape coding type |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3894 } |
| 575 | 3895 }else{ |
| 3896 if(s->enhancement_type){ | |
| 3897 int load_backward_shape= get_bits1(&s->gb); | |
| 3898 if(load_backward_shape){ | |
| 3899 printf("load backward shape isnt supported\n"); | |
| 3900 } | |
| 3901 } | |
| 3902 skip_bits(&s->gb, 2); //ref_select_code | |
| 63 | 3903 } |
| 3904 } | |
|
346
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
3905 /* detect buggy encoders which dont set the low_delay flag (divx4/xvid/opendivx)*/ |
|
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
3906 // note we cannot detect divx5 without b-frames easyly (allthough its buggy too) |
|
365
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3907 if(s->vo_type==0 && s->vol_control_parameters==0 && s->divx_version==0 && s->picture_number==0){ |
|
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3908 printf("looks like this file was encoded with (divx4/(old)xvid/opendivx) -> forcing low_delay flag\n"); |
|
346
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
3909 s->low_delay=1; |
|
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
3910 } |
|
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
3911 |
| 255 | 3912 s->picture_number++; // better than pic number==0 allways ;) |
| 333 | 3913 //printf("done\n"); |
|
346
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
3914 |
| 498 | 3915 s->y_dc_scale_table= ff_mpeg4_y_dc_scale_table; //FIXME add short header support |
| 3916 s->c_dc_scale_table= ff_mpeg4_c_dc_scale_table; | |
| 3917 | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3918 if(s->divx_version==0 || s->divx_version < 500){ |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3919 s->h_edge_pos= s->width; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3920 s->v_edge_pos= s->height; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3921 } |
| 63 | 3922 return 0; |
| 0 | 3923 } |
| 3924 | |
| 3925 /* don't understand why they choose a different header ! */ | |
| 3926 int intel_h263_decode_picture_header(MpegEncContext *s) | |
| 3927 { | |
| 3928 int format; | |
| 3929 | |
| 3930 /* picture header */ | |
| 355 | 3931 if (get_bits(&s->gb, 22) != 0x20) { |
| 3932 fprintf(stderr, "Bad picture start code\n"); | |
| 0 | 3933 return -1; |
| 355 | 3934 } |
| 3935 s->picture_number = get_bits(&s->gb, 8); /* picture timestamp */ | |
| 0 | 3936 |
| 355 | 3937 if (get_bits1(&s->gb) != 1) { |
| 3938 fprintf(stderr, "Bad marker\n"); | |
| 0 | 3939 return -1; /* marker */ |
| 355 | 3940 } |
| 3941 if (get_bits1(&s->gb) != 0) { | |
| 3942 fprintf(stderr, "Bad H263 id\n"); | |
| 0 | 3943 return -1; /* h263 id */ |
| 355 | 3944 } |
| 21 | 3945 skip_bits1(&s->gb); /* split screen off */ |
| 3946 skip_bits1(&s->gb); /* camera off */ | |
| 3947 skip_bits1(&s->gb); /* freeze picture release off */ | |
| 0 | 3948 |
| 3949 format = get_bits(&s->gb, 3); | |
| 355 | 3950 if (format != 7) { |
| 3951 fprintf(stderr, "Intel H263 free format not supported\n"); | |
| 0 | 3952 return -1; |
| 355 | 3953 } |
| 0 | 3954 s->h263_plus = 0; |
| 3955 | |
| 21 | 3956 s->pict_type = I_TYPE + get_bits1(&s->gb); |
| 0 | 3957 |
| 21 | 3958 s->unrestricted_mv = get_bits1(&s->gb); |
| 0 | 3959 s->h263_long_vectors = s->unrestricted_mv; |
| 3960 | |
| 355 | 3961 if (get_bits1(&s->gb) != 0) { |
| 3962 fprintf(stderr, "SAC not supported\n"); | |
| 0 | 3963 return -1; /* SAC: off */ |
| 355 | 3964 } |
| 3965 if (get_bits1(&s->gb) != 0) { | |
| 3966 fprintf(stderr, "Advanced Prediction Mode not supported\n"); | |
| 0 | 3967 return -1; /* advanced prediction mode: off */ |
| 355 | 3968 } |
| 3969 if (get_bits1(&s->gb) != 0) { | |
| 3970 fprintf(stderr, "PB frame mode no supported\n"); | |
| 3971 return -1; /* PB frame mode */ | |
| 3972 } | |
| 0 | 3973 |
| 3974 /* skip unknown header garbage */ | |
| 21 | 3975 skip_bits(&s->gb, 41); |
| 0 | 3976 |
| 3977 s->qscale = get_bits(&s->gb, 5); | |
| 21 | 3978 skip_bits1(&s->gb); /* Continuous Presence Multipoint mode: off */ |
| 0 | 3979 |
| 3980 /* PEI */ | |
| 21 | 3981 while (get_bits1(&s->gb) != 0) { |
| 3982 skip_bits(&s->gb, 8); | |
| 0 | 3983 } |
| 3984 s->f_code = 1; | |
| 3985 return 0; | |
| 3986 } | |
| 144 | 3987 |
