Mercurial > libavcodec.hg
annotate h263.c @ 597:d5d0c11ea4cf libavcodec
fixing level overflow check for qp=1
| author | michaelni |
|---|---|
| date | Mon, 05 Aug 2002 19:05:02 +0000 |
| parents | d3f374218030 |
| children | 0c950f816d61 |
| 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 | |
| 1125 /* h263 type bias */ | |
| 1126 //FIXME mpeg4 mpeg quantizer | |
| 1127 s->intra_quant_bias=0; | |
| 1128 s->inter_quant_bias=-(1<<(QUANT_BIAS_SHIFT-2)); //(a - x/4)/x | |
| 0 | 1129 } |
| 1130 | |
| 1131 static void h263_encode_block(MpegEncContext * s, DCTELEM * block, int n) | |
| 1132 { | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1133 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
|
1134 RLTable *rl; |
| 0 | 1135 |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1136 rl = &rl_inter; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1137 if (s->mb_intra && !s->h263_aic) { |
| 231 | 1138 /* DC coef */ |
| 1139 level = block[0]; | |
| 0 | 1140 /* 255 cannot be represented, so we clamp */ |
| 1141 if (level > 254) { | |
| 1142 level = 254; | |
| 1143 block[0] = 254; | |
| 1144 } | |
| 231 | 1145 /* 0 cannot be represented also */ |
| 1146 else if (!level) { | |
| 1147 level = 1; | |
| 1148 block[0] = 1; | |
| 1149 } | |
| 1150 if (level == 128) | |
| 1151 put_bits(&s->pb, 8, 0xff); | |
| 1152 else | |
| 1153 put_bits(&s->pb, 8, level & 0xff); | |
| 1154 i = 1; | |
| 0 | 1155 } else { |
| 231 | 1156 i = 0; |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1157 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
|
1158 rl = &rl_intra_aic; |
| 0 | 1159 } |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1160 |
| 0 | 1161 /* AC coefs */ |
| 1162 last_index = s->block_last_index[n]; | |
| 1163 last_non_zero = i - 1; | |
| 1164 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
|
1165 j = zigzag_direct[i]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1166 level = block[j]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1167 if (level) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1168 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
|
1169 last = (i == last_index); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1170 sign = 0; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1171 slevel = level; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1172 if (level < 0) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1173 sign = 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1174 level = -level; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1175 } |
| 0 | 1176 code = get_rl_index(rl, last, run, level); |
| 1177 put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 1178 if (code == rl->n) { | |
| 1179 put_bits(&s->pb, 1, last); | |
| 1180 put_bits(&s->pb, 6, run); | |
| 1181 put_bits(&s->pb, 8, slevel & 0xff); | |
| 1182 } else { | |
| 1183 put_bits(&s->pb, 1, sign); | |
| 1184 } | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1185 last_non_zero = i; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1186 } |
| 0 | 1187 } |
| 1188 } | |
| 1189 | |
| 1190 /***************************************************/ | |
| 1191 | |
| 453 | 1192 void ff_mpeg4_stuffing(PutBitContext * pbc) |
| 262 | 1193 { |
| 1194 int length; | |
| 1195 put_bits(pbc, 1, 0); | |
| 1196 length= (-get_bit_count(pbc))&7; | |
| 453 | 1197 if(length) put_bits(pbc, length, (1<<length)-1); |
| 262 | 1198 } |
| 1199 | |
| 327 | 1200 /* must be called before writing the header */ |
| 1201 void ff_set_mpeg4_time(MpegEncContext * s, int picture_number){ | |
| 1202 int time_div, time_mod; | |
| 1203 | |
| 1204 if(s->pict_type==I_TYPE){ //we will encode a vol header | |
| 1205 s->time_increment_resolution= s->frame_rate/ff_gcd(s->frame_rate, FRAME_RATE_BASE); | |
| 1206 if(s->time_increment_resolution>=256*256) s->time_increment_resolution= 256*128; | |
| 1207 | |
| 1208 s->time_increment_bits = av_log2(s->time_increment_resolution - 1) + 1; | |
| 1209 } | |
| 1210 | |
| 429 | 1211 s->time= picture_number*(INT64)FRAME_RATE_BASE*s->time_increment_resolution/s->frame_rate; |
| 327 | 1212 time_div= s->time/s->time_increment_resolution; |
| 1213 time_mod= s->time%s->time_increment_resolution; | |
| 1214 | |
| 1215 if(s->pict_type==B_TYPE){ | |
| 1216 s->bp_time= s->last_non_b_time - s->time; | |
| 1217 }else{ | |
| 1218 s->last_time_base= s->time_base; | |
| 1219 s->time_base= time_div; | |
| 1220 s->pp_time= s->time - s->last_non_b_time; | |
| 1221 s->last_non_b_time= s->time; | |
| 1222 } | |
| 1223 } | |
| 1224 | |
| 263 | 1225 static void mpeg4_encode_vol_header(MpegEncContext * s) |
| 0 | 1226 { |
| 263 | 1227 int vo_ver_id=1; //must be 2 if we want GMC or q-pel |
| 322 | 1228 char buf[255]; |
| 336 | 1229 |
| 1230 s->vo_type= s->has_b_frames ? CORE_VO_TYPE : SIMPLE_VO_TYPE; | |
| 1231 | |
| 263 | 1232 put_bits(&s->pb, 16, 0); |
| 1233 put_bits(&s->pb, 16, 0x100); /* video obj */ | |
| 1234 put_bits(&s->pb, 16, 0); | |
| 1235 put_bits(&s->pb, 16, 0x120); /* video obj layer */ | |
| 1236 | |
| 1237 put_bits(&s->pb, 1, 0); /* random access vol */ | |
| 336 | 1238 put_bits(&s->pb, 8, s->vo_type); /* video obj type indication */ |
| 263 | 1239 put_bits(&s->pb, 1, 1); /* is obj layer id= yes */ |
| 1240 put_bits(&s->pb, 4, vo_ver_id); /* is obj layer ver id */ | |
| 1241 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
|
1242 if(s->aspect_ratio_info) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1243 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
|
1244 else |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1245 put_bits(&s->pb, 4, 1); /* aspect ratio info= sqare pixel */ |
| 336 | 1246 |
| 1247 if(s->low_delay){ | |
| 1248 put_bits(&s->pb, 1, 1); /* vol control parameters= yes */ | |
| 341 | 1249 put_bits(&s->pb, 2, 1); /* chroma format YUV 420/YV12 */ |
| 336 | 1250 put_bits(&s->pb, 1, s->low_delay); |
| 1251 put_bits(&s->pb, 1, 0); /* vbv parameters= no */ | |
| 1252 }else{ | |
| 1253 put_bits(&s->pb, 1, 0); /* vol control parameters= no */ | |
| 1254 } | |
| 1255 | |
| 263 | 1256 put_bits(&s->pb, 2, RECT_SHAPE); /* vol shape= rectangle */ |
| 1257 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 324 | 1258 |
| 1259 put_bits(&s->pb, 16, s->time_increment_resolution); | |
| 263 | 1260 if (s->time_increment_bits < 1) |
| 1261 s->time_increment_bits = 1; | |
| 1262 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1263 put_bits(&s->pb, 1, 0); /* fixed vop rate=no */ | |
| 1264 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1265 put_bits(&s->pb, 13, s->width); /* vol width */ | |
| 1266 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1267 put_bits(&s->pb, 13, s->height); /* vol height */ | |
| 1268 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1269 put_bits(&s->pb, 1, 0); /* interlace */ | |
| 1270 put_bits(&s->pb, 1, 1); /* obmc disable */ | |
| 1271 if (vo_ver_id == 1) { | |
| 1272 put_bits(&s->pb, 1, s->vol_sprite_usage=0); /* sprite enable */ | |
| 1273 }else{ /* vo_ver_id == 2 */ | |
| 1274 put_bits(&s->pb, 2, s->vol_sprite_usage=0); /* sprite enable */ | |
| 1275 } | |
| 1276 put_bits(&s->pb, 1, 0); /* not 8 bit */ | |
| 1277 put_bits(&s->pb, 1, 0); /* quant type= h263 style*/ | |
| 1278 if (vo_ver_id != 1) | |
| 1279 put_bits(&s->pb, 1, s->quarter_sample=0); | |
| 1280 put_bits(&s->pb, 1, 1); /* complexity estimation disable */ | |
| 453 | 1281 s->resync_marker= s->rtp_mode; |
| 1282 put_bits(&s->pb, 1, s->resync_marker ? 0 : 1);/* resync marker disable */ | |
| 1283 put_bits(&s->pb, 1, s->data_partitioning ? 1 : 0); | |
| 1284 if(s->data_partitioning){ | |
| 1285 put_bits(&s->pb, 1, 0); /* no rvlc */ | |
| 1286 } | |
| 1287 | |
| 263 | 1288 if (vo_ver_id != 1){ |
| 1289 put_bits(&s->pb, 1, 0); /* newpred */ | |
| 1290 put_bits(&s->pb, 1, 0); /* reduced res vop */ | |
| 1291 } | |
| 1292 put_bits(&s->pb, 1, 0); /* scalability */ | |
| 1293 | |
| 453 | 1294 ff_mpeg4_stuffing(&s->pb); |
| 262 | 1295 put_bits(&s->pb, 16, 0); |
| 1296 put_bits(&s->pb, 16, 0x1B2); /* user_data */ | |
| 360 | 1297 sprintf(buf, "FFmpeg%sb%s", FFMPEG_VERSION, LIBAVCODEC_BUILD_STR); |
| 322 | 1298 put_string(&s->pb, buf); |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
1299 |
| 453 | 1300 ff_mpeg4_stuffing(&s->pb); |
| 263 | 1301 } |
| 1302 | |
| 1303 /* write mpeg4 VOP header */ | |
| 1304 void mpeg4_encode_picture_header(MpegEncContext * s, int picture_number) | |
| 1305 { | |
| 324 | 1306 int time_incr; |
| 1307 int time_div, time_mod; | |
| 1308 | |
| 453 | 1309 if(s->pict_type==I_TYPE){ |
| 1310 s->no_rounding=0; | |
| 1311 if(picture_number==0 || !s->strict_std_compliance) | |
| 1312 mpeg4_encode_vol_header(s); | |
| 1313 } | |
| 324 | 1314 |
| 1315 //printf("num:%d rate:%d base:%d\n", s->picture_number, s->frame_rate, FRAME_RATE_BASE); | |
| 1316 | |
|
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
|
1317 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
|
1318 put_bits(&s->pb, 16, 0x1B6); /* vop header */ |
| 0 | 1319 put_bits(&s->pb, 2, s->pict_type - 1); /* pict type: I = 0 , P = 1 */ |
| 324 | 1320 |
| 327 | 1321 time_div= s->time/s->time_increment_resolution; |
| 1322 time_mod= s->time%s->time_increment_resolution; | |
| 324 | 1323 time_incr= time_div - s->last_time_base; |
| 1324 while(time_incr--) | |
| 1325 put_bits(&s->pb, 1, 1); | |
| 1326 | |
| 0 | 1327 put_bits(&s->pb, 1, 0); |
| 1328 | |
| 1329 put_bits(&s->pb, 1, 1); /* marker */ | |
| 324 | 1330 put_bits(&s->pb, s->time_increment_bits, time_mod); /* time increment */ |
| 0 | 1331 put_bits(&s->pb, 1, 1); /* marker */ |
| 1332 put_bits(&s->pb, 1, 1); /* vop coded */ | |
| 263 | 1333 if ( s->pict_type == P_TYPE |
| 1334 || (s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE)) { | |
| 1335 s->no_rounding ^= 1; | |
| 0 | 1336 put_bits(&s->pb, 1, s->no_rounding); /* rounding type */ |
| 1337 } | |
| 1338 put_bits(&s->pb, 3, 0); /* intra dc VLC threshold */ | |
| 263 | 1339 //FIXME sprite stuff |
| 0 | 1340 |
| 1341 put_bits(&s->pb, 5, s->qscale); | |
| 1342 | |
| 1343 if (s->pict_type != I_TYPE) | |
| 1344 put_bits(&s->pb, 3, s->f_code); /* fcode_for */ | |
| 263 | 1345 if (s->pict_type == B_TYPE) |
| 1346 put_bits(&s->pb, 3, s->b_code); /* fcode_back */ | |
| 0 | 1347 // printf("****frame %d\n", picture_number); |
| 498 | 1348 |
| 1349 s->y_dc_scale_table= ff_mpeg4_y_dc_scale_table; //FIXME add short header support | |
| 1350 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
|
1351 s->h_edge_pos= s->width; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1352 s->v_edge_pos= s->height; |
| 0 | 1353 } |
| 1354 | |
| 498 | 1355 static void h263_dc_scale(MpegEncContext * s) |
| 0 | 1356 { |
| 498 | 1357 s->y_dc_scale= s->y_dc_scale_table[ s->qscale ]; |
| 1358 s->c_dc_scale= s->c_dc_scale_table[ s->qscale ]; | |
| 0 | 1359 } |
| 1360 | |
| 498 | 1361 inline int ff_mpeg4_pred_dc(MpegEncContext * s, int n, UINT16 **dc_val_ptr, int *dir_ptr) |
| 0 | 1362 { |
| 266 | 1363 int a, b, c, wrap, pred, scale; |
| 0 | 1364 UINT16 *dc_val; |
| 469 | 1365 int dummy; |
| 0 | 1366 |
| 1367 /* find prediction */ | |
| 1368 if (n < 4) { | |
| 1369 scale = s->y_dc_scale; | |
| 1370 } else { | |
| 1371 scale = s->c_dc_scale; | |
| 1372 } | |
| 266 | 1373 wrap= s->block_wrap[n]; |
| 1374 dc_val = s->dc_val[0] + s->block_index[n]; | |
| 0 | 1375 |
| 1376 /* B C | |
| 1377 * A X | |
| 1378 */ | |
| 266 | 1379 a = dc_val[ - 1]; |
| 1380 b = dc_val[ - 1 - wrap]; | |
| 1381 c = dc_val[ - wrap]; | |
| 0 | 1382 |
| 1383 if (abs(a - b) < abs(b - c)) { | |
| 1384 pred = c; | |
| 1385 *dir_ptr = 1; /* top */ | |
| 1386 } else { | |
| 1387 pred = a; | |
| 1388 *dir_ptr = 0; /* left */ | |
| 1389 } | |
| 1390 /* we assume pred is positive */ | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1391 #ifdef ARCH_X86 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1392 asm volatile ( |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1393 "xorl %%edx, %%edx \n\t" |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1394 "mul %%ecx \n\t" |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1395 : "=d" (pred), "=a"(dummy) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1396 : "a" (pred + (scale >> 1)), "c" (inverse[scale]) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1397 ); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1398 #else |
| 0 | 1399 pred = (pred + (scale >> 1)) / scale; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1400 #endif |
| 0 | 1401 |
| 1402 /* prepare address for prediction update */ | |
| 266 | 1403 *dc_val_ptr = &dc_val[0]; |
| 0 | 1404 |
| 1405 return pred; | |
| 1406 } | |
| 1407 | |
|
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
162
diff
changeset
|
1408 void mpeg4_pred_ac(MpegEncContext * s, INT16 *block, int n, |
| 0 | 1409 int dir) |
| 1410 { | |
| 266 | 1411 int i; |
| 0 | 1412 INT16 *ac_val, *ac_val1; |
| 1413 | |
| 1414 /* find prediction */ | |
| 266 | 1415 ac_val = s->ac_val[0][0] + s->block_index[n] * 16; |
| 0 | 1416 ac_val1 = ac_val; |
| 1417 if (s->ac_pred) { | |
| 1418 if (dir == 0) { | |
| 575 | 1419 const int xy= s->mb_x-1 + s->mb_y*s->mb_width; |
| 0 | 1420 /* left prediction */ |
| 1421 ac_val -= 16; | |
| 575 | 1422 |
| 1423 if(s->mb_x==0 || s->qscale == s->qscale_table[xy] || n==1 || n==3){ | |
| 1424 /* same qscale */ | |
| 1425 for(i=1;i<8;i++) { | |
| 1426 block[block_permute_op(i*8)] += ac_val[i]; | |
| 1427 } | |
| 1428 }else{ | |
| 1429 /* different qscale, we must rescale */ | |
| 1430 for(i=1;i<8;i++) { | |
| 1431 block[block_permute_op(i*8)] += ROUNDED_DIV(ac_val[i]*s->qscale_table[xy], s->qscale); | |
| 1432 } | |
| 0 | 1433 } |
| 1434 } else { | |
| 575 | 1435 const int xy= s->mb_x + s->mb_y*s->mb_width - s->mb_width; |
| 0 | 1436 /* top prediction */ |
| 266 | 1437 ac_val -= 16 * s->block_wrap[n]; |
| 575 | 1438 |
| 1439 if(s->mb_y==0 || s->qscale == s->qscale_table[xy] || n==2 || n==3){ | |
| 1440 /* same qscale */ | |
| 1441 for(i=1;i<8;i++) { | |
| 1442 block[block_permute_op(i)] += ac_val[i + 8]; | |
| 1443 } | |
| 1444 }else{ | |
| 1445 /* different qscale, we must rescale */ | |
| 1446 for(i=1;i<8;i++) { | |
| 1447 block[block_permute_op(i)] += ROUNDED_DIV(ac_val[i + 8]*s->qscale_table[xy], s->qscale); | |
| 1448 } | |
| 0 | 1449 } |
| 1450 } | |
| 1451 } | |
| 1452 /* left copy */ | |
| 1453 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
|
1454 ac_val1[i] = block[block_permute_op(i * 8)]; |
| 591 | 1455 |
| 0 | 1456 /* top copy */ |
| 1457 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
|
1458 ac_val1[8 + i] = block[block_permute_op(i)]; |
| 591 | 1459 |
| 0 | 1460 } |
| 1461 | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1462 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
|
1463 int dir) |
| 0 | 1464 { |
| 266 | 1465 int i; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1466 INT16 *ac_val; |
| 0 | 1467 |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1468 /* find prediction */ |
| 266 | 1469 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
|
1470 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1471 if (dir == 0) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1472 /* left prediction */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1473 ac_val -= 16; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1474 for(i=1;i<8;i++) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1475 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
|
1476 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1477 } else { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1478 /* top prediction */ |
| 266 | 1479 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
|
1480 for(i=1;i<8;i++) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1481 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
|
1482 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1483 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1484 } |
| 0 | 1485 |
| 453 | 1486 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
|
1487 { |
| 293 | 1488 #if 1 |
| 453 | 1489 // if(level<-255 || level>255) printf("dc overflow\n"); |
| 293 | 1490 level+=256; |
| 1491 if (n < 4) { | |
| 1492 /* luminance */ | |
| 453 | 1493 put_bits(s, uni_DCtab_lum[level][1], uni_DCtab_lum[level][0]); |
| 293 | 1494 } else { |
| 1495 /* chrominance */ | |
| 453 | 1496 put_bits(s, uni_DCtab_chrom[level][1], uni_DCtab_chrom[level][0]); |
| 293 | 1497 } |
| 1498 #else | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1499 int size, v; |
| 0 | 1500 /* find number of bits */ |
| 1501 size = 0; | |
| 1502 v = abs(level); | |
| 1503 while (v) { | |
| 1504 v >>= 1; | |
| 1505 size++; | |
| 1506 } | |
| 1507 | |
| 1508 if (n < 4) { | |
| 1509 /* luminance */ | |
| 1510 put_bits(&s->pb, DCtab_lum[size][1], DCtab_lum[size][0]); | |
| 1511 } else { | |
| 1512 /* chrominance */ | |
| 1513 put_bits(&s->pb, DCtab_chrom[size][1], DCtab_chrom[size][0]); | |
| 1514 } | |
| 1515 | |
| 1516 /* encode remaining bits */ | |
| 1517 if (size > 0) { | |
| 1518 if (level < 0) | |
| 1519 level = (-level) ^ ((1 << size) - 1); | |
| 1520 put_bits(&s->pb, size, level); | |
| 1521 if (size > 8) | |
| 1522 put_bits(&s->pb, 1, 1); | |
| 1523 } | |
| 293 | 1524 #endif |
| 0 | 1525 } |
| 1526 | |
| 453 | 1527 static void mpeg4_encode_block(MpegEncContext * s, DCTELEM * block, int n, int intra_dc, |
| 1528 UINT8 *scan_table, PutBitContext *dc_pb, PutBitContext *ac_pb) | |
| 0 | 1529 { |
| 1530 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
|
1531 int code; |
| 0 | 1532 const RLTable *rl; |
| 1533 | |
| 1534 if (s->mb_intra) { | |
| 1535 /* mpeg4 based DC predictor */ | |
| 453 | 1536 mpeg4_encode_dc(dc_pb, intra_dc, n); |
| 0 | 1537 i = 1; |
| 1538 rl = &rl_intra; | |
| 1539 } else { | |
| 1540 i = 0; | |
| 1541 rl = &rl_inter; | |
| 1542 } | |
| 1543 | |
| 1544 /* AC coefs */ | |
| 1545 last_index = s->block_last_index[n]; | |
| 1546 last_non_zero = i - 1; | |
| 1547 for (; i <= last_index; i++) { | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1548 j = scan_table[i]; |
| 0 | 1549 level = block[j]; |
| 1550 if (level) { | |
| 1551 run = i - last_non_zero - 1; | |
| 1552 last = (i == last_index); | |
| 1553 sign = 0; | |
| 1554 slevel = level; | |
| 1555 if (level < 0) { | |
| 1556 sign = 1; | |
| 1557 level = -level; | |
| 1558 } | |
| 1559 code = get_rl_index(rl, last, run, level); | |
| 453 | 1560 put_bits(ac_pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); |
| 0 | 1561 if (code == rl->n) { |
| 1562 int level1, run1; | |
| 1563 level1 = level - rl->max_level[last][run]; | |
| 1564 if (level1 < 1) | |
| 1565 goto esc2; | |
| 1566 code = get_rl_index(rl, last, run, level1); | |
| 1567 if (code == rl->n) { | |
| 1568 esc2: | |
| 453 | 1569 put_bits(ac_pb, 1, 1); |
| 0 | 1570 if (level > MAX_LEVEL) |
| 1571 goto esc3; | |
| 1572 run1 = run - rl->max_run[last][level] - 1; | |
| 1573 if (run1 < 0) | |
| 1574 goto esc3; | |
| 1575 code = get_rl_index(rl, last, run1, level); | |
| 1576 if (code == rl->n) { | |
| 1577 esc3: | |
| 1578 /* third escape */ | |
| 453 | 1579 put_bits(ac_pb, 1, 1); |
| 1580 put_bits(ac_pb, 1, last); | |
| 1581 put_bits(ac_pb, 6, run); | |
| 1582 put_bits(ac_pb, 1, 1); | |
| 1583 put_bits(ac_pb, 12, slevel & 0xfff); | |
| 1584 put_bits(ac_pb, 1, 1); | |
| 0 | 1585 } else { |
| 1586 /* second escape */ | |
| 453 | 1587 put_bits(ac_pb, 1, 0); |
| 1588 put_bits(ac_pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 1589 put_bits(ac_pb, 1, sign); | |
| 0 | 1590 } |
| 1591 } else { | |
| 1592 /* first escape */ | |
| 453 | 1593 put_bits(ac_pb, 1, 0); |
| 1594 put_bits(ac_pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 1595 put_bits(ac_pb, 1, sign); | |
| 0 | 1596 } |
| 1597 } else { | |
| 453 | 1598 put_bits(ac_pb, 1, sign); |
| 0 | 1599 } |
| 1600 last_non_zero = i; | |
| 1601 } | |
| 1602 } | |
| 1603 } | |
| 1604 | |
| 1605 | |
| 1606 | |
| 1607 /***********************************************/ | |
| 1608 /* decoding */ | |
| 1609 | |
| 1610 static VLC intra_MCBPC_vlc; | |
| 1611 static VLC inter_MCBPC_vlc; | |
| 1612 static VLC cbpy_vlc; | |
| 1613 static VLC mv_vlc; | |
| 1614 static VLC dc_lum, dc_chrom; | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1615 static VLC sprite_trajectory; |
| 262 | 1616 static VLC mb_type_b_vlc; |
| 0 | 1617 |
| 1618 void init_rl(RLTable *rl) | |
| 1619 { | |
| 1620 INT8 max_level[MAX_RUN+1], max_run[MAX_LEVEL+1]; | |
| 1621 UINT8 index_run[MAX_RUN+1]; | |
| 1622 int last, run, level, start, end, i; | |
| 1623 | |
| 1624 /* compute max_level[], max_run[] and index_run[] */ | |
| 1625 for(last=0;last<2;last++) { | |
| 1626 if (last == 0) { | |
| 1627 start = 0; | |
| 1628 end = rl->last; | |
| 1629 } else { | |
| 1630 start = rl->last; | |
| 1631 end = rl->n; | |
| 1632 } | |
| 1633 | |
| 1634 memset(max_level, 0, MAX_RUN + 1); | |
| 1635 memset(max_run, 0, MAX_LEVEL + 1); | |
| 1636 memset(index_run, rl->n, MAX_RUN + 1); | |
| 1637 for(i=start;i<end;i++) { | |
| 1638 run = rl->table_run[i]; | |
| 1639 level = rl->table_level[i]; | |
| 1640 if (index_run[run] == rl->n) | |
| 1641 index_run[run] = i; | |
| 1642 if (level > max_level[run]) | |
| 1643 max_level[run] = level; | |
| 1644 if (run > max_run[level]) | |
| 1645 max_run[level] = run; | |
| 1646 } | |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
365
diff
changeset
|
1647 rl->max_level[last] = av_malloc(MAX_RUN + 1); |
| 0 | 1648 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
|
1649 rl->max_run[last] = av_malloc(MAX_LEVEL + 1); |
| 0 | 1650 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
|
1651 rl->index_run[last] = av_malloc(MAX_RUN + 1); |
| 0 | 1652 memcpy(rl->index_run[last], index_run, MAX_RUN + 1); |
| 1653 } | |
| 1654 } | |
| 1655 | |
| 1656 void init_vlc_rl(RLTable *rl) | |
| 1657 { | |
| 542 | 1658 int i, q; |
| 1659 | |
| 0 | 1660 init_vlc(&rl->vlc, 9, rl->n + 1, |
| 1661 &rl->table_vlc[0][1], 4, 2, | |
| 1662 &rl->table_vlc[0][0], 4, 2); | |
| 542 | 1663 |
| 1664 | |
| 1665 for(q=0; q<32; q++){ | |
| 1666 int qmul= q*2; | |
| 1667 int qadd= (q-1)|1; | |
| 1668 | |
| 1669 if(q==0){ | |
| 1670 qmul=1; | |
| 1671 qadd=0; | |
| 1672 } | |
| 1673 | |
| 1674 rl->rl_vlc[q]= av_malloc(rl->vlc.table_size*sizeof(RL_VLC_ELEM)); | |
| 1675 for(i=0; i<rl->vlc.table_size; i++){ | |
| 1676 int code= rl->vlc.table[i][0]; | |
| 1677 int len = rl->vlc.table[i][1]; | |
| 1678 int level, run; | |
| 1679 | |
| 1680 if(len==0){ // illegal code | |
| 563 | 1681 run= 66; |
| 542 | 1682 level= MAX_LEVEL; |
| 1683 }else if(len<0){ //more bits needed | |
| 1684 run= 0; | |
| 1685 level= code; | |
| 1686 }else{ | |
| 1687 if(code==rl->n){ //esc | |
| 563 | 1688 run= 66; |
| 542 | 1689 level= 0; |
| 1690 }else{ | |
| 1691 run= rl->table_run [code] + 1; | |
| 1692 level= rl->table_level[code] * qmul + qadd; | |
| 1693 if(code >= rl->last) run+=192; | |
| 1694 } | |
| 1695 } | |
| 1696 rl->rl_vlc[q][i].len= len; | |
| 1697 rl->rl_vlc[q][i].level= level; | |
| 1698 rl->rl_vlc[q][i].run= run; | |
| 1699 } | |
| 1700 } | |
| 0 | 1701 } |
| 1702 | |
| 1703 /* init vlcs */ | |
| 1704 | |
| 1705 /* XXX: find a better solution to handle static init */ | |
| 1706 void h263_decode_init_vlc(MpegEncContext *s) | |
| 1707 { | |
| 1708 static int done = 0; | |
| 1709 | |
| 1710 if (!done) { | |
| 1711 done = 1; | |
| 1712 | |
| 544 | 1713 init_vlc(&intra_MCBPC_vlc, INTRA_MCBPC_VLC_BITS, 8, |
| 0 | 1714 intra_MCBPC_bits, 1, 1, |
| 1715 intra_MCBPC_code, 1, 1); | |
| 544 | 1716 init_vlc(&inter_MCBPC_vlc, INTER_MCBPC_VLC_BITS, 25, |
| 0 | 1717 inter_MCBPC_bits, 1, 1, |
| 1718 inter_MCBPC_code, 1, 1); | |
| 544 | 1719 init_vlc(&cbpy_vlc, CBPY_VLC_BITS, 16, |
| 0 | 1720 &cbpy_tab[0][1], 2, 1, |
| 1721 &cbpy_tab[0][0], 2, 1); | |
| 544 | 1722 init_vlc(&mv_vlc, MV_VLC_BITS, 33, |
| 0 | 1723 &mvtab[0][1], 2, 1, |
| 1724 &mvtab[0][0], 2, 1); | |
| 1725 init_rl(&rl_inter); | |
| 1726 init_rl(&rl_intra); | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
1727 init_rl(&rl_intra_aic); |
| 0 | 1728 init_vlc_rl(&rl_inter); |
| 1729 init_vlc_rl(&rl_intra); | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
1730 init_vlc_rl(&rl_intra_aic); |
| 549 | 1731 init_vlc(&dc_lum, DC_VLC_BITS, 10 /* 13 */, |
| 0 | 1732 &DCtab_lum[0][1], 2, 1, |
| 1733 &DCtab_lum[0][0], 2, 1); | |
| 549 | 1734 init_vlc(&dc_chrom, DC_VLC_BITS, 10 /* 13 */, |
| 0 | 1735 &DCtab_chrom[0][1], 2, 1, |
| 1736 &DCtab_chrom[0][0], 2, 1); | |
| 544 | 1737 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
|
1738 &sprite_trajectory_tab[0][1], 4, 2, |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1739 &sprite_trajectory_tab[0][0], 4, 2); |
| 544 | 1740 init_vlc(&mb_type_b_vlc, MB_TYPE_B_VLC_BITS, 4, |
| 262 | 1741 &mb_type_b_tab[0][1], 2, 1, |
| 1742 &mb_type_b_tab[0][0], 2, 1); | |
| 0 | 1743 } |
| 1744 } | |
| 1745 | |
| 162 | 1746 int h263_decode_gob_header(MpegEncContext *s) |
| 1747 { | |
| 1748 unsigned int val, gfid; | |
| 1749 | |
| 1750 /* Check for GOB Start Code */ | |
| 1751 val = show_bits(&s->gb, 16); | |
| 1752 if (val == 0) { | |
| 1753 /* We have a GBSC probably with GSTUFF */ | |
| 1754 skip_bits(&s->gb, 16); /* Drop the zeros */ | |
| 1755 while (get_bits1(&s->gb) == 0); /* Seek the '1' bit */ | |
| 1756 #ifdef DEBUG | |
| 1757 fprintf(stderr,"\nGOB Start Code at MB %d\n", (s->mb_y * s->mb_width) + s->mb_x); | |
| 1758 #endif | |
| 1759 s->gob_number = get_bits(&s->gb, 5); /* GN */ | |
| 1760 gfid = get_bits(&s->gb, 2); /* GFID */ | |
| 1761 s->qscale = get_bits(&s->gb, 5); /* GQUANT */ | |
| 1762 #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
|
1763 fprintf(stderr, "\nGN: %u GFID: %u Quant: %u\n", s->gob_number, gfid, s->qscale); |
| 162 | 1764 #endif |
| 1765 return 1; | |
| 1766 } | |
| 1767 return 0; | |
| 1768 | |
| 1769 } | |
| 1770 | |
| 290 | 1771 static inline void memsetw(short *tab, int val, int n) |
| 1772 { | |
| 1773 int i; | |
| 1774 for(i=0;i<n;i++) | |
| 1775 tab[i] = val; | |
| 1776 } | |
| 1777 | |
| 453 | 1778 void ff_mpeg4_init_partitions(MpegEncContext *s) |
| 1779 { | |
| 1780 init_put_bits(&s->tex_pb, s->tex_pb_buffer, PB_BUFFER_SIZE, NULL, NULL); | |
| 1781 init_put_bits(&s->pb2 , s->pb2_buffer , PB_BUFFER_SIZE, NULL, NULL); | |
| 1782 } | |
| 1783 | |
| 1784 void ff_mpeg4_merge_partitions(MpegEncContext *s) | |
| 290 | 1785 { |
| 453 | 1786 const int pb2_len = get_bit_count(&s->pb2 ); |
| 1787 const int tex_pb_len= get_bit_count(&s->tex_pb); | |
| 1788 const int bits= get_bit_count(&s->pb); | |
| 1789 | |
| 1790 if(s->pict_type==I_TYPE){ | |
| 1791 put_bits(&s->pb, 19, DC_MARKER); | |
| 1792 s->misc_bits+=19 + pb2_len + bits - s->last_bits; | |
| 1793 s->i_tex_bits+= tex_pb_len; | |
| 1794 }else{ | |
| 1795 put_bits(&s->pb, 17, MOTION_MARKER); | |
| 1796 s->misc_bits+=17 + pb2_len;; | |
| 1797 s->mv_bits+= bits - s->last_bits; | |
| 1798 s->p_tex_bits+= tex_pb_len; | |
| 1799 } | |
| 1800 | |
| 1801 flush_put_bits(&s->pb2); | |
| 1802 flush_put_bits(&s->tex_pb); | |
| 1803 | |
| 1804 ff_copy_bits(&s->pb, s->pb2_buffer , pb2_len); | |
| 1805 ff_copy_bits(&s->pb, s->tex_pb_buffer, tex_pb_len); | |
| 1806 s->last_bits= get_bit_count(&s->pb); | |
| 1807 } | |
| 1808 | |
| 1809 void ff_mpeg4_encode_video_packet_header(MpegEncContext *s) | |
| 1810 { | |
| 1811 int mb_num_bits= av_log2(s->mb_num - 1) + 1; | |
| 1812 | |
| 1813 ff_mpeg4_stuffing(&s->pb); | |
| 1814 if(s->pict_type==I_TYPE) | |
| 1815 put_bits(&s->pb, 16, 0); | |
| 1816 else if(s->pict_type==B_TYPE) | |
| 1817 put_bits(&s->pb, MAX(MAX(s->f_code, s->b_code)+15, 17), 0); | |
| 1818 else /* S/P_TYPE */ | |
| 1819 put_bits(&s->pb, s->f_code+15, 0); | |
| 1820 put_bits(&s->pb, 1, 1); | |
| 1821 | |
| 1822 put_bits(&s->pb, mb_num_bits, s->mb_x + s->mb_y*s->mb_width); | |
| 1823 put_bits(&s->pb, 5, s->qscale); | |
| 1824 put_bits(&s->pb, 1, 0); /* no HEC */ | |
| 1825 } | |
| 1826 | |
| 1827 /** | |
| 1828 * decodes the next video packet and sets s->next_qscale | |
| 1829 * returns mb_num of the next packet or <0 if something went wrong | |
| 1830 */ | |
| 1831 static int decode_video_packet_header(MpegEncContext *s, GetBitContext *gb) | |
| 1832 { | |
| 1833 int bits; | |
| 290 | 1834 int mb_num_bits= av_log2(s->mb_num - 1) + 1; |
| 1835 int header_extension=0, mb_num; | |
| 453 | 1836 //printf("%X\n", show_bits(&gb, 24)); |
| 1837 //printf("parse_video_packet_header\n"); | |
| 1838 // if(show_aligned_bits(gb, 1, 16) != 0) return -1; | |
| 1839 | |
| 1840 /* is there enough space left for a video packet + header */ | |
| 1841 if( get_bits_count(gb) > gb->size*8-20) return -1; | |
| 1842 | |
| 290 | 1843 //printf("resync at %d %d\n", s->mb_x, s->mb_y); |
| 453 | 1844 // skip_bits(gb, 1); |
| 1845 // align_get_bits(gb); | |
| 1846 if(get_bits(gb, 16)!=0){ | |
| 1847 printf("internal error while decoding video packet header\n"); | |
| 1848 } | |
| 1849 | |
| 1850 //printf("%X\n", show_bits(gb, 24)); | |
| 1851 bits=0; | |
| 1852 while(!get_bits1(gb) && bits<30) bits++; | |
| 1853 if((s->pict_type == P_TYPE || s->pict_type == S_TYPE) && bits != s->f_code-1){ | |
| 1854 printf("marker does not match f_code (is: %d should be: %d pos: %d end %d x: %d y: %d)\n", | |
| 1855 bits+1, s->f_code, get_bits_count(gb), gb->size*8, s->mb_x, s->mb_y); | |
| 1856 return -1; | |
| 1857 }else if(s->pict_type == I_TYPE && bits != 0){ | |
| 1858 printf("marker too long\n"); | |
| 1859 return -1; | |
| 1860 }else if(s->pict_type == B_TYPE && bits != MAX(MAX(s->f_code, s->b_code)-1, 1)){ | |
| 1861 printf("marker does not match f/b_code\n"); | |
| 1862 return -1; | |
| 1863 } | |
| 1864 //printf("%X\n", show_bits(gb, 24)); | |
| 1865 | |
| 1866 if(s->shape != RECT_SHAPE){ | |
| 1867 header_extension= get_bits1(gb); | |
| 1868 //FIXME more stuff here | |
| 1869 } | |
| 1870 | |
| 1871 mb_num= get_bits(gb, mb_num_bits); | |
| 1872 if(mb_num < s->mb_x + s->mb_y*s->mb_width || mb_num>=s->mb_num){ | |
| 1873 fprintf(stderr, "illegal mb_num in video packet (%d %d) \n", mb_num, s->mb_x + s->mb_y*s->mb_width); | |
| 1874 return -1; | |
| 1875 } | |
| 1876 | |
| 1877 if(s->shape != BIN_ONLY_SHAPE){ | |
| 1878 s->next_resync_qscale= get_bits(gb, 5); | |
| 1879 if(s->next_resync_qscale==0) | |
| 1880 s->next_resync_qscale= s->qscale; | |
| 1881 if(s->next_resync_qscale==0){ | |
| 1882 fprintf(stderr, "qscale==0\n"); | |
| 290 | 1883 return -1; |
| 1884 } | |
| 1885 } | |
| 1886 | |
| 1887 if(s->shape == RECT_SHAPE){ | |
| 453 | 1888 header_extension= get_bits1(gb); |
| 290 | 1889 } |
| 1890 if(header_extension){ | |
| 453 | 1891 int time_increment; |
| 290 | 1892 int time_incr=0; |
| 453 | 1893 printf("header extension not supported\n"); |
| 1894 return -1; | |
| 1895 | |
| 1896 while (get_bits1(gb) != 0) | |
| 290 | 1897 time_incr++; |
| 1898 | |
| 453 | 1899 check_marker(gb, "before time_increment in video packed header"); |
| 1900 time_increment= get_bits(gb, s->time_increment_bits); | |
| 290 | 1901 if(s->pict_type!=B_TYPE){ |
| 324 | 1902 s->last_time_base= s->time_base; |
| 290 | 1903 s->time_base+= time_incr; |
| 324 | 1904 s->time= s->time_base*s->time_increment_resolution + time_increment; |
| 1905 s->pp_time= s->time - s->last_non_b_time; | |
| 1906 s->last_non_b_time= s->time; | |
| 290 | 1907 }else{ |
| 324 | 1908 s->time= (s->last_time_base + time_incr)*s->time_increment_resolution + time_increment; |
| 1909 s->bp_time= s->last_non_b_time - s->time; | |
| 290 | 1910 } |
| 453 | 1911 check_marker(gb, "before vop_coding_type in video packed header"); |
| 290 | 1912 |
| 453 | 1913 skip_bits(gb, 2); /* vop coding type */ |
| 290 | 1914 //FIXME not rect stuff here |
| 1915 | |
| 1916 if(s->shape != BIN_ONLY_SHAPE){ | |
| 453 | 1917 skip_bits(gb, 3); /* intra dc vlc threshold */ |
| 290 | 1918 |
| 1919 if(s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE && s->num_sprite_warping_points){ | |
| 1920 mpeg4_decode_sprite_trajectory(s); | |
| 1921 } | |
| 1922 | |
| 1923 //FIXME reduced res stuff here | |
| 1924 | |
| 1925 if (s->pict_type != I_TYPE) { | |
| 453 | 1926 s->f_code = get_bits(gb, 3); /* fcode_for */ |
| 290 | 1927 if(s->f_code==0){ |
| 1928 printf("Error, video packet header damaged or not MPEG4 header (f_code=0)\n"); | |
| 1929 return -1; // makes no sense to continue, as the MV decoding will break very quickly | |
| 1930 } | |
| 1931 } | |
| 1932 if (s->pict_type == B_TYPE) { | |
| 453 | 1933 s->b_code = get_bits(gb, 3); |
| 290 | 1934 } |
| 1935 } | |
| 1936 } | |
| 1937 //FIXME new-pred stuff | |
| 453 | 1938 |
| 1939 //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)); | |
| 1940 | |
| 1941 return mb_num; | |
| 1942 } | |
| 1943 | |
| 1944 void ff_mpeg4_clean_buffers(MpegEncContext *s) | |
| 1945 { | |
| 1946 int c_wrap, c_xy, l_wrap, l_xy; | |
| 290 | 1947 |
| 1948 l_wrap= s->block_wrap[0]; | |
| 453 | 1949 l_xy= s->mb_y*l_wrap*2 + s->mb_x*2; |
| 290 | 1950 c_wrap= s->block_wrap[4]; |
| 453 | 1951 c_xy= s->mb_y*c_wrap + s->mb_x; |
| 290 | 1952 |
| 1953 /* clean DC */ | |
| 453 | 1954 memsetw(s->dc_val[0] + l_xy, 1024, l_wrap*2+1); |
| 1955 memsetw(s->dc_val[1] + c_xy, 1024, c_wrap+1); | |
| 1956 memsetw(s->dc_val[2] + c_xy, 1024, c_wrap+1); | |
| 290 | 1957 |
| 1958 /* clean AC */ | |
| 453 | 1959 memset(s->ac_val[0] + l_xy, 0, (l_wrap*2+1)*16*sizeof(INT16)); |
| 1960 memset(s->ac_val[1] + c_xy, 0, (c_wrap +1)*16*sizeof(INT16)); | |
| 1961 memset(s->ac_val[2] + c_xy, 0, (c_wrap +1)*16*sizeof(INT16)); | |
| 290 | 1962 |
| 1963 /* clean MV */ | |
| 453 | 1964 // we cant clear the MVs as they might be needed by a b frame |
| 1965 // memset(s->motion_val + l_xy, 0, (l_wrap*2+1)*2*sizeof(INT16)); | |
| 290 | 1966 // memset(s->motion_val, 0, 2*sizeof(INT16)*(2 + s->mb_width*2)*(2 + s->mb_height*2)); |
| 453 | 1967 s->last_mv[0][0][0]= |
| 1968 s->last_mv[0][0][1]= | |
| 1969 s->last_mv[1][0][0]= | |
| 1970 s->last_mv[1][0][1]= 0; | |
| 1971 } | |
| 1972 | |
| 1973 /* searches for the next resync marker clears ac,dc,mc, and sets s->next_resync_gb, s->mb_num_left */ | |
| 1974 int ff_mpeg4_resync(MpegEncContext *s) | |
| 1975 { | |
| 1976 GetBitContext gb; | |
| 1977 | |
| 1978 /* search & parse next resync marker */ | |
| 1979 | |
| 1980 gb= s->next_resync_gb; | |
| 1981 align_get_bits(&gb); | |
| 1982 //printf("mpeg4_resync %d next:%d \n", get_bits_count(&gb), get_bits_count(&s->next_resync_gb)); | |
| 1983 for(;;) { | |
| 1984 int v= show_bits(&gb, 24); | |
| 1985 if( get_bits_count(&gb) >= gb.size*8-24 || v == 1 /* start-code */){ | |
| 1986 s->mb_num_left= s->mb_num - s->mb_x - s->mb_y*s->mb_width; | |
| 1987 //printf("mpeg4_resync end\n"); | |
| 1988 s->gb= s->next_resync_gb; //continue at the next resync marker | |
| 1989 return -1; | |
| 1990 }else if(v>>8 == 0){ | |
| 1991 int next; | |
| 1992 s->next_resync_pos= get_bits_count(&gb); | |
| 1993 | |
| 1994 next= decode_video_packet_header(s, &gb); | |
| 1995 if(next >= 0){ | |
| 1996 s->mb_num_left= next - s->mb_x - s->mb_y*s->mb_width; | |
| 1997 break; | |
| 1998 } | |
| 1999 | |
| 2000 align_get_bits(&gb); | |
| 2001 } | |
| 2002 skip_bits(&gb, 8); | |
| 2003 } | |
| 2004 s->next_resync_gb=gb; | |
| 2005 | |
| 2006 return 0; | |
| 2007 } | |
| 2008 | |
| 2009 static inline void init_block_index(MpegEncContext *s) | |
| 2010 { | |
| 2011 s->block_index[0]= s->block_wrap[0]*(s->mb_y*2 + 1) - 1 + s->mb_x*2; | |
| 2012 s->block_index[1]= s->block_wrap[0]*(s->mb_y*2 + 1) + s->mb_x*2; | |
| 2013 s->block_index[2]= s->block_wrap[0]*(s->mb_y*2 + 2) - 1 + s->mb_x*2; | |
| 2014 s->block_index[3]= s->block_wrap[0]*(s->mb_y*2 + 2) + s->mb_x*2; | |
| 2015 s->block_index[4]= s->block_wrap[4]*(s->mb_y + 1) + s->block_wrap[0]*(s->mb_height*2 + 2) + s->mb_x; | |
| 2016 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; | |
| 2017 } | |
| 2018 | |
| 2019 static inline void update_block_index(MpegEncContext *s) | |
| 2020 { | |
| 2021 s->block_index[0]+=2; | |
| 2022 s->block_index[1]+=2; | |
| 2023 s->block_index[2]+=2; | |
| 2024 s->block_index[3]+=2; | |
| 2025 s->block_index[4]++; | |
| 2026 s->block_index[5]++; | |
| 2027 } | |
| 2028 | |
| 2029 /** | |
| 2030 * decodes the first & second partition | |
| 2031 * returns error type or 0 if no error | |
| 2032 */ | |
| 2033 int ff_mpeg4_decode_partitions(MpegEncContext *s) | |
| 2034 { | |
| 2035 static const INT8 quant_tab[4] = { -1, -2, 1, 2 }; | |
| 2036 int mb_num; | |
| 2037 | |
| 2038 /* decode first partition */ | |
| 2039 mb_num=0; | |
| 290 | 2040 s->first_slice_line=1; |
| 453 | 2041 s->mb_x= s->resync_mb_x; |
| 2042 for(s->mb_y= s->resync_mb_y; mb_num < s->mb_num_left; s->mb_y++){ | |
| 2043 init_block_index(s); | |
| 2044 for(; mb_num < s->mb_num_left && s->mb_x<s->mb_width; s->mb_x++){ | |
| 2045 const int xy= s->mb_x + s->mb_y*s->mb_width; | |
| 2046 int cbpc; | |
| 2047 int dir=0; | |
| 2048 | |
| 2049 mb_num++; | |
| 2050 update_block_index(s); | |
| 2051 if(s->mb_x == s->resync_mb_x && s->mb_y == s->resync_mb_y+1) | |
| 2052 s->first_slice_line=0; | |
| 2053 | |
| 2054 if(s->mb_x==0) PRINT_MB_TYPE("\n"); | |
| 2055 | |
| 2056 if(s->pict_type==I_TYPE){ | |
| 2057 int i; | |
| 2058 | |
| 2059 PRINT_MB_TYPE("I"); | |
| 544 | 2060 cbpc = get_vlc2(&s->gb, intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 1); |
| 453 | 2061 if (cbpc < 0){ |
| 2062 fprintf(stderr, "cbpc corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2063 return DECODING_DESYNC; | |
| 2064 } | |
| 2065 s->cbp_table[xy]= cbpc & 3; | |
| 2066 s->mb_type[xy]= MB_TYPE_INTRA; | |
| 2067 s->mb_intra = 1; | |
| 2068 | |
| 2069 if(cbpc & 4) { | |
| 2070 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2071 if (s->qscale < 1) | |
| 2072 s->qscale = 1; | |
| 2073 else if (s->qscale > 31) | |
| 2074 s->qscale = 31; | |
| 2075 h263_dc_scale(s); | |
| 2076 } | |
| 2077 s->qscale_table[xy]= s->qscale; | |
| 2078 | |
| 2079 s->mbintra_table[xy]= 1; | |
| 2080 for(i=0; i<6; i++){ | |
| 2081 int dc_pred_dir; | |
| 2082 int dc= mpeg4_decode_dc(s, i, &dc_pred_dir); | |
| 2083 if(dc < 0){ | |
| 2084 fprintf(stderr, "DC corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2085 return DECODING_DESYNC; | |
| 2086 } | |
| 2087 dir<<=1; | |
| 2088 if(dc_pred_dir) dir|=1; | |
| 2089 } | |
| 2090 s->pred_dir_table[xy]= dir; | |
| 2091 }else{ /* P/S_TYPE */ | |
| 2092 int mx, my, pred_x, pred_y; | |
| 2093 INT16 * const mot_val= s->motion_val[s->block_index[0]]; | |
| 2094 const int stride= s->block_wrap[0]*2; | |
| 2095 | |
| 2096 if(get_bits1(&s->gb)){ | |
| 2097 /* skip mb */ | |
| 2098 s->mb_type[xy]= MB_TYPE_SKIPED; | |
| 2099 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE){ | |
| 2100 const int a= s->sprite_warping_accuracy; | |
| 2101 PRINT_MB_TYPE("G"); | |
| 2102 if(s->divx_version==500 && s->divx_build==413){ | |
| 2103 mx = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
| 2104 my = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
| 2105 }else{ | |
| 2106 mx = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2107 my = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2108 s->mb_type[xy]= MB_TYPE_GMC | MB_TYPE_SKIPED; | |
| 2109 } | |
| 2110 }else{ | |
| 2111 PRINT_MB_TYPE("S"); | |
| 2112 mx = 0; | |
| 2113 my = 0; | |
| 2114 } | |
| 2115 mot_val[0 ]= mot_val[2 ]= | |
| 2116 mot_val[0+stride]= mot_val[2+stride]= mx; | |
| 2117 mot_val[1 ]= mot_val[3 ]= | |
| 2118 mot_val[1+stride]= mot_val[3+stride]= my; | |
| 2119 | |
| 2120 if(s->mbintra_table[xy]) | |
| 2121 ff_clean_intra_table_entries(s); | |
| 2122 | |
| 2123 continue; | |
| 2124 } | |
| 544 | 2125 cbpc = get_vlc2(&s->gb, inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); |
| 453 | 2126 if (cbpc < 0){ |
| 2127 fprintf(stderr, "cbpc corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2128 return DECODING_DESYNC; | |
| 2129 } | |
| 2130 if (cbpc > 20) | |
| 2131 cbpc+=3; | |
| 2132 else if (cbpc == 20) | |
| 2133 fprintf(stderr, "Stuffing !"); | |
| 2134 s->cbp_table[xy]= cbpc&(8+3); //8 is dquant | |
| 2135 | |
| 2136 s->mb_intra = ((cbpc & 4) != 0); | |
| 2137 | |
| 2138 if(s->mb_intra){ | |
| 2139 PRINT_MB_TYPE("I"); | |
| 2140 s->mbintra_table[xy]= 1; | |
| 2141 s->mb_type[xy]= MB_TYPE_INTRA; | |
| 2142 mot_val[0 ]= mot_val[2 ]= | |
| 2143 mot_val[0+stride]= mot_val[2+stride]= 0; | |
| 2144 mot_val[1 ]= mot_val[3 ]= | |
| 2145 mot_val[1+stride]= mot_val[3+stride]= 0; | |
| 2146 }else{ | |
| 2147 if(s->mbintra_table[xy]) | |
| 2148 ff_clean_intra_table_entries(s); | |
| 2149 | |
| 2150 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE && (cbpc & 16) == 0) | |
| 2151 s->mcsel= get_bits1(&s->gb); | |
| 2152 else s->mcsel= 0; | |
| 2153 | |
| 2154 if ((cbpc & 16) == 0) { | |
| 2155 PRINT_MB_TYPE("P"); | |
| 2156 /* 16x16 motion prediction */ | |
| 2157 s->mb_type[xy]= MB_TYPE_INTER; | |
| 2158 | |
| 2159 h263_pred_motion(s, 0, &pred_x, &pred_y); | |
| 2160 if(!s->mcsel) | |
| 2161 mx = h263_decode_motion(s, pred_x, s->f_code); | |
| 2162 else { | |
| 2163 const int a= s->sprite_warping_accuracy; | |
| 2164 if(s->divx_version==500 && s->divx_build==413){ | |
| 2165 mx = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
| 2166 }else{ | |
| 2167 mx = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2168 } | |
| 2169 } | |
| 2170 if (mx >= 0xffff) | |
| 2171 return DECODING_DESYNC; | |
| 2172 | |
| 2173 if(!s->mcsel) | |
| 2174 my = h263_decode_motion(s, pred_y, s->f_code); | |
| 2175 else{ | |
| 2176 const int a= s->sprite_warping_accuracy; | |
| 2177 if(s->divx_version==500 && s->divx_build==413){ | |
| 2178 my = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
| 2179 }else{ | |
| 2180 my = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2181 } | |
| 2182 } | |
| 2183 if (my >= 0xffff) | |
| 2184 return DECODING_DESYNC; | |
| 2185 mot_val[0 ]= mot_val[2 ] = | |
| 2186 mot_val[0+stride]= mot_val[2+stride]= mx; | |
| 2187 mot_val[1 ]= mot_val[3 ]= | |
| 2188 mot_val[1+stride]= mot_val[3+stride]= my; | |
| 2189 } else { | |
| 2190 int i; | |
| 2191 PRINT_MB_TYPE("4"); | |
| 2192 s->mb_type[xy]= MB_TYPE_INTER4V; | |
| 2193 for(i=0;i<4;i++) { | |
| 2194 INT16 *mot_val= h263_pred_motion(s, i, &pred_x, &pred_y); | |
| 2195 mx = h263_decode_motion(s, pred_x, s->f_code); | |
| 2196 if (mx >= 0xffff) | |
| 2197 return DECODING_DESYNC; | |
| 2198 | |
| 2199 my = h263_decode_motion(s, pred_y, s->f_code); | |
| 2200 if (my >= 0xffff) | |
| 2201 return DECODING_DESYNC; | |
| 2202 mot_val[0] = mx; | |
| 2203 mot_val[1] = my; | |
| 2204 } | |
| 2205 } | |
| 2206 } | |
| 2207 } | |
| 2208 } | |
| 2209 s->mb_x= 0; | |
| 2210 } | |
| 2211 | |
| 2212 if (s->pict_type==I_TYPE && get_bits(&s->gb, 19)!=DC_MARKER ) s->decoding_error= DECODING_DESYNC; | |
| 2213 else if(s->pict_type!=I_TYPE && get_bits(&s->gb, 17)!=MOTION_MARKER) s->decoding_error= DECODING_DESYNC; | |
| 2214 if(s->decoding_error== DECODING_DESYNC){ | |
| 2215 fprintf(stderr, "marker missing after first partition at %d %d\n", s->mb_x, s->mb_y); | |
| 2216 return DECODING_DESYNC; | |
| 2217 } | |
| 2218 | |
| 2219 /* decode second partition */ | |
| 2220 mb_num=0; | |
| 2221 s->mb_x= s->resync_mb_x; | |
| 2222 for(s->mb_y= s->resync_mb_y; mb_num < s->mb_num_left; s->mb_y++){ | |
| 2223 init_block_index(s); | |
| 2224 for(; mb_num < s->mb_num_left && s->mb_x<s->mb_width; s->mb_x++){ | |
| 2225 const int xy= s->mb_x + s->mb_y*s->mb_width; | |
| 2226 | |
| 2227 mb_num++; | |
| 2228 update_block_index(s); | |
| 2229 | |
| 2230 if(s->pict_type==I_TYPE){ | |
| 2231 int ac_pred= get_bits1(&s->gb); | |
| 544 | 2232 int cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2233 if(cbpy<0){ |
| 2234 fprintf(stderr, "cbpy corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2235 return DECODING_AC_LOST; | |
| 2236 } | |
| 2237 | |
| 2238 s->cbp_table[xy]|= cbpy<<2; | |
| 2239 s->pred_dir_table[xy]|= ac_pred<<7; | |
| 2240 }else{ /* P || S_TYPE */ | |
| 2241 if(s->mb_type[xy]&MB_TYPE_INTRA){ | |
| 2242 int dir=0,i; | |
| 2243 int ac_pred = get_bits1(&s->gb); | |
| 544 | 2244 int cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2245 |
| 2246 if(cbpy<0){ | |
| 2247 fprintf(stderr, "I cbpy corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2248 return DECODING_ACDC_LOST; | |
| 2249 } | |
| 2250 | |
| 2251 if(s->cbp_table[xy] & 8) { | |
| 2252 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2253 if (s->qscale < 1) | |
| 2254 s->qscale = 1; | |
| 2255 else if (s->qscale > 31) | |
| 2256 s->qscale = 31; | |
| 2257 h263_dc_scale(s); | |
| 2258 } | |
| 2259 s->qscale_table[xy]= s->qscale; | |
| 2260 | |
| 2261 for(i=0; i<6; i++){ | |
| 2262 int dc_pred_dir; | |
| 2263 int dc= mpeg4_decode_dc(s, i, &dc_pred_dir); | |
| 2264 if(dc < 0){ | |
| 2265 fprintf(stderr, "DC corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2266 return DECODING_ACDC_LOST; | |
| 2267 } | |
| 2268 dir<<=1; | |
| 2269 if(dc_pred_dir) dir|=1; | |
| 2270 } | |
| 2271 s->cbp_table[xy]&= 3; //remove dquant | |
| 2272 s->cbp_table[xy]|= cbpy<<2; | |
| 2273 s->pred_dir_table[xy]= dir | (ac_pred<<7); | |
| 2274 }else if(s->mb_type[xy]&MB_TYPE_SKIPED){ | |
| 2275 s->qscale_table[xy]= s->qscale; | |
| 2276 s->cbp_table[xy]= 0; | |
| 2277 }else{ | |
| 544 | 2278 int cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2279 |
| 2280 if(cbpy<0){ | |
| 2281 fprintf(stderr, "P cbpy corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2282 return DECODING_ACDC_LOST; | |
| 2283 } | |
| 2284 | |
| 2285 if(s->cbp_table[xy] & 8) { | |
| 2286 //fprintf(stderr, "dquant\n"); | |
| 2287 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2288 if (s->qscale < 1) | |
| 2289 s->qscale = 1; | |
| 2290 else if (s->qscale > 31) | |
| 2291 s->qscale = 31; | |
| 2292 h263_dc_scale(s); | |
| 2293 } | |
| 2294 s->qscale_table[xy]= s->qscale; | |
| 2295 | |
| 2296 s->cbp_table[xy]&= 3; //remove dquant | |
| 2297 s->cbp_table[xy]|= (cbpy^0xf)<<2; | |
| 2298 } | |
| 2299 } | |
| 2300 } | |
| 2301 s->mb_x= 0; | |
| 2302 } | |
| 2303 | |
| 2304 | |
| 2305 return 0; | |
| 2306 } | |
| 2307 | |
| 2308 static int mpeg4_decode_partitioned_mb(MpegEncContext *s, | |
| 2309 DCTELEM block[6][64]) | |
| 2310 { | |
| 2311 int cbp, mb_type; | |
| 2312 const int xy= s->mb_x + s->mb_y*s->mb_width; | |
| 2313 | |
| 2314 if(s->mb_x==s->resync_mb_x && s->mb_y==s->resync_mb_y){ //Note resync_mb_{x,y}==0 at the start | |
| 2315 int i; | |
| 2316 int block_index_backup[6]; | |
| 2317 int qscale= s->qscale; | |
| 2318 | |
| 2319 for(i=0; i<6; i++) block_index_backup[i]= s->block_index[i]; | |
| 2320 | |
| 2321 s->decoding_error= ff_mpeg4_decode_partitions(s); | |
| 2322 | |
| 2323 for(i=0; i<6; i++) s->block_index[i]= block_index_backup[i]; | |
| 2324 s->first_slice_line=1; | |
| 2325 s->mb_x= s->resync_mb_x; | |
| 2326 s->mb_y= s->resync_mb_y; | |
| 2327 s->qscale= qscale; | |
| 2328 h263_dc_scale(s); | |
| 2329 | |
| 2330 if(s->decoding_error==DECODING_DESYNC) return -1; | |
| 2331 } | |
| 2332 | |
| 2333 mb_type= s->mb_type[xy]; | |
| 2334 if(s->decoding_error) | |
| 2335 cbp=0; | |
| 2336 else | |
| 2337 cbp = s->cbp_table[xy]; | |
| 2338 | |
| 2339 if(s->decoding_error!=DECODING_ACDC_LOST && s->qscale_table[xy] != s->qscale){ | |
| 2340 s->qscale= s->qscale_table[xy]; | |
| 2341 h263_dc_scale(s); | |
| 2342 } | |
| 2343 | |
| 2344 if (s->pict_type == P_TYPE || s->pict_type==S_TYPE) { | |
| 2345 int i; | |
| 2346 for(i=0; i<4; i++){ | |
| 2347 s->mv[0][i][0] = s->motion_val[ s->block_index[i] ][0]; | |
| 2348 s->mv[0][i][1] = s->motion_val[ s->block_index[i] ][1]; | |
| 2349 } | |
| 2350 s->mb_intra = mb_type&MB_TYPE_INTRA; | |
| 2351 | |
| 2352 if (mb_type&MB_TYPE_SKIPED) { | |
| 2353 /* skip mb */ | |
| 2354 for(i=0;i<6;i++) | |
| 2355 s->block_last_index[i] = -1; | |
| 2356 s->mv_dir = MV_DIR_FORWARD; | |
| 2357 s->mv_type = MV_TYPE_16X16; | |
| 2358 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE){ | |
| 2359 s->mcsel=1; | |
| 2360 s->mb_skiped = 0; | |
| 2361 }else{ | |
| 2362 s->mcsel=0; | |
| 2363 s->mb_skiped = 1; | |
| 2364 } | |
| 2365 return 0; | |
| 2366 }else if(s->mb_intra && s->decoding_error!=DECODING_ACDC_LOST){ | |
| 2367 s->ac_pred = s->pred_dir_table[xy]>>7; | |
| 2368 | |
| 2369 /* decode each block */ | |
| 2370 for (i = 0; i < 6; i++) { | |
| 575 | 2371 int ret= mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 1); |
| 453 | 2372 if(ret==DECODING_AC_LOST){ |
| 2373 fprintf(stderr, "texture corrupted at %d %d (trying to continue with mc/dc only)\n", s->mb_x, s->mb_y); | |
| 2374 s->decoding_error=DECODING_AC_LOST; | |
| 2375 cbp=0; | |
| 2376 }else if(ret==DECODING_ACDC_LOST){ | |
| 2377 fprintf(stderr, "dc corrupted at %d %d (trying to continue with mc only)\n", s->mb_x, s->mb_y); | |
| 2378 s->decoding_error=DECODING_ACDC_LOST; | |
| 2379 break; | |
| 2380 } | |
| 2381 } | |
| 2382 }else if(!s->mb_intra){ | |
| 2383 // s->mcsel= 0; //FIXME do we need to init that | |
| 2384 | |
| 2385 s->mv_dir = MV_DIR_FORWARD; | |
| 2386 if (mb_type&MB_TYPE_INTER4V) { | |
| 2387 s->mv_type = MV_TYPE_8X8; | |
| 2388 } else { | |
| 2389 s->mv_type = MV_TYPE_16X16; | |
| 2390 } | |
| 2391 if(s->decoding_error==0 && cbp){ | |
| 2392 /* decode each block */ | |
| 2393 for (i = 0; i < 6; i++) { | |
| 575 | 2394 int ret= mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 0); |
| 453 | 2395 if(ret==DECODING_AC_LOST){ |
| 2396 fprintf(stderr, "texture corrupted at %d %d (trying to continue with mc/dc only)\n", s->mb_x, s->mb_y); | |
| 2397 s->decoding_error=DECODING_AC_LOST; | |
| 2398 break; | |
| 2399 } | |
| 2400 } | |
| 2401 } | |
| 2402 } | |
| 2403 } else { /* I-Frame */ | |
| 2404 int i; | |
| 2405 s->mb_intra = 1; | |
| 2406 s->ac_pred = s->pred_dir_table[xy]>>7; | |
| 2407 | |
| 2408 /* decode each block */ | |
| 2409 for (i = 0; i < 6; i++) { | |
| 575 | 2410 int ret= mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 1); |
| 453 | 2411 if(ret==DECODING_AC_LOST){ |
| 2412 fprintf(stderr, "texture corrupted at %d %d (trying to continue with dc only)\n", s->mb_x, s->mb_y); | |
| 2413 s->decoding_error=DECODING_AC_LOST; | |
| 2414 cbp=0; | |
| 2415 }else if(ret==DECODING_ACDC_LOST){ | |
| 2416 fprintf(stderr, "dc corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2417 return -1; | |
| 2418 } | |
| 2419 } | |
| 2420 } | |
| 290 | 2421 |
| 2422 return 0; | |
| 2423 } | |
| 2424 | |
| 453 | 2425 |
| 0 | 2426 int h263_decode_mb(MpegEncContext *s, |
| 2427 DCTELEM block[6][64]) | |
| 2428 { | |
| 2429 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; | |
| 2430 INT16 *mot_val; | |
| 110 | 2431 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
|
2432 |
| 523 | 2433 if(s->mb_x==0) PRINT_MB_TYPE("\n"); |
| 359 | 2434 |
| 290 | 2435 if(s->resync_marker){ |
| 453 | 2436 if(s->resync_mb_x == s->mb_x && s->resync_mb_y+1 == s->mb_y){ |
| 290 | 2437 s->first_slice_line=0; |
| 2438 } | |
| 2439 } | |
| 2440 | |
| 453 | 2441 if(s->data_partitioning && s->pict_type!=B_TYPE) |
| 2442 return mpeg4_decode_partitioned_mb(s, block); | |
| 2443 | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2444 if (s->pict_type == P_TYPE || s->pict_type==S_TYPE) { |
| 21 | 2445 if (get_bits1(&s->gb)) { |
| 0 | 2446 /* skip mb */ |
| 2447 s->mb_intra = 0; | |
| 2448 for(i=0;i<6;i++) | |
| 2449 s->block_last_index[i] = -1; | |
| 2450 s->mv_dir = MV_DIR_FORWARD; | |
| 2451 s->mv_type = MV_TYPE_16X16; | |
| 255 | 2452 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE){ |
| 2453 const int a= s->sprite_warping_accuracy; | |
| 2454 // int l = (1 << (s->f_code - 1)) * 32; | |
| 359 | 2455 PRINT_MB_TYPE("G"); |
| 255 | 2456 s->mcsel=1; |
| 301 | 2457 if(s->divx_version==500 && s->divx_build==413){ |
| 2458 s->mv[0][0][0] = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
| 2459 s->mv[0][0][1] = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
| 2460 }else{ | |
| 2461 s->mv[0][0][0] = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2462 s->mv[0][0][1] = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2463 } | |
| 255 | 2464 /* if (s->mv[0][0][0] < -l) s->mv[0][0][0]= -l; |
| 2465 else if (s->mv[0][0][0] >= l) s->mv[0][0][0]= l-1; | |
| 2466 if (s->mv[0][0][1] < -l) s->mv[0][0][1]= -l; | |
| 2467 else if (s->mv[0][0][1] >= l) s->mv[0][0][1]= l-1;*/ | |
| 2468 | |
| 2469 s->mb_skiped = 0; | |
| 2470 }else{ | |
| 359 | 2471 PRINT_MB_TYPE("S"); |
| 255 | 2472 s->mcsel=0; |
| 2473 s->mv[0][0][0] = 0; | |
| 2474 s->mv[0][0][1] = 0; | |
| 2475 s->mb_skiped = 1; | |
| 2476 } | |
| 0 | 2477 return 0; |
| 2478 } | |
| 544 | 2479 cbpc = get_vlc2(&s->gb, inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); |
| 144 | 2480 //fprintf(stderr, "\tCBPC: %d", cbpc); |
| 0 | 2481 if (cbpc < 0) |
| 2482 return -1; | |
| 161 | 2483 if (cbpc > 20) |
| 2484 cbpc+=3; | |
| 2485 else if (cbpc == 20) | |
| 2486 fprintf(stderr, "Stuffing !"); | |
| 144 | 2487 |
| 0 | 2488 dquant = cbpc & 8; |
| 2489 s->mb_intra = ((cbpc & 4) != 0); | |
| 262 | 2490 if (s->mb_intra) goto intra; |
| 2491 | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2492 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
|
2493 s->mcsel= get_bits1(&s->gb); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2494 else s->mcsel= 0; |
| 544 | 2495 cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 0 | 2496 cbp = (cbpc & 3) | ((cbpy ^ 0xf) << 2); |
| 2497 if (dquant) { | |
| 2498 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2499 if (s->qscale < 1) | |
| 2500 s->qscale = 1; | |
| 2501 else if (s->qscale > 31) | |
| 2502 s->qscale = 31; | |
| 290 | 2503 h263_dc_scale(s); |
| 0 | 2504 } |
| 2505 s->mv_dir = MV_DIR_FORWARD; | |
| 2506 if ((cbpc & 16) == 0) { | |
| 359 | 2507 PRINT_MB_TYPE("P"); |
| 0 | 2508 /* 16x16 motion prediction */ |
| 2509 s->mv_type = MV_TYPE_16X16; | |
| 2510 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
|
2511 if (s->umvplus_dec) |
| 78 | 2512 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
|
2513 else if(!s->mcsel) |
| 262 | 2514 mx = h263_decode_motion(s, pred_x, s->f_code); |
| 255 | 2515 else { |
| 2516 const int a= s->sprite_warping_accuracy; | |
| 2517 // int l = (1 << (s->f_code - 1)) * 32; | |
| 301 | 2518 if(s->divx_version==500 && s->divx_build==413){ |
| 2519 mx = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
| 2520 }else{ | |
| 2521 mx = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2522 } | |
| 2523 // if (mx < -l) mx= -l, printf("C"); | |
| 2524 // else if (mx >= l) mx= l-1, printf("C"); | |
| 255 | 2525 } |
| 0 | 2526 if (mx >= 0xffff) |
| 2527 return -1; | |
| 78 | 2528 |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
2529 if (s->umvplus_dec) |
| 78 | 2530 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
|
2531 else if(!s->mcsel) |
| 262 | 2532 my = h263_decode_motion(s, pred_y, s->f_code); |
| 255 | 2533 else{ |
| 2534 const int a= s->sprite_warping_accuracy; | |
| 2535 // int l = (1 << (s->f_code - 1)) * 32; | |
| 301 | 2536 if(s->divx_version==500 && s->divx_build==413){ |
| 2537 my = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
| 2538 }else{ | |
| 2539 my = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2540 } | |
| 2541 // if (my < -l) my= -l, printf("C"); | |
| 2542 // else if (my >= l) my= l-1, printf("C"); | |
| 255 | 2543 } |
| 0 | 2544 if (my >= 0xffff) |
| 2545 return -1; | |
| 2546 s->mv[0][0][0] = mx; | |
| 2547 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
|
2548 /*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
|
2549 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
|
2550 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
|
2551 if (s->umvplus_dec && (mx - pred_x) == 1 && (my - pred_y) == 1) |
| 78 | 2552 skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */ |
| 2553 | |
| 0 | 2554 } else { |
| 359 | 2555 PRINT_MB_TYPE("4"); |
| 0 | 2556 s->mv_type = MV_TYPE_8X8; |
| 2557 for(i=0;i<4;i++) { | |
| 2558 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
|
2559 if (s->umvplus_dec) |
| 78 | 2560 mx = h263p_decode_umotion(s, pred_x); |
| 2561 else | |
| 262 | 2562 mx = h263_decode_motion(s, pred_x, s->f_code); |
| 0 | 2563 if (mx >= 0xffff) |
| 2564 return -1; | |
| 78 | 2565 |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
2566 if (s->umvplus_dec) |
| 78 | 2567 my = h263p_decode_umotion(s, pred_y); |
| 2568 else | |
| 262 | 2569 my = h263_decode_motion(s, pred_y, s->f_code); |
| 0 | 2570 if (my >= 0xffff) |
| 2571 return -1; | |
| 2572 s->mv[0][i][0] = mx; | |
| 2573 s->mv[0][i][1] = my; | |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
2574 if (s->umvplus_dec && (mx - pred_x) == 1 && (my - pred_y) == 1) |
| 78 | 2575 skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */ |
| 0 | 2576 mot_val[0] = mx; |
| 2577 mot_val[1] = my; | |
| 2578 } | |
| 2579 } | |
| 262 | 2580 } else if(s->pict_type==B_TYPE) { |
| 2581 int modb1; // first bit of modb | |
| 2582 int modb2; // second bit of modb | |
| 2583 int mb_type; | |
| 324 | 2584 uint16_t time_pp; |
| 2585 uint16_t time_pb; | |
| 262 | 2586 int xy; |
| 2587 | |
| 2588 s->mb_intra = 0; //B-frames never contain intra blocks | |
| 2589 s->mcsel=0; // ... true gmc blocks | |
| 2590 | |
| 2591 if(s->mb_x==0){ | |
| 2592 s->last_mv[0][0][0]= | |
| 2593 s->last_mv[0][0][1]= | |
| 2594 s->last_mv[1][0][0]= | |
| 2595 s->last_mv[1][0][1]= 0; | |
| 2596 } | |
| 2597 | |
| 2598 /* if we skipped it in the future P Frame than skip it now too */ | |
| 2599 s->mb_skiped= s->mbskip_table[s->mb_y * s->mb_width + s->mb_x]; // Note, skiptab=0 if last was GMC | |
| 2600 | |
| 2601 if(s->mb_skiped){ | |
| 2602 /* skip mb */ | |
| 2603 for(i=0;i<6;i++) | |
| 2604 s->block_last_index[i] = -1; | |
| 2605 | |
| 2606 s->mv_dir = MV_DIR_FORWARD; | |
| 2607 s->mv_type = MV_TYPE_16X16; | |
| 2608 s->mv[0][0][0] = 0; | |
| 2609 s->mv[0][0][1] = 0; | |
| 2610 s->mv[1][0][0] = 0; | |
| 2611 s->mv[1][0][1] = 0; | |
| 291 | 2612 //FIXME is this correct? |
| 2613 /* s->last_mv[0][0][0]= | |
| 2614 s->last_mv[0][0][1]=0;*/ | |
| 523 | 2615 PRINT_MB_TYPE("s"); |
| 262 | 2616 return 0; |
| 2617 } | |
| 2618 | |
| 2619 modb1= get_bits1(&s->gb); | |
| 2620 if(modb1==0){ | |
| 2621 modb2= get_bits1(&s->gb); | |
| 544 | 2622 mb_type= get_vlc2(&s->gb, mb_type_b_vlc.table, MB_TYPE_B_VLC_BITS, 1); |
| 262 | 2623 if(modb2==0) cbp= get_bits(&s->gb, 6); |
| 2624 else cbp=0; | |
| 2625 if (mb_type && cbp) { | |
| 2626 if(get_bits1(&s->gb)){ | |
| 2627 s->qscale +=get_bits1(&s->gb)*4 - 2; | |
| 2628 if (s->qscale < 1) | |
| 2629 s->qscale = 1; | |
| 2630 else if (s->qscale > 31) | |
| 2631 s->qscale = 31; | |
| 290 | 2632 h263_dc_scale(s); |
| 262 | 2633 } |
| 2634 } | |
| 2635 }else{ | |
| 2636 mb_type=4; //like 0 but no vectors coded | |
| 2637 cbp=0; | |
| 2638 } | |
| 2639 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 | |
| 2640 mx=my=0; //for case 4, we could put this to the mb_type=4 but than gcc compains about uninitalized mx/my | |
| 2641 switch(mb_type) | |
| 2642 { | |
| 324 | 2643 case 0: /* direct */ |
| 262 | 2644 mx = h263_decode_motion(s, 0, 1); |
| 2645 my = h263_decode_motion(s, 0, 1); | |
| 591 | 2646 PRINT_MB_TYPE("S"); |
| 324 | 2647 case 4: /* direct with mx=my=0 */ |
| 262 | 2648 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD | MV_DIRECT; |
| 266 | 2649 xy= s->block_index[0]; |
| 324 | 2650 time_pp= s->pp_time; |
| 2651 time_pb= time_pp - s->bp_time; | |
| 262 | 2652 //if(time_pp>3000 )printf("%d %d ", time_pp, time_pb); |
| 2653 //FIXME 4MV | |
| 2654 //FIXME avoid divides | |
| 2655 s->mv[0][0][0] = s->motion_val[xy][0]*time_pb/time_pp + mx; | |
| 2656 s->mv[0][0][1] = s->motion_val[xy][1]*time_pb/time_pp + my; | |
| 2657 s->mv[1][0][0] = mx ? s->mv[0][0][0] - s->motion_val[xy][0] | |
| 2658 : s->motion_val[xy][0]*(time_pb - time_pp)/time_pp + mx; | |
| 2659 s->mv[1][0][1] = my ? s->mv[0][0][1] - s->motion_val[xy][1] | |
| 2660 : s->motion_val[xy][1]*(time_pb - time_pp)/time_pp + my; | |
| 2661 /* s->mv[0][0][0] = | |
| 2662 s->mv[0][0][1] = | |
| 2663 s->mv[1][0][0] = | |
| 2664 s->mv[1][0][1] = 1000;*/ | |
| 591 | 2665 if(mb_type==4) PRINT_MB_TYPE("D"); |
| 262 | 2666 break; |
| 2667 case 1: | |
| 2668 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD; | |
| 2669 mx = h263_decode_motion(s, s->last_mv[0][0][0], s->f_code); | |
| 2670 my = h263_decode_motion(s, s->last_mv[0][0][1], s->f_code); | |
| 2671 s->last_mv[0][0][0]= s->mv[0][0][0] = mx; | |
| 2672 s->last_mv[0][0][1]= s->mv[0][0][1] = my; | |
| 2673 | |
| 2674 mx = h263_decode_motion(s, s->last_mv[1][0][0], s->b_code); | |
| 2675 my = h263_decode_motion(s, s->last_mv[1][0][1], s->b_code); | |
| 2676 s->last_mv[1][0][0]= s->mv[1][0][0] = mx; | |
| 2677 s->last_mv[1][0][1]= s->mv[1][0][1] = my; | |
| 359 | 2678 PRINT_MB_TYPE("i"); |
| 262 | 2679 break; |
| 2680 case 2: | |
| 2681 s->mv_dir = MV_DIR_BACKWARD; | |
| 2682 mx = h263_decode_motion(s, s->last_mv[1][0][0], s->b_code); | |
| 2683 my = h263_decode_motion(s, s->last_mv[1][0][1], s->b_code); | |
| 2684 s->last_mv[1][0][0]= s->mv[1][0][0] = mx; | |
| 2685 s->last_mv[1][0][1]= s->mv[1][0][1] = my; | |
| 359 | 2686 PRINT_MB_TYPE("B"); |
| 262 | 2687 break; |
| 2688 case 3: | |
| 2689 s->mv_dir = MV_DIR_FORWARD; | |
| 2690 mx = h263_decode_motion(s, s->last_mv[0][0][0], s->f_code); | |
| 2691 my = h263_decode_motion(s, s->last_mv[0][0][1], s->f_code); | |
| 2692 s->last_mv[0][0][0]= s->mv[0][0][0] = mx; | |
| 2693 s->last_mv[0][0][1]= s->mv[0][0][1] = my; | |
| 359 | 2694 PRINT_MB_TYPE("F"); |
| 262 | 2695 break; |
|
364
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
2696 default: |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
2697 printf("illegal MB_type\n"); |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
2698 return -1; |
| 262 | 2699 } |
| 2700 } else { /* I-Frame */ | |
| 544 | 2701 cbpc = get_vlc2(&s->gb, intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 1); |
| 262 | 2702 if (cbpc < 0) |
| 2703 return -1; | |
| 2704 dquant = cbpc & 4; | |
| 2705 s->mb_intra = 1; | |
| 2706 intra: | |
| 0 | 2707 s->ac_pred = 0; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2708 if (s->h263_pred || s->h263_aic) { |
| 21 | 2709 s->ac_pred = get_bits1(&s->gb); |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2710 if (s->ac_pred && s->h263_aic) |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2711 s->h263_aic_dir = get_bits1(&s->gb); |
| 0 | 2712 } |
| 591 | 2713 PRINT_MB_TYPE(s->ac_pred ? "A" : "I"); |
| 2714 | |
| 544 | 2715 cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2716 if(cbpy<0) return -1; |
| 0 | 2717 cbp = (cbpc & 3) | (cbpy << 2); |
| 2718 if (dquant) { | |
| 2719 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2720 if (s->qscale < 1) | |
| 2721 s->qscale = 1; | |
| 2722 else if (s->qscale > 31) | |
| 2723 s->qscale = 31; | |
| 290 | 2724 h263_dc_scale(s); |
| 0 | 2725 } |
| 575 | 2726 |
| 2727 /* decode each block */ | |
| 2728 if (s->h263_pred) { | |
| 2729 for (i = 0; i < 6; i++) { | |
| 2730 if (mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 1) < 0) | |
| 2731 return -1; | |
| 2732 } | |
| 2733 } else { | |
| 2734 for (i = 0; i < 6; i++) { | |
| 2735 if (h263_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1) < 0) | |
| 2736 return -1; | |
| 2737 } | |
| 2738 } | |
| 2739 return 0; | |
| 0 | 2740 } |
| 2741 | |
| 2742 /* decode each block */ | |
| 2743 if (s->h263_pred) { | |
| 575 | 2744 for (i = 0; i < 6; i++) { |
| 2745 if (mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 0) < 0) | |
| 0 | 2746 return -1; |
| 575 | 2747 } |
| 0 | 2748 } else { |
| 575 | 2749 for (i = 0; i < 6; i++) { |
| 2750 if (h263_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1) < 0) | |
| 0 | 2751 return -1; |
| 575 | 2752 } |
| 0 | 2753 } |
| 2754 return 0; | |
| 2755 } | |
| 2756 | |
| 262 | 2757 static int h263_decode_motion(MpegEncContext * s, int pred, int f_code) |
| 0 | 2758 { |
| 2759 int code, val, sign, shift, l, m; | |
| 2760 | |
| 544 | 2761 code = get_vlc2(&s->gb, mv_vlc.table, MV_VLC_BITS, 2); |
| 0 | 2762 if (code < 0) |
| 2763 return 0xffff; | |
| 2764 | |
| 2765 if (code == 0) | |
| 2766 return pred; | |
| 21 | 2767 sign = get_bits1(&s->gb); |
| 262 | 2768 shift = f_code - 1; |
| 0 | 2769 val = (code - 1) << shift; |
| 2770 if (shift > 0) | |
| 2771 val |= get_bits(&s->gb, shift); | |
| 2772 val++; | |
| 2773 if (sign) | |
| 2774 val = -val; | |
| 2775 val += pred; | |
| 475 | 2776 |
| 0 | 2777 /* modulo decoding */ |
| 2778 if (!s->h263_long_vectors) { | |
| 262 | 2779 l = (1 << (f_code - 1)) * 32; |
| 0 | 2780 m = 2 * l; |
| 2781 if (val < -l) { | |
| 2782 val += m; | |
| 2783 } else if (val >= l) { | |
| 2784 val -= m; | |
| 2785 } | |
| 2786 } else { | |
| 2787 /* horrible h263 long vector mode */ | |
| 2788 if (pred < -31 && val < -63) | |
| 2789 val += 64; | |
| 2790 if (pred > 32 && val > 63) | |
| 2791 val -= 64; | |
|
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
2792 |
| 0 | 2793 } |
| 2794 return val; | |
| 2795 } | |
| 2796 | |
| 78 | 2797 /* Decodes RVLC of H.263+ UMV */ |
| 2798 static int h263p_decode_umotion(MpegEncContext * s, int pred) | |
| 2799 { | |
| 2800 int code = 0, sign; | |
| 2801 | |
| 2802 if (get_bits1(&s->gb)) /* Motion difference = 0 */ | |
| 2803 return pred; | |
| 2804 | |
| 2805 code = 2 + get_bits1(&s->gb); | |
| 2806 | |
| 2807 while (get_bits1(&s->gb)) | |
| 2808 { | |
| 2809 code <<= 1; | |
| 2810 code += get_bits1(&s->gb); | |
| 2811 } | |
| 2812 sign = code & 1; | |
| 2813 code >>= 1; | |
| 2814 | |
| 2815 code = (sign) ? (pred - code) : (pred + code); | |
| 2816 #ifdef DEBUG | |
| 2817 fprintf(stderr,"H.263+ UMV Motion = %d\n", code); | |
| 2818 #endif | |
| 2819 return code; | |
| 2820 | |
| 2821 } | |
| 2822 | |
| 0 | 2823 static int h263_decode_block(MpegEncContext * s, DCTELEM * block, |
| 2824 int n, int coded) | |
| 2825 { | |
| 2826 int code, level, i, j, last, run; | |
| 2827 RLTable *rl = &rl_inter; | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2828 const UINT8 *scan_table; |
| 0 | 2829 |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2830 scan_table = zigzag_direct; |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2831 if (s->h263_aic && s->mb_intra) { |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2832 rl = &rl_intra_aic; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2833 i = 0; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2834 if (s->ac_pred) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2835 if (s->h263_aic_dir) |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2836 scan_table = ff_alternate_vertical_scan; /* left */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2837 else |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2838 scan_table = ff_alternate_horizontal_scan; /* top */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2839 } |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2840 } else if (s->mb_intra) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2841 /* DC coef */ |
| 0 | 2842 if (s->h263_rv10 && s->rv10_version == 3 && s->pict_type == I_TYPE) { |
| 2843 int component, diff; | |
| 2844 component = (n <= 3 ? 0 : n - 4 + 1); | |
| 2845 level = s->last_dc[component]; | |
| 2846 if (s->rv10_first_dc_coded[component]) { | |
| 2847 diff = rv_decode_dc(s, n); | |
| 2848 if (diff == 0xffff) | |
| 2849 return -1; | |
| 2850 level += diff; | |
| 2851 level = level & 0xff; /* handle wrap round */ | |
| 2852 s->last_dc[component] = level; | |
| 2853 } else { | |
| 2854 s->rv10_first_dc_coded[component] = 1; | |
| 2855 } | |
| 2856 } else { | |
| 2857 level = get_bits(&s->gb, 8); | |
| 2858 if (level == 255) | |
| 2859 level = 128; | |
| 2860 } | |
| 2861 block[0] = level; | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2862 i = 1; |
| 0 | 2863 } else { |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2864 i = 0; |
| 0 | 2865 } |
| 2866 if (!coded) { | |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2867 if (s->mb_intra && s->h263_aic) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2868 goto not_coded; |
| 0 | 2869 s->block_last_index[n] = i - 1; |
| 2870 return 0; | |
| 2871 } | |
| 2872 | |
| 2873 for(;;) { | |
| 544 | 2874 code = get_vlc2(&s->gb, rl->vlc.table, TEX_VLC_BITS, 2); |
| 0 | 2875 if (code < 0) |
| 2876 return -1; | |
| 2877 if (code == rl->n) { | |
| 2878 /* escape */ | |
| 21 | 2879 last = get_bits1(&s->gb); |
| 0 | 2880 run = get_bits(&s->gb, 6); |
| 2881 level = (INT8)get_bits(&s->gb, 8); | |
| 2882 if (s->h263_rv10 && level == -128) { | |
| 2883 /* XXX: should patch encoder too */ | |
| 2884 level = get_bits(&s->gb, 12); | |
| 2885 level = (level << 20) >> 20; | |
| 2886 } | |
| 2887 } else { | |
| 2888 run = rl->table_run[code]; | |
| 2889 level = rl->table_level[code]; | |
| 2890 last = code >= rl->last; | |
| 21 | 2891 if (get_bits1(&s->gb)) |
| 0 | 2892 level = -level; |
| 2893 } | |
| 2894 i += run; | |
| 2895 if (i >= 64) | |
| 2896 return -1; | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2897 j = scan_table[i]; |
| 0 | 2898 block[j] = level; |
| 2899 if (last) | |
| 2900 break; | |
| 2901 i++; | |
| 2902 } | |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2903 not_coded: |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2904 if (s->mb_intra && s->h263_aic) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2905 h263_pred_acdc(s, block, n); |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
2906 i = 63; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2907 } |
| 0 | 2908 s->block_last_index[n] = i; |
| 2909 return 0; | |
| 2910 } | |
| 2911 | |
| 453 | 2912 static inline int mpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr) |
| 0 | 2913 { |
| 2914 int level, pred, code; | |
| 2915 UINT16 *dc_val; | |
| 2916 | |
| 2917 if (n < 4) | |
| 544 | 2918 code = get_vlc2(&s->gb, dc_lum.table, DC_VLC_BITS, 1); |
| 0 | 2919 else |
| 544 | 2920 code = get_vlc2(&s->gb, dc_chrom.table, DC_VLC_BITS, 1); |
| 453 | 2921 if (code < 0 || code > 9 /* && s->nbit<9 */){ |
| 2922 fprintf(stderr, "illegal dc vlc\n"); | |
| 0 | 2923 return -1; |
| 453 | 2924 } |
| 0 | 2925 if (code == 0) { |
| 2926 level = 0; | |
| 2927 } else { | |
| 2928 level = get_bits(&s->gb, code); | |
| 2929 if ((level >> (code - 1)) == 0) /* if MSB not set it is negative*/ | |
| 2930 level = - (level ^ ((1 << code) - 1)); | |
| 453 | 2931 if (code > 8){ |
| 2932 if(get_bits1(&s->gb)==0){ /* marker */ | |
| 2933 fprintf(stderr, "dc marker bit missing\n"); | |
| 2934 return -1; | |
| 2935 } | |
| 2936 } | |
| 0 | 2937 } |
| 2938 | |
| 498 | 2939 pred = ff_mpeg4_pred_dc(s, n, &dc_val, dir_ptr); |
| 0 | 2940 level += pred; |
| 2941 if (level < 0) | |
| 2942 level = 0; | |
| 2943 if (n < 4) { | |
| 2944 *dc_val = level * s->y_dc_scale; | |
| 2945 } else { | |
| 2946 *dc_val = level * s->c_dc_scale; | |
| 2947 } | |
| 2948 return level; | |
| 2949 } | |
| 2950 | |
| 453 | 2951 /** |
| 2952 * decode a block | |
| 2953 * returns 0 if everything went ok | |
| 2954 * returns DECODING_AC_LOST if an error was detected during AC decoding | |
| 2955 * returns DECODING_ACDC_LOST if an error was detected during DC decoding | |
| 2956 */ | |
| 2957 static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block, | |
| 575 | 2958 int n, int coded, int intra) |
| 0 | 2959 { |
| 549 | 2960 int level, i, last, run; |
| 0 | 2961 int dc_pred_dir; |
| 575 | 2962 RLTable * rl; |
| 2963 RL_VLC_ELEM * rl_vlc; | |
| 2964 const UINT8 * scan_table; | |
| 549 | 2965 int qmul, qadd; |
| 0 | 2966 |
| 575 | 2967 if(intra) { |
| 0 | 2968 /* DC coef */ |
| 453 | 2969 if(s->data_partitioning && s->pict_type!=B_TYPE){ |
| 2970 level = s->dc_val[0][ s->block_index[n] ]; | |
| 2971 if(n<4) level= (level + (s->y_dc_scale>>1))/s->y_dc_scale; //FIXME optimizs | |
| 2972 else level= (level + (s->c_dc_scale>>1))/s->c_dc_scale; | |
| 2973 dc_pred_dir= (s->pred_dir_table[s->mb_x + s->mb_y*s->mb_width]<<n)&32; | |
| 2974 }else{ | |
| 2975 level = mpeg4_decode_dc(s, n, &dc_pred_dir); | |
| 2976 if (level < 0) | |
| 2977 return DECODING_ACDC_LOST; | |
| 2978 } | |
| 0 | 2979 block[0] = level; |
| 549 | 2980 i = 0; |
| 0 | 2981 if (!coded) |
| 2982 goto not_coded; | |
| 2983 rl = &rl_intra; | |
| 549 | 2984 rl_vlc = rl_intra.rl_vlc[0]; |
| 0 | 2985 if (s->ac_pred) { |
| 2986 if (dc_pred_dir == 0) | |
| 2987 scan_table = ff_alternate_vertical_scan; /* left */ | |
| 2988 else | |
| 2989 scan_table = ff_alternate_horizontal_scan; /* top */ | |
| 2990 } else { | |
| 2991 scan_table = zigzag_direct; | |
| 2992 } | |
| 549 | 2993 qmul=1; |
| 2994 qadd=0; | |
| 0 | 2995 } else { |
| 549 | 2996 i = -1; |
| 0 | 2997 if (!coded) { |
| 549 | 2998 s->block_last_index[n] = i; |
| 0 | 2999 return 0; |
| 3000 } | |
| 3001 rl = &rl_inter; | |
| 3002 scan_table = zigzag_direct; | |
| 591 | 3003 if(s->mpeg_quant){ |
| 3004 qmul=1; | |
| 3005 qadd=0; | |
| 3006 rl_vlc = rl_inter.rl_vlc[0]; | |
| 3007 }else{ | |
| 3008 qmul = s->qscale << 1; | |
| 3009 qadd = (s->qscale - 1) | 1; | |
| 3010 rl_vlc = rl_inter.rl_vlc[s->qscale]; | |
| 3011 } | |
| 0 | 3012 } |
| 549 | 3013 { |
| 3014 OPEN_READER(re, &s->gb); | |
| 0 | 3015 for(;;) { |
| 549 | 3016 UPDATE_CACHE(re, &s->gb); |
| 3017 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 3018 if (level==0) { | |
| 3019 int cache; | |
| 3020 cache= GET_CACHE(re, &s->gb); | |
| 0 | 3021 /* escape */ |
| 549 | 3022 if (cache&0x80000000) { |
| 3023 if (cache&0x40000000) { | |
| 0 | 3024 /* third escape */ |
| 549 | 3025 SKIP_CACHE(re, &s->gb, 2); |
| 3026 last= SHOW_UBITS(re, &s->gb, 1); SKIP_CACHE(re, &s->gb, 1); | |
| 3027 run= SHOW_UBITS(re, &s->gb, 6); LAST_SKIP_CACHE(re, &s->gb, 6); | |
| 3028 SKIP_COUNTER(re, &s->gb, 2+1+6); | |
| 3029 UPDATE_CACHE(re, &s->gb); | |
| 3030 | |
| 3031 if(SHOW_UBITS(re, &s->gb, 1)==0){ | |
| 453 | 3032 fprintf(stderr, "1. marker bit missing in 3. esc\n"); |
| 3033 return DECODING_AC_LOST; | |
| 549 | 3034 }; SKIP_CACHE(re, &s->gb, 1); |
| 3035 | |
| 3036 level= SHOW_SBITS(re, &s->gb, 12); SKIP_CACHE(re, &s->gb, 12); | |
| 3037 | |
| 3038 if(SHOW_UBITS(re, &s->gb, 1)==0){ | |
| 453 | 3039 fprintf(stderr, "2. marker bit missing in 3. esc\n"); |
| 3040 return DECODING_AC_LOST; | |
| 549 | 3041 }; LAST_SKIP_CACHE(re, &s->gb, 1); |
| 3042 | |
| 3043 SKIP_COUNTER(re, &s->gb, 1+12+1); | |
| 3044 | |
| 597 | 3045 if(level*s->qscale>1024 || level*s->qscale<-1024){ |
| 3046 fprintf(stderr, "|level| overflow in 3. esc, qp=%d\n", s->qscale); | |
| 453 | 3047 return DECODING_AC_LOST; |
| 3048 } | |
| 3049 #if 1 | |
| 3050 { | |
| 3051 const int abs_level= ABS(level); | |
| 3052 if(abs_level<=MAX_LEVEL && run<=MAX_RUN && s->error_resilience>=0){ | |
| 498 | 3053 const int run1= run - rl->max_run[last][abs_level] - 1; |
| 453 | 3054 if(abs_level <= rl->max_level[last][run]){ |
| 3055 fprintf(stderr, "illegal 3. esc, vlc encoding possible\n"); | |
| 3056 return DECODING_AC_LOST; | |
| 3057 } | |
| 3058 if(abs_level <= rl->max_level[last][run]*2){ | |
| 3059 fprintf(stderr, "illegal 3. esc, esc 1 encoding possible\n"); | |
| 3060 return DECODING_AC_LOST; | |
| 3061 } | |
| 475 | 3062 if(run1 >= 0 && abs_level <= rl->max_level[last][run1]){ |
| 453 | 3063 fprintf(stderr, "illegal 3. esc, esc 2 encoding possible\n"); |
| 3064 return DECODING_AC_LOST; | |
| 3065 } | |
| 3066 } | |
| 3067 } | |
| 3068 #endif | |
| 549 | 3069 if (level>0) level= level * qmul + qadd; |
| 3070 else level= level * qmul - qadd; | |
| 3071 | |
| 3072 i+= run + 1; | |
| 3073 if(last) i+=192; | |
| 0 | 3074 } else { |
| 3075 /* second escape */ | |
| 549 | 3076 #if MIN_CACHE_BITS < 20 |
| 3077 LAST_SKIP_BITS(re, &s->gb, 2); | |
| 3078 UPDATE_CACHE(re, &s->gb); | |
| 3079 #else | |
| 3080 SKIP_BITS(re, &s->gb, 2); | |
| 3081 #endif | |
| 3082 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 3083 i+= run + rl->max_run[run>>7][level/qmul] +1; //FIXME opt indexing | |
| 3084 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 3085 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 0 | 3086 } |
| 3087 } else { | |
| 3088 /* first escape */ | |
| 549 | 3089 #if MIN_CACHE_BITS < 19 |
| 3090 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 3091 UPDATE_CACHE(re, &s->gb); | |
| 3092 #else | |
| 3093 SKIP_BITS(re, &s->gb, 1); | |
| 3094 #endif | |
| 3095 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 3096 i+= run; | |
| 3097 level = level + rl->max_level[run>>7][(run-1)&63] * qmul;//FIXME opt indexing | |
| 3098 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 3099 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 0 | 3100 } |
| 3101 } else { | |
| 549 | 3102 i+= run; |
| 3103 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 3104 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 0 | 3105 } |
| 549 | 3106 if (i > 62){ |
| 3107 i-= 192; | |
| 3108 if(i&(~63)){ | |
| 3109 fprintf(stderr, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y); | |
| 3110 return DECODING_AC_LOST; | |
| 3111 } | |
| 3112 | |
| 3113 block[scan_table[i]] = level; | |
| 0 | 3114 break; |
| 549 | 3115 } |
| 3116 | |
| 3117 block[scan_table[i]] = level; | |
| 0 | 3118 } |
| 549 | 3119 CLOSE_READER(re, &s->gb); |
| 3120 } | |
| 0 | 3121 not_coded: |
| 3122 if (s->mb_intra) { | |
| 3123 mpeg4_pred_ac(s, block, n, dc_pred_dir); | |
| 3124 if (s->ac_pred) { | |
| 549 | 3125 i = 63; /* XXX: not optimal */ |
| 0 | 3126 } |
| 3127 } | |
| 549 | 3128 s->block_last_index[n] = i; |
| 0 | 3129 return 0; |
| 3130 } | |
| 3131 | |
| 3132 /* most is hardcoded. should extend to handle all h263 streams */ | |
| 3133 int h263_decode_picture_header(MpegEncContext *s) | |
| 3134 { | |
| 3135 int format, width, height; | |
| 3136 | |
| 355 | 3137 /* picture start code */ |
| 3138 if (get_bits(&s->gb, 22) != 0x20) { | |
| 3139 fprintf(stderr, "Bad picture start code\n"); | |
| 0 | 3140 return -1; |
| 355 | 3141 } |
| 3142 /* temporal reference */ | |
| 231 | 3143 s->picture_number = get_bits(&s->gb, 8); /* picture timestamp */ |
| 355 | 3144 |
| 3145 /* PTYPE starts here */ | |
| 3146 if (get_bits1(&s->gb) != 1) { | |
| 3147 /* marker */ | |
| 3148 fprintf(stderr, "Bad marker\n"); | |
| 3149 return -1; | |
| 3150 } | |
| 3151 if (get_bits1(&s->gb) != 0) { | |
| 3152 fprintf(stderr, "Bad H263 id\n"); | |
| 0 | 3153 return -1; /* h263 id */ |
| 355 | 3154 } |
| 21 | 3155 skip_bits1(&s->gb); /* split screen off */ |
| 3156 skip_bits1(&s->gb); /* camera off */ | |
| 3157 skip_bits1(&s->gb); /* freeze picture release off */ | |
| 0 | 3158 |
|
155
3c3449bce692
- Bug fix on MV prediction for MPEG4 caused by new H.263 GOB code.
pulento
parents:
154
diff
changeset
|
3159 /* Reset GOB number */ |
|
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
3160 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
|
3161 |
| 0 | 3162 format = get_bits(&s->gb, 3); |
| 355 | 3163 /* |
| 3164 0 forbidden | |
| 3165 1 sub-QCIF | |
| 3166 10 QCIF | |
| 3167 7 extended PTYPE (PLUSPTYPE) | |
| 3168 */ | |
| 0 | 3169 |
| 161 | 3170 if (format != 7 && format != 6) { |
| 0 | 3171 s->h263_plus = 0; |
| 3172 /* H.263v1 */ | |
| 3173 width = h263_format[format][0]; | |
| 3174 height = h263_format[format][1]; | |
| 3175 if (!width) | |
| 3176 return -1; | |
| 161 | 3177 |
| 3178 s->width = width; | |
| 3179 s->height = height; | |
| 21 | 3180 s->pict_type = I_TYPE + get_bits1(&s->gb); |
| 0 | 3181 |
| 21 | 3182 s->unrestricted_mv = get_bits1(&s->gb); |
| 0 | 3183 s->h263_long_vectors = s->unrestricted_mv; |
| 3184 | |
| 355 | 3185 if (get_bits1(&s->gb) != 0) { |
| 3186 fprintf(stderr, "H263 SAC not supported\n"); | |
| 0 | 3187 return -1; /* SAC: off */ |
| 355 | 3188 } |
| 161 | 3189 if (get_bits1(&s->gb) != 0) { |
| 3190 s->mv_type = MV_TYPE_8X8; /* Advanced prediction mode */ | |
| 3191 } | |
| 3192 | |
| 355 | 3193 if (get_bits1(&s->gb) != 0) { |
| 3194 fprintf(stderr, "H263 PB frame not supported\n"); | |
| 0 | 3195 return -1; /* not PB frame */ |
| 355 | 3196 } |
| 0 | 3197 s->qscale = get_bits(&s->gb, 5); |
| 21 | 3198 skip_bits1(&s->gb); /* Continuous Presence Multipoint mode: off */ |
| 0 | 3199 } else { |
| 161 | 3200 int ufep; |
| 3201 | |
| 0 | 3202 /* H.263v2 */ |
| 161 | 3203 s->h263_plus = 1; |
| 3204 ufep = get_bits(&s->gb, 3); /* Update Full Extended PTYPE */ | |
| 355 | 3205 |
| 3206 /* ufep other than 0 and 1 are reserved */ | |
| 161 | 3207 if (ufep == 1) { |
| 3208 /* OPPTYPE */ | |
| 3209 format = get_bits(&s->gb, 3); | |
| 355 | 3210 dprintf("ufep=1, format: %d\n", format); |
| 161 | 3211 skip_bits(&s->gb,1); /* Custom PCF */ |
| 3212 s->umvplus_dec = get_bits(&s->gb, 1); /* Unrestricted Motion Vector */ | |
| 3213 skip_bits1(&s->gb); /* Syntax-based Arithmetic Coding (SAC) */ | |
| 3214 if (get_bits1(&s->gb) != 0) { | |
| 3215 s->mv_type = MV_TYPE_8X8; /* Advanced prediction mode */ | |
| 3216 } | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3217 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
|
3218 s->h263_aic = 1; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3219 } |
| 355 | 3220 |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3221 skip_bits(&s->gb, 7); |
| 355 | 3222 /* these are the 7 bits: (in order of appearence */ |
| 3223 /* Deblocking Filter */ | |
| 3224 /* Slice Structured */ | |
| 3225 /* Reference Picture Selection */ | |
| 3226 /* Independent Segment Decoding */ | |
| 3227 /* Alternative Inter VLC */ | |
| 3228 /* Modified Quantization */ | |
| 3229 /* Prevent start code emulation */ | |
| 3230 | |
| 161 | 3231 skip_bits(&s->gb, 3); /* Reserved */ |
| 355 | 3232 } else if (ufep != 0) { |
| 3233 fprintf(stderr, "Bad UFEP type (%d)\n", ufep); | |
| 0 | 3234 return -1; |
| 355 | 3235 } |
| 161 | 3236 |
| 78 | 3237 /* MPPTYPE */ |
| 355 | 3238 s->pict_type = get_bits(&s->gb, 3) + I_TYPE; |
| 3239 dprintf("pict_type: %d\n", s->pict_type); | |
| 0 | 3240 if (s->pict_type != I_TYPE && |
| 3241 s->pict_type != P_TYPE) | |
| 3242 return -1; | |
|
250
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
3243 skip_bits(&s->gb, 2); |
|
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
3244 s->no_rounding = get_bits1(&s->gb); |
| 355 | 3245 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
|
3246 skip_bits(&s->gb, 4); |
| 78 | 3247 |
| 3248 /* Get the picture dimensions */ | |
| 161 | 3249 if (ufep) { |
| 3250 if (format == 6) { | |
| 3251 /* Custom Picture Format (CPFMT) */ | |
| 355 | 3252 s->aspect_ratio_info = get_bits(&s->gb, 4); |
| 3253 dprintf("aspect: %d\n", s->aspect_ratio_info); | |
| 3254 /* aspect ratios: | |
| 3255 0 - forbidden | |
| 3256 1 - 1:1 | |
| 3257 2 - 12:11 (CIF 4:3) | |
| 3258 3 - 10:11 (525-type 4:3) | |
| 3259 4 - 16:11 (CIF 16:9) | |
| 3260 5 - 40:33 (525-type 16:9) | |
| 3261 6-14 - reserved | |
| 3262 */ | |
| 161 | 3263 width = (get_bits(&s->gb, 9) + 1) * 4; |
| 3264 skip_bits1(&s->gb); | |
| 3265 height = get_bits(&s->gb, 9) * 4; | |
| 355 | 3266 dprintf("\nH.263+ Custom picture: %dx%d\n",width,height); |
| 3267 if (s->aspect_ratio_info == EXTENDED_PAR) { | |
| 3268 /* aspected dimensions */ | |
| 3269 skip_bits(&s->gb, 8); /* width */ | |
| 3270 skip_bits(&s->gb, 8); /* height */ | |
| 3271 } | |
| 3272 } else { | |
| 161 | 3273 width = h263_format[format][0]; |
| 3274 height = h263_format[format][1]; | |
| 3275 } | |
| 3276 if ((width == 0) || (height == 0)) | |
| 3277 return -1; | |
| 3278 s->width = width; | |
| 3279 s->height = height; | |
| 3280 if (s->umvplus_dec) { | |
| 3281 skip_bits1(&s->gb); /* Unlimited Unrestricted Motion Vectors Indicator (UUI) */ | |
| 3282 } | |
| 78 | 3283 } |
| 3284 | |
| 0 | 3285 s->qscale = get_bits(&s->gb, 5); |
| 3286 } | |
| 3287 /* PEI */ | |
| 21 | 3288 while (get_bits1(&s->gb) != 0) { |
| 3289 skip_bits(&s->gb, 8); | |
| 0 | 3290 } |
| 3291 s->f_code = 1; | |
| 498 | 3292 |
| 3293 if(s->h263_aic){ | |
| 3294 s->y_dc_scale_table= | |
| 3295 s->c_dc_scale_table= h263_aic_dc_scale_table; | |
| 3296 }else{ | |
| 3297 s->y_dc_scale_table= | |
| 3298 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; | |
| 3299 } | |
| 3300 | |
| 0 | 3301 return 0; |
| 3302 } | |
| 3303 | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3304 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
|
3305 { |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3306 int i; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3307 int a= 2<<s->sprite_warping_accuracy; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3308 int rho= 3-s->sprite_warping_accuracy; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3309 int r=16/a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3310 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
|
3311 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
|
3312 int sprite_ref[4][2]; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3313 int virtual_ref[2][2]; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3314 int w2, h2; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3315 int alpha=0, beta=0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3316 int w= s->width; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3317 int h= s->height; |
| 255 | 3318 //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
|
3319 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
|
3320 int length; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3321 int x=0, y=0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3322 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3323 length= get_vlc(&s->gb, &sprite_trajectory); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3324 if(length){ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3325 x= get_bits(&s->gb, length); |
| 255 | 3326 //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
|
3327 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
|
3328 x = - (x ^ ((1 << length) - 1)); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3329 } |
| 255 | 3330 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
|
3331 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3332 length= get_vlc(&s->gb, &sprite_trajectory); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3333 if(length){ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3334 y=get_bits(&s->gb, length); |
| 255 | 3335 //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
|
3336 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
|
3337 y = - (y ^ ((1 << length) - 1)); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3338 } |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3339 skip_bits1(&s->gb); /* marker bit */ |
| 255 | 3340 //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
|
3341 //if(i>0 && (x!=0 || y!=0)) printf("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\n"); |
| 255 | 3342 //x=y=0; |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3343 d[i][0]= x; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3344 d[i][1]= y; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3345 } |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3346 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3347 while((1<<alpha)<w) alpha++; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3348 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
|
3349 w2= 1<<alpha; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3350 h2= 1<<beta; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3351 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3352 // Note, the 4th point isnt used for GMC |
| 262 | 3353 if(s->divx_version==500 && s->divx_build==413){ |
| 3354 sprite_ref[0][0]= a*vop_ref[0][0] + d[0][0]; | |
| 3355 sprite_ref[0][1]= a*vop_ref[0][1] + d[0][1]; | |
| 3356 sprite_ref[1][0]= a*vop_ref[1][0] + d[0][0] + d[1][0]; | |
| 3357 sprite_ref[1][1]= a*vop_ref[1][1] + d[0][1] + d[1][1]; | |
| 3358 sprite_ref[2][0]= a*vop_ref[2][0] + d[0][0] + d[2][0]; | |
| 3359 sprite_ref[2][1]= a*vop_ref[2][1] + d[0][1] + d[2][1]; | |
| 3360 } else { | |
| 3361 sprite_ref[0][0]= (a>>1)*(2*vop_ref[0][0] + d[0][0]); | |
| 3362 sprite_ref[0][1]= (a>>1)*(2*vop_ref[0][1] + d[0][1]); | |
| 3363 sprite_ref[1][0]= (a>>1)*(2*vop_ref[1][0] + d[0][0] + d[1][0]); | |
| 3364 sprite_ref[1][1]= (a>>1)*(2*vop_ref[1][1] + d[0][1] + d[1][1]); | |
| 3365 sprite_ref[2][0]= (a>>1)*(2*vop_ref[2][0] + d[0][0] + d[2][0]); | |
| 3366 sprite_ref[2][1]= (a>>1)*(2*vop_ref[2][1] + d[0][1] + d[2][1]); | |
| 3367 } | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3368 /* 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
|
3369 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
|
3370 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3371 // 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
|
3372 // 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
|
3373 // 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
|
3374 // 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
|
3375 virtual_ref[0][0]= 16*(vop_ref[0][0] + w2) |
| 359 | 3376 + 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
|
3377 virtual_ref[0][1]= 16*vop_ref[0][1] |
| 359 | 3378 + 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
|
3379 virtual_ref[1][0]= 16*vop_ref[0][0] |
| 359 | 3380 + 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
|
3381 virtual_ref[1][1]= 16*(vop_ref[0][1] + h2) |
| 359 | 3382 + 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
|
3383 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3384 switch(s->num_sprite_warping_points) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3385 { |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3386 case 0: |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3387 s->sprite_offset[0][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3388 s->sprite_offset[0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3389 s->sprite_offset[1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3390 s->sprite_offset[1][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3391 s->sprite_delta[0][0][0]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3392 s->sprite_delta[0][0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3393 s->sprite_delta[0][1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3394 s->sprite_delta[0][1][1]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3395 s->sprite_delta[1][0][0]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3396 s->sprite_delta[1][0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3397 s->sprite_delta[1][1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3398 s->sprite_delta[1][1][1]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3399 s->sprite_shift[0][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3400 s->sprite_shift[0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3401 s->sprite_shift[1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3402 s->sprite_shift[1][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3403 break; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3404 case 1: //GMC only |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3405 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
|
3406 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
|
3407 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
|
3408 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
|
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 2: |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3423 case 3: //FIXME |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3424 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
|
3425 + ((-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
|
3426 +( 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
|
3427 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
|
3428 + ((-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
|
3429 +(-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
|
3430 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
|
3431 +( 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
|
3432 +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
|
3433 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
|
3434 +(-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
|
3435 +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
|
3436 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
|
3437 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
|
3438 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
|
3439 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
|
3440 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
|
3441 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
|
3442 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
|
3443 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
|
3444 s->sprite_shift[0][0]= alpha+rho; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3445 s->sprite_shift[0][1]= alpha+rho; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3446 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
|
3447 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
|
3448 break; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3449 // case 3: |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3450 break; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3451 } |
| 255 | 3452 /*printf("%d %d\n", s->sprite_delta[0][0][0], a<<s->sprite_shift[0][0]); |
| 3453 printf("%d %d\n", s->sprite_delta[0][0][1], 0); | |
| 3454 printf("%d %d\n", s->sprite_delta[0][1][0], 0); | |
| 3455 printf("%d %d\n", s->sprite_delta[0][1][1], a<<s->sprite_shift[0][1]); | |
| 3456 printf("%d %d\n", s->sprite_delta[1][0][0], a<<s->sprite_shift[1][0]); | |
| 3457 printf("%d %d\n", s->sprite_delta[1][0][1], 0); | |
| 3458 printf("%d %d\n", s->sprite_delta[1][1][0], 0); | |
| 3459 printf("%d %d\n", s->sprite_delta[1][1][1], a<<s->sprite_shift[1][1]);*/ | |
| 3460 /* try to simplify the situation */ | |
| 3461 if( s->sprite_delta[0][0][0] == a<<s->sprite_shift[0][0] | |
| 3462 && s->sprite_delta[0][0][1] == 0 | |
| 3463 && s->sprite_delta[0][1][0] == 0 | |
| 3464 && s->sprite_delta[0][1][1] == a<<s->sprite_shift[0][1] | |
| 3465 && s->sprite_delta[1][0][0] == a<<s->sprite_shift[1][0] | |
| 3466 && s->sprite_delta[1][0][1] == 0 | |
| 3467 && s->sprite_delta[1][1][0] == 0 | |
| 3468 && s->sprite_delta[1][1][1] == a<<s->sprite_shift[1][1]) | |
| 3469 { | |
| 3470 s->sprite_offset[0][0]>>=s->sprite_shift[0][0]; | |
| 3471 s->sprite_offset[0][1]>>=s->sprite_shift[0][1]; | |
| 3472 s->sprite_offset[1][0]>>=s->sprite_shift[1][0]; | |
| 3473 s->sprite_offset[1][1]>>=s->sprite_shift[1][1]; | |
| 3474 s->sprite_delta[0][0][0]= a; | |
| 3475 s->sprite_delta[0][0][1]= 0; | |
| 3476 s->sprite_delta[0][1][0]= 0; | |
| 3477 s->sprite_delta[0][1][1]= a; | |
| 3478 s->sprite_delta[1][0][0]= a; | |
| 3479 s->sprite_delta[1][0][1]= 0; | |
| 3480 s->sprite_delta[1][1][0]= 0; | |
| 3481 s->sprite_delta[1][1][1]= a; | |
| 3482 s->sprite_shift[0][0]= 0; | |
| 3483 s->sprite_shift[0][1]= 0; | |
| 3484 s->sprite_shift[1][0]= 0; | |
| 3485 s->sprite_shift[1][1]= 0; | |
| 3486 s->real_sprite_warping_points=1; | |
| 3487 } | |
| 3488 else | |
| 3489 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
|
3490 |
| 301 | 3491 //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
|
3492 } |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3493 |
| 0 | 3494 /* decode mpeg4 VOP header */ |
| 3495 int mpeg4_decode_picture_header(MpegEncContext * s) | |
| 3496 { | |
| 3497 int time_incr, startcode, state, v; | |
| 324 | 3498 int time_increment; |
| 0 | 3499 |
| 3500 redo: | |
| 3501 /* search next start code */ | |
| 3502 align_get_bits(&s->gb); | |
| 3503 state = 0xff; | |
| 3504 for(;;) { | |
| 3505 v = get_bits(&s->gb, 8); | |
| 3506 if (state == 0x000001) { | |
| 3507 state = ((state << 8) | v) & 0xffffff; | |
| 3508 startcode = state; | |
| 3509 break; | |
| 3510 } | |
| 3511 state = ((state << 8) | v) & 0xffffff; | |
| 278 | 3512 if( get_bits_count(&s->gb) > s->gb.size*8-32){ |
| 333 | 3513 if(s->gb.size>50){ |
| 3514 printf("no VOP startcode found, frame size was=%d\n", s->gb.size); | |
| 3515 return -1; | |
| 3516 }else{ | |
| 3517 printf("frame skip\n"); | |
| 3518 return FRAME_SKIPED; | |
| 3519 } | |
| 263 | 3520 } |
| 0 | 3521 } |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3522 //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
|
3523 if (startcode == 0x120) { // Video Object Layer |
| 262 | 3524 int width, height, vo_ver_id; |
| 0 | 3525 |
| 3526 /* vol header */ | |
| 21 | 3527 skip_bits(&s->gb, 1); /* random access */ |
| 336 | 3528 s->vo_type= get_bits(&s->gb, 8); |
| 63 | 3529 if (get_bits1(&s->gb) != 0) { /* is_ol_id */ |
| 3530 vo_ver_id = get_bits(&s->gb, 4); /* vo_ver_id */ | |
| 3531 skip_bits(&s->gb, 3); /* vo_priority */ | |
| 3532 } else { | |
| 3533 vo_ver_id = 1; | |
| 3534 } | |
| 341 | 3535 //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
|
3536 s->aspect_ratio_info= get_bits(&s->gb, 4); |
| 355 | 3537 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
|
3538 skip_bits(&s->gb, 8); //par_width |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3539 skip_bits(&s->gb, 8); // par_height |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3540 } |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
3541 |
|
365
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3542 if ((s->vol_control_parameters=get_bits1(&s->gb))) { /* vol control parameter */ |
| 336 | 3543 int chroma_format= get_bits(&s->gb, 2); |
| 3544 if(chroma_format!=1){ | |
| 3545 printf("illegal chroma format\n"); | |
| 3546 } | |
| 3547 s->low_delay= get_bits1(&s->gb); | |
| 3548 if(get_bits1(&s->gb)){ /* vbv parameters */ | |
| 3549 printf("vbv parameters not supported\n"); | |
| 3550 return -1; | |
| 3551 } | |
| 3552 }else{ | |
| 564 | 3553 // set low delay flag only once so the smart? low delay detection wont be overriden |
| 3554 if(s->picture_number==0) | |
| 3555 s->low_delay=0; | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3556 } |
| 336 | 3557 |
| 63 | 3558 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
|
3559 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
|
3560 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
|
3561 printf("Gray shape not supported\n"); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3562 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
|
3563 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3564 |
| 21 | 3565 skip_bits1(&s->gb); /* marker */ |
| 0 | 3566 |
| 262 | 3567 s->time_increment_resolution = get_bits(&s->gb, 16); |
| 3568 s->time_increment_bits = av_log2(s->time_increment_resolution - 1) + 1; | |
| 63 | 3569 if (s->time_increment_bits < 1) |
| 3570 s->time_increment_bits = 1; | |
| 21 | 3571 skip_bits1(&s->gb); /* marker */ |
| 0 | 3572 |
| 63 | 3573 if (get_bits1(&s->gb) != 0) { /* fixed_vop_rate */ |
| 3574 skip_bits(&s->gb, s->time_increment_bits); | |
| 3575 } | |
| 0 | 3576 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3577 if (s->shape != BIN_ONLY_SHAPE) { |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3578 if (s->shape == RECT_SHAPE) { |
| 63 | 3579 skip_bits1(&s->gb); /* marker */ |
| 3580 width = get_bits(&s->gb, 13); | |
| 3581 skip_bits1(&s->gb); /* marker */ | |
| 3582 height = get_bits(&s->gb, 13); | |
| 3583 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
|
3584 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
|
3585 s->width = width; |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
272
diff
changeset
|
3586 s->height = height; |
| 331 | 3587 // 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
|
3588 } |
| 63 | 3589 } |
| 3590 | |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3591 if(get_bits1(&s->gb)) printf("interlaced not supported\n"); /* interlaced */ |
| 453 | 3592 if(!get_bits1(&s->gb)) printf("OBMC not supported (very likely buggy encoder)\n"); /* OBMC Disable */ |
| 63 | 3593 if (vo_ver_id == 1) { |
| 3594 s->vol_sprite_usage = get_bits1(&s->gb); /* vol_sprite_usage */ | |
| 3595 } else { | |
| 3596 s->vol_sprite_usage = get_bits(&s->gb, 2); /* vol_sprite_usage */ | |
| 3597 } | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3598 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
|
3599 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
|
3600 if(s->vol_sprite_usage==STATIC_SPRITE){ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3601 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
|
3602 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3603 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
|
3604 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3605 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
|
3606 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3607 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
|
3608 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3609 } |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3610 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
|
3611 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
|
3612 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
|
3613 if(s->vol_sprite_usage==STATIC_SPRITE) |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3614 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
|
3615 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3616 // 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
|
3617 |
| 63 | 3618 if (get_bits1(&s->gb) == 1) { /* not_8_bit */ |
| 3619 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
|
3620 if(get_bits(&s->gb, 4)!=8) printf("N-bit not supported\n"); /* bits_per_pixel */ |
| 290 | 3621 if(s->quant_precision!=5) printf("quant precission %d\n", s->quant_precision); |
| 63 | 3622 } else { |
| 3623 s->quant_precision = 5; | |
| 3624 } | |
| 3625 | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3626 // FIXME a bunch of grayscale shape things |
| 312 | 3627 |
| 591 | 3628 if((s->mpeg_quant=get_bits1(&s->gb))){ /* vol_quant_type */ |
| 312 | 3629 int i, j, v; |
| 591 | 3630 |
| 312 | 3631 /* load default matrixes */ |
| 3632 for(i=0; i<64; i++){ | |
| 3633 v= ff_mpeg4_default_intra_matrix[i]; | |
| 3634 s->intra_matrix[i]= v; | |
| 3635 s->chroma_intra_matrix[i]= v; | |
| 3636 | |
| 3637 v= ff_mpeg4_default_non_intra_matrix[i]; | |
| 344 | 3638 s->inter_matrix[i]= v; |
| 3639 s->chroma_inter_matrix[i]= v; | |
| 312 | 3640 } |
| 3641 | |
| 3642 /* load custom intra matrix */ | |
| 3643 if(get_bits1(&s->gb)){ | |
| 3644 for(i=0; i<64; i++){ | |
| 3645 v= get_bits(&s->gb, 8); | |
| 3646 if(v==0) break; | |
| 3647 | |
| 3648 j= zigzag_direct[i]; | |
| 3649 s->intra_matrix[j]= v; | |
| 3650 s->chroma_intra_matrix[j]= v; | |
| 3651 } | |
| 3652 } | |
| 3653 | |
| 3654 /* load custom non intra matrix */ | |
| 3655 if(get_bits1(&s->gb)){ | |
| 3656 for(i=0; i<64; i++){ | |
| 3657 v= get_bits(&s->gb, 8); | |
| 3658 if(v==0) break; | |
| 3659 | |
| 3660 j= zigzag_direct[i]; | |
| 344 | 3661 s->inter_matrix[j]= v; |
| 3662 s->chroma_inter_matrix[j]= v; | |
| 312 | 3663 } |
| 3664 | |
| 3665 /* replicate last value */ | |
| 3666 for(; i<64; i++){ | |
| 3667 j= zigzag_direct[i]; | |
| 344 | 3668 s->inter_matrix[j]= v; |
| 3669 s->chroma_inter_matrix[j]= v; | |
| 312 | 3670 } |
| 3671 } | |
| 3672 | |
| 3673 // FIXME a bunch of grayscale shape things | |
| 591 | 3674 } |
| 312 | 3675 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3676 if(vo_ver_id != 1) |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3677 s->quarter_sample= get_bits1(&s->gb); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3678 else s->quarter_sample=0; |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3679 |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3680 if(!get_bits1(&s->gb)) printf("Complexity estimation not supported\n"); |
| 290 | 3681 |
| 3682 s->resync_marker= !get_bits1(&s->gb); /* resync_marker_disabled */ | |
| 3683 | |
| 453 | 3684 s->data_partitioning= get_bits1(&s->gb); |
| 3685 if(s->data_partitioning){ | |
| 3686 s->rvlc= get_bits1(&s->gb); | |
| 3687 if(s->rvlc){ | |
| 3688 printf("reversible vlc not supported\n"); | |
| 3689 } | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3690 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3691 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3692 if(vo_ver_id != 1) { |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3693 s->new_pred= get_bits1(&s->gb); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3694 if(s->new_pred){ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3695 printf("new pred not supported\n"); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3696 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
|
3697 skip_bits1(&s->gb); /* newpred segment type */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3698 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3699 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
|
3700 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
|
3701 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3702 else{ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3703 s->new_pred=0; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3704 s->reduced_res_vop= 0; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3705 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3706 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3707 s->scalability= get_bits1(&s->gb); |
| 575 | 3708 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
|
3709 if (s->scalability) { |
| 575 | 3710 int dummy= s->hierachy_type= get_bits1(&s->gb); |
| 3711 int ref_layer_id= get_bits(&s->gb, 4); | |
| 3712 int ref_layer_sampling_dir= get_bits1(&s->gb); | |
| 3713 int h_sampling_factor_n= get_bits(&s->gb, 5); | |
| 3714 int h_sampling_factor_m= get_bits(&s->gb, 5); | |
| 3715 int v_sampling_factor_n= get_bits(&s->gb, 5); | |
| 3716 int v_sampling_factor_m= get_bits(&s->gb, 5); | |
| 3717 s->enhancement_type= get_bits1(&s->gb); | |
| 3718 // bin shape stuff FIXME | |
| 285 | 3719 printf("scalability not supported\n"); |
| 63 | 3720 } |
| 3721 } | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3722 //printf("end Data %X %d\n", show_bits(&s->gb, 32), get_bits_count(&s->gb)&0x7); |
| 0 | 3723 goto redo; |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3724 } else if (startcode == 0x1b2) { //userdata |
| 255 | 3725 char buf[256]; |
| 3726 int i; | |
| 3727 int e; | |
| 3728 int ver, build; | |
| 3729 | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3730 //printf("user Data %X\n", show_bits(&s->gb, 32)); |
| 255 | 3731 buf[0]= show_bits(&s->gb, 8); |
| 3732 for(i=1; i<256; i++){ | |
| 3733 buf[i]= show_bits(&s->gb, 16)&0xFF; | |
| 3734 if(buf[i]==0) break; | |
| 3735 skip_bits(&s->gb, 8); | |
| 3736 } | |
| 3737 buf[255]=0; | |
| 3738 e=sscanf(buf, "DivX%dBuild%d", &ver, &build); | |
| 333 | 3739 if(e!=2) |
| 3740 e=sscanf(buf, "DivX%db%d", &ver, &build); | |
| 255 | 3741 if(e==2){ |
| 3742 s->divx_version= ver; | |
| 3743 s->divx_build= build; | |
| 3744 if(s->picture_number==0){ | |
| 3745 printf("This file was encoded with DivX%d Build%d\n", ver, build); | |
| 333 | 3746 if(ver==500 && build==413){ |
| 255 | 3747 printf("WARNING: this version of DivX is not MPEG4 compatible, trying to workaround these bugs...\n"); |
| 333 | 3748 #if 0 |
| 255 | 3749 }else{ |
| 3750 printf("hmm, i havnt seen that version of divx yet, lets assume they fixed these bugs ...\n" | |
| 3751 "using mpeg4 decoder, if it fails contact the developers (of ffmpeg)\n"); | |
| 498 | 3752 #endif |
| 255 | 3753 } |
| 3754 } | |
| 3755 } | |
| 3756 //printf("User Data: %s\n", buf); | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3757 goto redo; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3758 } else if (startcode != 0x1b6) { //VOP |
| 0 | 3759 goto redo; |
| 3760 } | |
| 3761 | |
| 355 | 3762 s->pict_type = get_bits(&s->gb, 2) + I_TYPE; /* pict type: I = 0 , P = 1 */ |
| 453 | 3763 //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
|
3764 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
|
3765 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
|
3766 s->low_delay=0; |
|
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3767 } |
| 324 | 3768 // printf("pic: %d, qpel:%d\n", s->pict_type, s->quarter_sample); |
| 262 | 3769 time_incr=0; |
| 21 | 3770 while (get_bits1(&s->gb) != 0) |
| 0 | 3771 time_incr++; |
| 3772 | |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3773 check_marker(&s->gb, "before time_increment"); |
| 324 | 3774 time_increment= get_bits(&s->gb, s->time_increment_bits); |
| 3775 //printf(" type:%d incr:%d increment:%d\n", s->pict_type, time_incr, time_increment); | |
| 262 | 3776 if(s->pict_type!=B_TYPE){ |
| 324 | 3777 s->last_time_base= s->time_base; |
| 262 | 3778 s->time_base+= time_incr; |
| 324 | 3779 s->time= s->time_base*s->time_increment_resolution + time_increment; |
| 3780 s->pp_time= s->time - s->last_non_b_time; | |
| 3781 s->last_non_b_time= s->time; | |
| 262 | 3782 }else{ |
| 324 | 3783 s->time= (s->last_time_base + time_incr)*s->time_increment_resolution + time_increment; |
| 3784 s->bp_time= s->last_non_b_time - s->time; | |
| 335 | 3785 if(s->pp_time <=s->bp_time){ |
| 3786 // printf("messed up order, seeking?, skiping current b frame\n"); | |
| 3787 return FRAME_SKIPED; | |
| 3788 } | |
| 262 | 3789 } |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3790 |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3791 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
|
3792 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
|
3793 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
|
3794 if(get_bits1(&s->gb)) break; |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3795 } |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3796 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
|
3797 } |
| 0 | 3798 /* vop coded */ |
| 21 | 3799 if (get_bits1(&s->gb) != 1) |
| 63 | 3800 goto redo; |
| 262 | 3801 //printf("time %d %d %d || %d %d %d\n", s->time_increment_bits, s->time_increment, s->time_base, |
| 3802 //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
|
3803 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
|
3804 || (s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE))) { |
| 0 | 3805 /* rounding type for motion estimation */ |
| 21 | 3806 s->no_rounding = get_bits1(&s->gb); |
| 63 | 3807 } else { |
| 3808 s->no_rounding = 0; | |
| 0 | 3809 } |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3810 //FIXME reduced res stuff |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3811 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3812 if (s->shape != RECT_SHAPE) { |
| 63 | 3813 if (s->vol_sprite_usage != 1 || s->pict_type != I_TYPE) { |
| 3814 int width, height, hor_spat_ref, ver_spat_ref; | |
| 3815 | |
| 3816 width = get_bits(&s->gb, 13); | |
| 3817 skip_bits1(&s->gb); /* marker */ | |
| 3818 height = get_bits(&s->gb, 13); | |
| 3819 skip_bits1(&s->gb); /* marker */ | |
| 3820 hor_spat_ref = get_bits(&s->gb, 13); /* hor_spat_ref */ | |
| 3821 skip_bits1(&s->gb); /* marker */ | |
| 3822 ver_spat_ref = get_bits(&s->gb, 13); /* ver_spat_ref */ | |
| 3823 } | |
| 3824 skip_bits1(&s->gb); /* change_CR_disable */ | |
| 3825 | |
| 3826 if (get_bits1(&s->gb) != 0) { | |
| 3827 skip_bits(&s->gb, 8); /* constant_alpha_value */ | |
| 3828 } | |
| 3829 } | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3830 //FIXME complexity estimation stuff |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3831 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3832 if (s->shape != BIN_ONLY_SHAPE) { |
| 290 | 3833 int t; |
| 3834 t=get_bits(&s->gb, 3); /* intra dc VLC threshold */ | |
| 3835 //printf("threshold %d\n", t); | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3836 //FIXME interlaced specific bits |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3837 } |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3838 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3839 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
|
3840 if(s->num_sprite_warping_points){ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3841 mpeg4_decode_sprite_trajectory(s); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3842 } |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3843 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
|
3844 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
|
3845 } |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3846 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3847 if (s->shape != BIN_ONLY_SHAPE) { |
| 63 | 3848 /* note: we do not use quant_precision to avoid problem if no |
| 3849 MPEG4 vol header as it is found on some old opendivx | |
| 3850 movies */ | |
| 3851 s->qscale = get_bits(&s->gb, 5); | |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3852 if(s->qscale==0){ |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3853 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
|
3854 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
|
3855 } |
| 63 | 3856 |
| 3857 if (s->pict_type != I_TYPE) { | |
| 3858 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
|
3859 if(s->f_code==0){ |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3860 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
|
3861 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
|
3862 } |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3863 }else |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3864 s->f_code=1; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3865 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3866 if (s->pict_type == B_TYPE) { |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3867 s->b_code = get_bits(&s->gb, 3); |
| 262 | 3868 //printf("b-code %d\n", s->b_code); |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3869 }else |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3870 s->b_code=1; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3871 |
| 331 | 3872 //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
|
3873 if(!s->scalability){ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3874 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
|
3875 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
|
3876 } |
| 575 | 3877 }else{ |
| 3878 if(s->enhancement_type){ | |
| 3879 int load_backward_shape= get_bits1(&s->gb); | |
| 3880 if(load_backward_shape){ | |
| 3881 printf("load backward shape isnt supported\n"); | |
| 3882 } | |
| 3883 } | |
| 3884 skip_bits(&s->gb, 2); //ref_select_code | |
| 63 | 3885 } |
| 3886 } | |
|
346
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
3887 /* 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
|
3888 // 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
|
3889 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
|
3890 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
|
3891 s->low_delay=1; |
|
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
3892 } |
|
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
3893 |
| 255 | 3894 s->picture_number++; // better than pic number==0 allways ;) |
| 333 | 3895 //printf("done\n"); |
|
346
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
3896 |
| 498 | 3897 s->y_dc_scale_table= ff_mpeg4_y_dc_scale_table; //FIXME add short header support |
| 3898 s->c_dc_scale_table= ff_mpeg4_c_dc_scale_table; | |
| 3899 | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3900 if(s->divx_version==0 || s->divx_version < 500){ |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3901 s->h_edge_pos= s->width; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3902 s->v_edge_pos= s->height; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
3903 } |
| 63 | 3904 return 0; |
| 0 | 3905 } |
| 3906 | |
| 3907 /* don't understand why they choose a different header ! */ | |
| 3908 int intel_h263_decode_picture_header(MpegEncContext *s) | |
| 3909 { | |
| 3910 int format; | |
| 3911 | |
| 3912 /* picture header */ | |
| 355 | 3913 if (get_bits(&s->gb, 22) != 0x20) { |
| 3914 fprintf(stderr, "Bad picture start code\n"); | |
| 0 | 3915 return -1; |
| 355 | 3916 } |
| 3917 s->picture_number = get_bits(&s->gb, 8); /* picture timestamp */ | |
| 0 | 3918 |
| 355 | 3919 if (get_bits1(&s->gb) != 1) { |
| 3920 fprintf(stderr, "Bad marker\n"); | |
| 0 | 3921 return -1; /* marker */ |
| 355 | 3922 } |
| 3923 if (get_bits1(&s->gb) != 0) { | |
| 3924 fprintf(stderr, "Bad H263 id\n"); | |
| 0 | 3925 return -1; /* h263 id */ |
| 355 | 3926 } |
| 21 | 3927 skip_bits1(&s->gb); /* split screen off */ |
| 3928 skip_bits1(&s->gb); /* camera off */ | |
| 3929 skip_bits1(&s->gb); /* freeze picture release off */ | |
| 0 | 3930 |
| 3931 format = get_bits(&s->gb, 3); | |
| 355 | 3932 if (format != 7) { |
| 3933 fprintf(stderr, "Intel H263 free format not supported\n"); | |
| 0 | 3934 return -1; |
| 355 | 3935 } |
| 0 | 3936 s->h263_plus = 0; |
| 3937 | |
| 21 | 3938 s->pict_type = I_TYPE + get_bits1(&s->gb); |
| 0 | 3939 |
| 21 | 3940 s->unrestricted_mv = get_bits1(&s->gb); |
| 0 | 3941 s->h263_long_vectors = s->unrestricted_mv; |
| 3942 | |
| 355 | 3943 if (get_bits1(&s->gb) != 0) { |
| 3944 fprintf(stderr, "SAC not supported\n"); | |
| 0 | 3945 return -1; /* SAC: off */ |
| 355 | 3946 } |
| 3947 if (get_bits1(&s->gb) != 0) { | |
| 3948 fprintf(stderr, "Advanced Prediction Mode not supported\n"); | |
| 0 | 3949 return -1; /* advanced prediction mode: off */ |
| 355 | 3950 } |
| 3951 if (get_bits1(&s->gb) != 0) { | |
| 3952 fprintf(stderr, "PB frame mode no supported\n"); | |
| 3953 return -1; /* PB frame mode */ | |
| 3954 } | |
| 0 | 3955 |
| 3956 /* skip unknown header garbage */ | |
| 21 | 3957 skip_bits(&s->gb, 41); |
| 0 | 3958 |
| 3959 s->qscale = get_bits(&s->gb, 5); | |
| 21 | 3960 skip_bits1(&s->gb); /* Continuous Presence Multipoint mode: off */ |
| 0 | 3961 |
| 3962 /* PEI */ | |
| 21 | 3963 while (get_bits1(&s->gb) != 0) { |
| 3964 skip_bits(&s->gb, 8); | |
| 0 | 3965 } |
| 3966 s->f_code = 1; | |
| 3967 return 0; | |
| 3968 } | |
| 144 | 3969 |
